19 lines
173 B
CSS
19 lines
173 B
CSS
|
|
||
|
body {
|
||
|
background-color: grey;
|
||
|
max-width: 1200px;
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
a {
|
||
|
color: #999;
|
||
|
text-decoration: none;
|
||
|
outline: none;
|
||
|
}
|
||
|
|
||
|
a:hover {
|
||
|
text-decoration: underline;
|
||
|
color: #FFF;
|
||
|
}
|