24 lines
308 B
CSS
24 lines
308 B
CSS
body {
|
|
background-color: #292929
|
|
}
|
|
a {
|
|
font-family: serif;
|
|
font-size: 1.5em;
|
|
padding: 0.5em;
|
|
}
|
|
a:link {
|
|
color: rgb(202, 202, 202);
|
|
}
|
|
a:hover {
|
|
color: aqua;
|
|
}
|
|
a:visited {
|
|
color: rgb(146, 143, 111);
|
|
}
|
|
div {
|
|
display: flex;
|
|
flex-flow: column;
|
|
}
|
|
a:active {
|
|
color: cornflowerblue;
|
|
} |