39 lines
No EOL
450 B
CSS
39 lines
No EOL
450 B
CSS
* {
|
|
font-family: monospace;
|
|
}
|
|
|
|
html {
|
|
background-color: black;
|
|
color: #ffc0cb;
|
|
font-size: 12pt;
|
|
}
|
|
|
|
a {
|
|
color: #ffffff;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
font-style: italic;
|
|
}
|
|
|
|
a:visited {
|
|
color: #ffffff;
|
|
}
|
|
|
|
.content {
|
|
margin-bottom: 120px;
|
|
}
|
|
|
|
.footer {
|
|
position: fixed;
|
|
left: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
text-align: center;
|
|
background-color: black;
|
|
}
|
|
|
|
hr {
|
|
border: 1px solid #ffc0cb;
|
|
} |