mirror of
https://github.com/safing/web
synced 2025-09-01 18:49:06 +00:00
35 lines
No EOL
599 B
SCSS
35 lines
No EOL
599 B
SCSS
* {
|
|
font-family: 'Roboto', sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body{
|
|
height: 0vh;
|
|
display: grid;
|
|
grid-template-rows: auto auto;
|
|
grid-template-columns: 5vh 1fr 1fr 5vh;
|
|
background-color: black;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
content{
|
|
height: auto;
|
|
display: grid;
|
|
grid-auto-columns: auto;
|
|
grid-template-columns: 1fr;
|
|
grid-row: auto;
|
|
grid-column: span 5;
|
|
background-color: white;
|
|
}
|
|
|
|
::selection {
|
|
background-color: #396bf5;
|
|
}
|
|
|
|
@media (max-width: 1318px) {
|
|
body{
|
|
grid-template-columns: 1fr;
|
|
}
|
|
} |