2024-08-04 20:52:49 -05:00
|
|
|
/* general styling */
|
2024-03-19 20:33:14 -05:00
|
|
|
html {
|
|
|
|
|
font-family: monospace;
|
|
|
|
|
font-size: large;
|
|
|
|
|
background: linear-gradient(to bottom right, turquoise, teal);
|
|
|
|
|
min-height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-29 18:40:15 -05:00
|
|
|
body {
|
2024-05-27 18:35:52 -05:00
|
|
|
background: turquoise;
|
2025-12-29 18:40:15 -05:00
|
|
|
max-width: 80ch;
|
|
|
|
|
margin: 0 auto;
|
2024-05-27 20:31:44 -05:00
|
|
|
}
|
|
|
|
|
|
2024-08-04 20:52:49 -05:00
|
|
|
/* header and footer */
|
2024-05-27 20:31:44 -05:00
|
|
|
header {
|
2025-12-29 18:40:15 -05:00
|
|
|
padding: 1rem;
|
2024-03-19 20:33:14 -05:00
|
|
|
}
|
|
|
|
|
|
2024-10-05 19:15:34 -05:00
|
|
|
#homelink {
|
2024-03-19 20:33:14 -05:00
|
|
|
color: blue;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
font-size: xx-large;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
2024-10-05 19:15:34 -05:00
|
|
|
#homelink:hover {
|
|
|
|
|
text-decoration: underline;
|
2024-03-19 20:33:14 -05:00
|
|
|
}
|
|
|
|
|
|
2024-08-04 20:52:49 -05:00
|
|
|
/* main content */
|
2024-08-16 00:19:53 -05:00
|
|
|
main nav {
|
2025-12-29 17:05:59 -05:00
|
|
|
padding: 1rem;
|
2024-03-19 20:33:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
article {
|
2025-12-29 17:05:59 -05:00
|
|
|
padding: 1rem;
|
2024-03-19 20:33:14 -05:00
|
|
|
text-align: justify;
|
|
|
|
|
hyphens: auto;
|
2024-08-04 21:17:39 -05:00
|
|
|
/* about page is janky without this; see
|
|
|
|
|
* https://developer.mozilla.org/en-US/docs/Learn/CSS/CSS_layout/Floats#clearing_boxes_wrapped_around_a_float */
|
2024-05-27 20:59:40 -05:00
|
|
|
display: flow-root;
|
2024-03-19 20:33:14 -05:00
|
|
|
}
|
|
|
|
|
|
2024-03-19 20:33:14 -05:00
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
|
2024-05-27 09:37:59 -05:00
|
|
|
ul {
|
|
|
|
|
padding-left: 2ch;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ol {
|
|
|
|
|
padding-left: 3ch;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ol ol {
|
|
|
|
|
list-style: lower-alpha
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ol ol ol {
|
|
|
|
|
list-style: lower-roman
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-19 20:33:14 -05:00
|
|
|
@media screen and (min-width: 80ch) {
|
2024-05-27 17:46:17 -05:00
|
|
|
body {
|
2025-12-29 18:40:15 -05:00
|
|
|
border: 3px black solid;
|
2024-03-19 20:33:14 -05:00
|
|
|
}
|
|
|
|
|
}
|