saudade/petz5world/style/style.scss

59 lines
813 B
SCSS
Raw Normal View History

2023-06-09 14:14:26 -07:00
@use 'menu.css';
2022-11-12 16:18:06 -08:00
// general
body {
2023-06-09 14:14:26 -07:00
text-align: center;
font-family: 'Georgia', serif;
font-size: 16px;
2022-11-12 16:18:06 -08:00
}
// index
#hit-counter {
2023-06-09 14:14:26 -07:00
display: inline-block;
border: 8px #bdbdbd solid;
background-color: #bdbdbd;
2022-11-12 16:18:06 -08:00
}
// 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 {
2023-06-09 14:14:26 -07:00
border: 1px solid;
padding: 5px;
2022-11-12 16:18:06 -08:00
}
.display-table {
2023-06-09 14:14:26 -07:00
display: table;
margin: 10px auto;
2022-11-12 16:18:06 -08:00
}
.inline-block {
2023-06-09 14:14:26 -07:00
display: inline-block;
margin: 0;
2022-11-12 16:18:06 -08:00
}
// hell
em { font-style: normal; }
em.r { color: #f00; }
em.y { color: #ff0; }
em.g { color: #9f0; }
em.b { color: #3ff; }
2023-06-09 14:14:26 -07:00
em.p { color: #96f; }