29 lines
400 B
CSS
29 lines
400 B
CSS
|
body {
|
||
|
background: #1f1f1f;
|
||
|
color: #cdcdcd;
|
||
|
}
|
||
|
|
||
|
/* unvisited link */
|
||
|
a:link {
|
||
|
color: #ff8844;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
/* visited link */
|
||
|
a:visited {
|
||
|
color: #ff8844;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
/* mouse over link */
|
||
|
a:hover {
|
||
|
color: #ff8844;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
/* selected link */
|
||
|
a:active {
|
||
|
color: #ff8844;
|
||
|
text-decoration: none;
|
||
|
font-weight: bold;
|
||
|
}
|