site/assets/style.css
2025-05-01 01:52:46 -04:00

113 lines
1.4 KiB
CSS

/* Font imports */
@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 a:hover {
background-color: white;
color: #0B6915;
}
.nav > .current {
background-color: white;
color: #0B6915;
}
a {
color: #07EB3E;
text-decoration: none;
}
a:hover {
color: white;
text-decoration: none;
}
.main {
margin-top: 5px;
}
.main h1 {
margin-top: 10px;
margin-bottom: 10px;
}
.main h2 {
margin-top: 0px;
margin-bottom: 0px;
}
.main p {
margin-top: 0px;
margin-bottom: 15px;
}
code {
font-family: Fixedsys_Excelsior_WOFF2, Fixedsys_Excelsior_TTF, monospace;
color: gray;
}
.buttons {
margin-top: 5px;
}
/* user site list specific stuff */
.site-list {
list-style: none;
padding-left: 0;
margin-left: 0;
}
dt {
margin-top: 10px;
}
dt .site-title {
display: inline;
font-size: 24px;
}
dt sub {
font-size: 20px;
}
dd p {
margin-bottom: 0 !important;
}