17 lines
No EOL
225 B
CSS
17 lines
No EOL
225 B
CSS
html {
|
|
box-sizing: border-box;
|
|
}
|
|
*, *::before, *::after {
|
|
box-sizing: inherit;
|
|
}
|
|
|
|
body {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
height: 100%;
|
|
width: 100%;
|
|
margin: 0;
|
|
color: #000000de;
|
|
font-family: Inter, sans-serif;
|
|
} |