27 lines
365 B
CSS
27 lines
365 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: cornflowerblue;
|
|
}
|
|
div {
|
|
display: flex;
|
|
flex-flow: column;
|
|
border-style: solid;
|
|
border-top: 0.1em white
|
|
|
|
}
|
|
a:active {
|
|
color: rgb(158, 155, 122);
|
|
} |