saudade/wordfire/wordfire.css

76 lines
923 B
CSS
Raw Normal View History

2023-06-09 14:14:26 -07:00
body {
2023-12-10 20:37:03 -08:00
--background-color: #ccf;
font-family: Verdana, Arial, Helvetica, sans-serif;
background-color: var(--background-color);
font-size: 13px;
2023-06-09 14:14:26 -07:00
}
h1 {
2023-12-10 20:37:03 -08:00
font-size: 48px;
font-weight: 700;
color: #c0f;
font-style: italic;
text-decoration: underline;
2023-06-09 14:14:26 -07:00
}
/* text */
2023-12-10 20:37:03 -08:00
.center {
text-align: center;
}
2023-06-09 14:14:26 -07:00
2023-12-10 20:37:03 -08:00
.small {
font-size: 10px;
}
2023-06-09 14:14:26 -07:00
2023-12-10 20:37:03 -08:00
.medium {
font-size: 16px;
}
2023-06-09 14:14:26 -07:00
2023-12-10 20:37:03 -08:00
.big {
font-size: 18px;
}
2023-06-09 14:14:26 -07:00
2023-12-10 20:37:03 -08:00
.arial {
font-family: Arial, Helvetica, sans-serif;
}
2023-06-09 14:14:26 -07:00
2023-12-10 20:37:03 -08:00
.times {
font-family: "Times New Roman", serif;
}
2023-06-09 14:14:26 -07:00
2023-12-10 20:37:03 -08:00
.georgia {
font-family: Georgia, serif;
}
2023-06-09 14:14:26 -07:00
2023-12-10 20:37:03 -08:00
.courier {
font-family: "Courier New", Courier, monospace;
}
2023-06-09 14:14:26 -07:00
2023-12-10 20:37:03 -08:00
.defunct {
text-decoration: line-through;
}
2023-06-17 13:12:52 -07:00
2023-06-09 14:14:26 -07:00
/* misc */
.missing-asset {
2023-12-10 20:37:03 -08:00
border: 1px solid;
padding: 5px;
2023-06-09 14:14:26 -07:00
}
.display-table {
2023-12-10 20:37:03 -08:00
display: table;
margin: 10px auto;
2023-06-09 14:14:26 -07:00
}
.inline-block {
2023-12-10 20:37:03 -08:00
display: inline-block;
margin: 0;
2023-06-09 14:14:26 -07:00
}
2023-12-10 20:37:03 -08:00
#god {
float: right;
width: 130px;
text-align: center;
}