2026-04-30 08:58:58 -07:00
|
|
|
#listings {
|
2026-04-29 21:12:19 -07:00
|
|
|
columns: 3;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 1050px) {
|
2026-04-30 08:58:58 -07:00
|
|
|
#listings {
|
2026-04-29 21:12:19 -07:00
|
|
|
columns: 2;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 650px) {
|
2026-04-30 08:58:58 -07:00
|
|
|
#listings {
|
2026-04-29 21:12:19 -07:00
|
|
|
columns: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* jump links */
|
|
|
|
|
#jump-links {
|
|
|
|
|
padding-bottom: 1rem;
|
|
|
|
|
margin-bottom: 1rem;
|
2026-04-30 08:58:58 -07:00
|
|
|
border-bottom: solid var(--color-pink);
|
2026-04-29 21:12:19 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#jump-links h2,
|
2026-04-30 08:58:58 -07:00
|
|
|
#jump-links li {
|
2026-04-29 21:12:19 -07:00
|
|
|
font-family: "Bebas Neue";
|
|
|
|
|
font-size: 1.3rem;
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#jump-links * {
|
|
|
|
|
display: inline;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-30 08:58:58 -07:00
|
|
|
#jump-links a {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#jump-links li {
|
2026-04-29 21:12:19 -07:00
|
|
|
list-style: none;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-30 08:58:58 -07:00
|
|
|
#jump-links li:not(:last-child)::after {
|
2026-04-29 21:12:19 -07:00
|
|
|
content: "..." / "";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* categories */
|
|
|
|
|
|
|
|
|
|
.category {
|
|
|
|
|
break-inside: avoid;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.category-title {
|
|
|
|
|
background-color: var(--color-gray);
|
|
|
|
|
padding: .25rem;
|
|
|
|
|
margin-bottom: .5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* references highlighting */
|
|
|
|
|
/* drawn from https://aarontgrogg.com/blog/2012/05/18/pure-css-highlight-for-link-target/ */
|
|
|
|
|
.category-title:has(h2:target) {
|
|
|
|
|
animation: hilite 2.5s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes hilite {
|
|
|
|
|
0% {background-color: var(--color-gray);}
|
|
|
|
|
10% {background-color: var(--color-cyan-flipped);}
|
|
|
|
|
100% {background-color: var(--color-gray);}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* remove animation for reduced motion viewers */
|
|
|
|
|
@media (prefers-reduced-motion: reduce) {
|
|
|
|
|
.category-title:has(h2:target) {
|
|
|
|
|
animation: none;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.category-title h2 {
|
|
|
|
|
scroll-margin-top: 4rem;
|
|
|
|
|
font-family: "Bebas Neue";
|
2026-04-30 08:58:58 -07:00
|
|
|
margin: 0;
|
2026-04-29 21:12:19 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.category-title p {
|
|
|
|
|
text-align: right;
|
|
|
|
|
font-weight: bold;
|
2026-04-30 08:58:58 -07:00
|
|
|
margin: 0;
|
2026-04-29 21:12:19 -07:00
|
|
|
}
|
|
|
|
|
|
2026-04-30 08:58:58 -07:00
|
|
|
/* individual listings */
|
2026-04-29 21:12:19 -07:00
|
|
|
|
2026-04-30 08:58:58 -07:00
|
|
|
.listing {
|
2026-04-29 21:12:19 -07:00
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.blurb {
|
|
|
|
|
margin-bottom: .5rem;
|
|
|
|
|
}
|
2026-04-30 08:58:58 -07:00
|
|
|
|
|
|
|
|
.blurb strong {
|
2026-04-29 21:12:19 -07:00
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.listed-on {
|
|
|
|
|
font-size: .85rem;
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|