Initial Commit
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
#main {
|
||||
position: fixed;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
animation: slideFromBottom 1s;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
|
||||
#pfp {
|
||||
border: #9c9c9c;
|
||||
border-style: solid;
|
||||
border-radius: 50px;
|
||||
border-width: 5px;
|
||||
margin-bottom: 50px;
|
||||
box-shadow: 10px 10px 5px rgba(0,0,0,0.5);
|
||||
}
|
||||
|
||||
#info {
|
||||
background: #575757;
|
||||
border: #9c9c9c;
|
||||
border-style: solid;
|
||||
border-radius: 50px;
|
||||
border-width: 5px;
|
||||
padding: 20px;
|
||||
opacity: 0;
|
||||
box-shadow: 10px 10px 5px rgba(0,0,0,0.5);
|
||||
animation: fadeIn 1s linear 1.25s forwards;
|
||||
}
|
||||
|
||||
.link img {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
}
|
||||
|
||||
@-webkit-keyframes slideFromBottom {
|
||||
from {top: 120%;}
|
||||
to {top: 50%;}
|
||||
}
|
||||
Reference in New Issue
Block a user