saudade/petz5world/petz5world.css

85 lines
964 B
CSS
Raw Normal View History

2023-06-09 16:03:44 -07:00
/* general */
body {
2023-12-10 20:37:03 -08:00
text-align: center;
font-family: "Georgia", serif;
font-size: 16px;
color: var(--color);
background-color: var(--background-color);
background-image: var(--background-image);
2023-06-09 16:03:44 -07:00
}
/* index */
#hit-counter {
2023-12-10 20:37:03 -08:00
display: inline-block;
border: 8px #bdbdbd solid;
background-color: #bdbdbd;
2023-06-09 16:03:44 -07:00
}
/* text */
2023-12-10 20:37:03 -08:00
h1 {
font-size: 32px;
}
2023-06-09 16:03:44 -07:00
2023-12-10 20:37:03 -08:00
h2 {
font-size: 24px;
}
2023-06-09 16:03:44 -07:00
2023-12-10 20:37:03 -08:00
.defunct {
text-decoration: line-through;
}
2023-06-09 16:03:44 -07:00
2023-12-10 20:37:03 -08:00
.small {
font-size: 13px;
}
2023-06-09 16:03:44 -07:00
2023-12-10 20:37:03 -08:00
.big {
font-size: 18px;
}
2023-06-09 16:03:44 -07:00
2023-12-10 20:37:03 -08:00
.normal {
font-size: 16px;
}
2023-06-09 16:03:44 -07:00
/* misc formatting */
.missing-asset {
2023-12-10 20:37:03 -08:00
border: 1px solid;
padding: 5px;
2023-06-09 16:03:44 -07:00
}
.display-table {
2023-12-10 20:37:03 -08:00
display: table;
margin: 10px auto;
2023-06-09 16:03:44 -07:00
}
.inline-block {
2023-12-10 20:37:03 -08:00
display: inline-block;
margin: 0;
2023-06-09 16:03:44 -07:00
}
/* hell */
2023-12-10 20:37:03 -08:00
i.r {
color: #f00;
font-style: normal;
}
i.y {
color: #ff0;
font-style: normal;
}
i.g {
color: #9f0;
font-style: normal;
}
i.b {
color: #3ff;
font-style: normal;
}
i.p {
color: #96f;
font-style: normal;
}