69 lines
955 B
CSS
69 lines
955 B
CSS
@font-face {
|
|
font-family: Fixedsys Excelsior WOFF2;
|
|
src: url('/assets/fonts/Fixedsys Excelsior/Fixedsys Excelsior.woff2');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: Fixedsys Excelsior TTF;
|
|
src: url('/assets/fonts/Fixedsys Excelsior/Fixedsys Excelsior.ttf');
|
|
}
|
|
|
|
@media (min-width: 1000px) {
|
|
body {
|
|
width: 70%;
|
|
}
|
|
}
|
|
|
|
body {
|
|
background-color: black;
|
|
margin: auto;
|
|
color: white;
|
|
font-family: Fixedsys Excelsior WOFF2, Fixedsys Excelsior TTF, monospace;
|
|
}
|
|
|
|
.main {
|
|
background-color: black;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.nav {
|
|
font-size: 20px;
|
|
padding-left: 5px;
|
|
padding-right: 5px;
|
|
background-color: #0B6915;
|
|
}
|
|
|
|
.nav a {
|
|
color: white;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.nav > .current {
|
|
background-color: white;
|
|
color: #0B6915;
|
|
}
|
|
|
|
a:hover {
|
|
color: #07EB3E;
|
|
}
|
|
|
|
a {
|
|
color: dodgerblue;
|
|
text-decoration: none;
|
|
}
|
|
|
|
/* user site list specific stuff */
|
|
|
|
.site-list {
|
|
list-style: none;
|
|
padding-left: 0;
|
|
margin-left: 0;
|
|
}
|
|
|
|
dt h3 {
|
|
display: inline;
|
|
}
|
|
|
|
dd p {
|
|
margin: 0;
|
|
}
|