17 lines
148 B
CSS
17 lines
148 B
CSS
|
html, body {
|
||
|
margin: 0;
|
||
|
min-height: 100vh;
|
||
|
overflow: auto;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
background-color: #000;
|
||
|
color: #fff;
|
||
|
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
color: #0f0;
|
||
|
}
|