mirror of
https://git.everypizza.im/n/everypizza.im.git
synced 2025-04-18 06:06:09 +02:00
61 lines
921 B
CSS
61 lines
921 B
CSS
@font-face {
|
|
font-family: "Atkinson Hyperlegible Mono WOFF2;
|
|
src: url('/assets/fonts/AtkinsonHyperlegibleMono-Regular.woff2');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Atkinson Hyperlegible Mono TTF;
|
|
src: url('/assets/fonts/Fixedsys Excelsior/AtkinsonHyperlegibleMono-Regular.ttf');
|
|
}
|
|
|
|
@media (min-width: 1000px) {
|
|
body {
|
|
width: 70%;
|
|
}
|
|
}
|
|
|
|
body {
|
|
background-color: black;
|
|
margin: auto;
|
|
color: white;
|
|
font-family: Atkinson Hyperlegible Mono WOFF2, Atkinson Hyperlegible Mono TTF, monospace;
|
|
}
|
|
|
|
.main {
|
|
background-color: black;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.nav {
|
|
font-size: 20px;
|
|
padding-left: 5px;
|
|
padding-right: 5px;
|
|
background-color: hotpink;
|
|
}
|
|
|
|
.new {
|
|
color: hotpink
|
|
}
|
|
|
|
.nav a {
|
|
color: black;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.nav > .current {
|
|
background-color: white;
|
|
color: black;
|
|
}
|
|
|
|
a:hover {
|
|
color: darkblue;
|
|
}
|
|
|
|
a {
|
|
color: dodgerblue;
|
|
text-decoration: none;
|
|
}
|
|
|
|
hr {
|
|
color: hotpink;
|
|
}
|