mirror of
https://github.com/Max-Stevenson/jurassic-park-interface.git
synced 2025-02-09 02:31:39 +00:00
29 lines
278 B
SCSS
29 lines
278 B
SCSS
*,
|
|
*::before,
|
|
*::after {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
@media (max-height: 900px) {
|
|
body {
|
|
height: 100vh;
|
|
}
|
|
}
|
|
|
|
body {
|
|
width: 100vw;
|
|
font-family: 'Roboto', sans-serif;
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
width: 0;
|
|
height: 0;
|
|
}
|