45 lines
667 B
CSS
45 lines
667 B
CSS
body {
|
|
width: auto;
|
|
font-size: 1em;
|
|
font-family: 'Atkinson Hyperlegible Next', sans-serif;
|
|
color: #e8e8e8;
|
|
background-color: #17181c;
|
|
}
|
|
|
|
a {
|
|
color: #f90;
|
|
}
|
|
|
|
a:active {
|
|
color: #f93;
|
|
}
|
|
|
|
a:visited {
|
|
color: #fc0;
|
|
}
|
|
|
|
hr {
|
|
border: 2px dashed #e0e0e0;
|
|
}
|
|
|
|
.button {
|
|
gap: 5px;
|
|
display: flex;
|
|
|
|
& img {
|
|
width: 88px;
|
|
height: 31px;
|
|
image-rendering: pixelated;
|
|
}
|
|
|
|
& .generic {
|
|
box-sizing: border-box;
|
|
color: white;
|
|
text-align: center;
|
|
border: .15rem solid;
|
|
align-content: center;
|
|
width: 88px;
|
|
display: inline-block;
|
|
height: 31px;
|
|
}
|
|
} |