67 lines
992 B
CSS
67 lines
992 B
CSS
@font-face {
|
|
font-family: 'minecraft';
|
|
src: url('/assets/fonts/MinecraftRegular.otf') format('opentype');
|
|
}
|
|
|
|
* {box-sizing: border-box}
|
|
|
|
html, body {
|
|
margin: 0;
|
|
height: 100%;
|
|
font-family: 'minecraft';
|
|
background-color: #1a1a1a;
|
|
color: #eee;
|
|
padding: 10px;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.card {
|
|
margin: auto;
|
|
border-left: 6px solid #eee;
|
|
background-color: #222;
|
|
padding: 15px;
|
|
margin-bottom: 20px;
|
|
box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
|
|
width: 370px;
|
|
height: 322px;
|
|
}
|
|
|
|
.card p {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.card img {
|
|
display: block;
|
|
margin: auto;
|
|
}
|
|
|
|
#splash {
|
|
color: #FFFF00;
|
|
font-size: 1.5em;
|
|
text-shadow: 3px 3px #3F3F00;
|
|
padding: 40px;
|
|
position: relative;
|
|
left: 150px;
|
|
}
|
|
|
|
.tilt {
|
|
transform: rotate(-25deg);
|
|
}
|
|
|
|
.pop {
|
|
animation: pop 0.58s infinite;
|
|
}
|
|
|
|
@keyframes pop {
|
|
from {
|
|
transform:scale(0.95)
|
|
}
|
|
50% {
|
|
transform:scale(1)
|
|
}
|
|
to {
|
|
transform:scale(0.95)
|
|
}
|
|
}
|