17 lines
191 B
CSS
17 lines
191 B
CSS
@viewport {
|
|
width: device-width;
|
|
zoom: 1;
|
|
}
|
|
|
|
html {
|
|
background: rgb(0,0,0);
|
|
color: rgb(160,160,160);
|
|
font-family: sans;
|
|
}
|
|
|
|
a {
|
|
color: rgb(128,160,128);
|
|
}
|
|
a:hover {
|
|
color: rgb(160,128,128);
|
|
}
|