58 lines
No EOL
807 B
SCSS
58 lines
No EOL
807 B
SCSS
@use '../../style/menu';
|
|
|
|
// general
|
|
|
|
body {
|
|
text-align: center;
|
|
font-family: 'Georgia', serif;
|
|
font-size: 16px;
|
|
}
|
|
|
|
// index
|
|
|
|
#hit-counter {
|
|
display: inline-block;
|
|
border: 8px #bdbdbd solid;
|
|
background-color: #bdbdbd;
|
|
}
|
|
|
|
// text
|
|
|
|
h1 { font-size: 32px; }
|
|
|
|
h2 { font-size: 24px; }
|
|
|
|
.defunct { text-decoration: line-through; }
|
|
|
|
.small { font-size: 13px; }
|
|
|
|
.big { font-size: 18px; }
|
|
|
|
.normal { font-size: 16px; }
|
|
|
|
// misc formatting
|
|
|
|
.missing-asset {
|
|
border: 1px solid;
|
|
padding: 5px;
|
|
}
|
|
|
|
.display-table {
|
|
display: table;
|
|
margin: 10px auto;
|
|
}
|
|
|
|
.inline-block {
|
|
display: inline-block;
|
|
margin: 0;
|
|
}
|
|
|
|
// hell
|
|
|
|
em { font-style: normal; }
|
|
|
|
em.r { color: #f00; }
|
|
em.y { color: #ff0; }
|
|
em.g { color: #9f0; }
|
|
em.b { color: #3ff; }
|
|
em.p { color: #96f; } |