56 lines
679 B
CSS
56 lines
679 B
CSS
@font-face {
|
|
font-family: 'Fira Code';
|
|
src: url(fonts/FiraCode-VF.woff2);
|
|
}
|
|
|
|
* {
|
|
padding: 0;
|
|
margin: 0;
|
|
font-family: 'Fira Code';
|
|
font-size: 20px;
|
|
}
|
|
|
|
body {
|
|
background-color: #FDE2D2;
|
|
}
|
|
|
|
.fullWindow {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
}
|
|
|
|
.center {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
#cover {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
#cover div {
|
|
width: 400px;
|
|
height: 400px;
|
|
}
|
|
#cover div img {
|
|
width: 90%;
|
|
}
|
|
#cover pre {
|
|
font-size: 40px;
|
|
}
|
|
@media (width <= 900px) {
|
|
#cover {
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
@media (height <= 800px) and (width <= 900px) {
|
|
#cover div {
|
|
width: 40vh;
|
|
height: 40vh;
|
|
}
|
|
#cover pre {
|
|
font-size: 4vh
|
|
}
|
|
}
|