2023-01-07 13:57:19 +00:00
|
|
|
@use "mixins";
|
|
|
|
@use "reset";
|
|
|
|
|
|
|
|
body {
|
|
|
|
// Colors.
|
|
|
|
--foreground: #f1ebff;
|
|
|
|
--background: #1f003e;
|
|
|
|
--anchor: #89c3ff;
|
|
|
|
|
|
|
|
// Spacing constants.
|
2023-01-12 11:43:17 +00:00
|
|
|
--spacing-small: 8px;
|
|
|
|
--spacing-medium: 16px;
|
|
|
|
--spacing-large: 32px;
|
2023-01-07 13:57:19 +00:00
|
|
|
|
|
|
|
background-color: var(--background);
|
|
|
|
color: var(--foreground);
|
|
|
|
font-size: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: var(--anchor);
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
2023-01-15 22:30:10 +00:00
|
|
|
list-style-type: square;
|
2023-01-07 13:57:19 +00:00
|
|
|
margin-left: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
iframe,
|
|
|
|
h2 {
|
|
|
|
margin-top: var(--spacing-large);
|
|
|
|
}
|
|
|
|
|
|
|
|
iframe {
|
|
|
|
aspect-ratio: 16 / 9;
|
|
|
|
border: 2px dashed;
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
margin-bottom: var(--spacing-large);
|
|
|
|
max-width: 1280px;
|
2023-01-12 11:43:17 +00:00
|
|
|
padding: var(--spacing-small);
|
2023-01-07 13:57:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.page-header {
|
|
|
|
border-bottom: 2px dashed;
|
2023-01-12 11:43:17 +00:00
|
|
|
padding: var(--spacing-medium);
|
2023-01-07 13:57:19 +00:00
|
|
|
|
|
|
|
h1 {
|
|
|
|
@include mixins.responsive-container;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-main {
|
|
|
|
@include mixins.responsive-container;
|
|
|
|
}
|
|
|
|
|
|
|
|
.timestamp-link {
|
|
|
|
font-family: monospace;
|
|
|
|
}
|