summaryrefslogtreecommitdiff
path: root/public/stylesheets/ccc.css
diff options
context:
space:
mode:
Diffstat (limited to 'public/stylesheets/ccc.css')
-rw-r--r--public/stylesheets/ccc.css62
1 files changed, 56 insertions, 6 deletions
diff --git a/public/stylesheets/ccc.css b/public/stylesheets/ccc.css
index 30eb8dd..cbeea17 100644
--- a/public/stylesheets/ccc.css
+++ b/public/stylesheets/ccc.css
@@ -216,7 +216,7 @@ div#frontpage_calendar {
216 } 216 }
217} 217}
218 218
219div#frontpage_calendar h2, div#tags h2, div#featured_articles h2, div.main_navigation h2 { 219div#frontpage_calendar h2, div#tags h2, div#featured_articles h2, div#open_erfas_today h2, div.main_navigation h2 {
220 border-top: 2px solid; 220 border-top: 2px solid;
221 border-bottom: 2px solid; 221 border-bottom: 2px solid;
222 font-size: 1.1em; 222 font-size: 1.1em;
@@ -234,6 +234,18 @@ div#frontpage_calendar h2 {
234 margin-top: 0; 234 margin-top: 0;
235} 235}
236 236
237div#open_erfas_today li {
238 margin-top: 8px;
239 margin-bottom: 8px;
240 line-height: 1.25;
241}
242
243div#open_erfas_today .event_time {
244 font-style: italic;
245 font-family: Georgia;
246 color: color-mix(in srgb, CanvasText, #808080);
247}
248
237@media(max-width:1016px) { 249@media(max-width:1016px) {
238 div#tags li { 250 div#tags li {
239 list-style-type: none; 251 list-style-type: none;
@@ -248,7 +260,7 @@ div#frontpage_calendar h2 {
248} 260}
249 261
250@media(min-width:1016px) { 262@media(min-width:1016px) {
251 div#frontpage_calendar h2, div#tags h2, div#featured_articles h2 { 263 div#frontpage_calendar h2, div#tags h2, div#featured_articles h2, div#open_erfas_today h2 {
252 font-size: 1rem; 264 font-size: 1rem;
253 } 265 }
254 266
@@ -260,9 +272,9 @@ div#frontpage_calendar h2 {
260 272
261} 273}
262 274
263div#frontpage_calendar ul, div#tags ul, div#featured_articles ul { 275div#frontpage_calendar ul, div#tags ul, div#featured_articles ul, div#open_erfas_today ul {
264 padding: 0px; 276 padding: 0px;
265 font-size: 1rem; 277 font-size: 0.9rem;
266 line-height: 1.5em; 278 line-height: 1.5em;
267} 279}
268 280
@@ -278,11 +290,11 @@ div#frontpage_calendar li {
278 margin-bottom: 20px; 290 margin-bottom: 20px;
279} 291}
280 292
281div#frontpage_calendar li, div#tags li, div#featured_articles li { 293div#frontpage_calendar li, div#tags li, div#featured_articles li, div#open_erfas_today li {
282 list-style-type: none; 294 list-style-type: none;
283} 295}
284 296
285div#frontpage_calendar li a, div#tags li a, div#featured_articles li a { 297div#frontpage_calendar li a, div#tags li a, div#featured_articles li a, div#open_erfas_today li a {
286 text-decoration: none; 298 text-decoration: none;
287 color: color-mix(in srgb, CanvasText, #808080 25%); 299 color: color-mix(in srgb, CanvasText, #808080 25%);
288} 300}
@@ -598,3 +610,41 @@ label[for=light-mode] {
598 } 610 }
599} 611}
600 612
613.chapter_partial_layout {
614 display: flex;
615 gap: 12px;
616 align-items: flex-start;
617}
618
619.chapter_thumbnail img {
620 width: 64px;
621 height: 64px;
622 object-fit: cover;
623 border-radius: 4px;
624 display: block;
625}
626
627.chapter_partial_content {
628 min-width: 0;
629}
630
631
632.inline-image--full {
633 width: 100%;
634 margin: 1rem 0;
635}
636
637.inline-image--half {
638 width: 48%;
639 margin-bottom: 1rem;
640}
641
642.inline-image--left {
643 float: left;
644 margin-right: 1rem;
645}
646
647.inline-image--right {
648 float: right;
649 margin-left: 1rem;
650}