aesthetic/stylesheets/main.cssView |
---|
16 | 16 | background: var(--primary_bg) it means I'm using a variable called |
17 | 17 | --primary_bg which I defined in that colors.css. So check it out! |
18 | 18 | */ |
19 | 19 | |
20 | | - |
| 20 | + |
| 21 | +These are some global values that I want to apply to the elements themselves */ |
21 | 22 | body, html { |
22 | 23 | padding: 0; |
23 | 24 | margin: 0; |
24 | 25 | box-sizing: border-box; |
| 26 | + font-family: var(--body-text); |
| 27 | + font-size: var(--standard-size); |
25 | 28 | } |
26 | 29 | |
27 | 30 | p { |
28 | 31 | line-height: 1.3em; |
92 | 95 | and #greetings h2 corresponds to the <h2> tag inside the <section id='greetings> |
93 | 96 | and #greetings .words corresponds to anything with the class words in the #greetings section (like <div class='words'>) |
94 | 97 | */ |
95 | 98 | |
| 99 | + |
| 100 | +.breadcrumb { |
| 101 | + position: absolute; |
| 102 | + font-weight: 200; |
| 103 | + font-style: italic; |
| 104 | + font-size: 0.75em; |
| 105 | + top: 0; |
| 106 | + right: 0; |
| 107 | + padding: 1em; |
| 108 | + padding-top: 0; |
| 109 | +} |
| 110 | + |
| 111 | + |
96 | 112 | #greetings { |
97 | 113 | display: grid; |
98 | 114 | grid-template-areas: |
99 | 115 | "header header header" |
168 | 184 | #greetings .flower-garden img { |
169 | 185 | max-width: 33%; |
170 | 186 | } |
171 | 187 | |
| 188 | + |
172 | 189 | #home { |
173 | 190 | background: var(--primary_bg); |
174 | 191 | color: var(--primary_color); |
175 | 192 | font-size: var(--standard-size); |
184 | 201 | #home header h1 { |
185 | 202 | margin-top: 0; |
186 | 203 | padding: 0; |
187 | 204 | font-family: var(--title-text); |
188 | | - color: var(--heading-color); |
| 205 | + color: var(--heading_color); |
189 | 206 | font-size: 8vw; |
190 | 207 | margin-bottom: 0; |
191 | 208 | padding-bottom: 0; |
192 | 209 | } |
232 | 249 | } |
233 | 250 | |
234 | 251 | .daiso-card { |
235 | 252 | |
236 | | - background-color: var(--heading-color); |
| 253 | + background-color: var(--border_bg); |
237 | 254 | background-image: radial-gradient(white 15%, transparent 16%), |
238 | 255 | radial-gradient(white 15%, transparent 16%); |
239 | 256 | background-size: 8px 8px; |
240 | 257 | background-position: 0 0, 20px 20px; |
263 | 280 | .daiso-page h2{ |
264 | 281 | font-family: var(--title-text); |
265 | 282 | margin-bottom: 0; |
266 | 283 | text-align: left; |
| 284 | + color: var(--tertiary-heading_color); |
267 | 285 | width: 100%; |
268 | 286 | letter-spacing: 0.25em; |
269 | 287 | padding-left: 1.5em; |
270 | 288 | } |
293 | 311 | font-family: var(--title-text); |
294 | 312 | font-size: 1.8em; |
295 | 313 | letter-spacing: 0.25em; |
296 | 314 | padding: 0.25em; |
297 | | - color: lavenderblush; |
298 | 315 | background: var(--heading-color); |
| 316 | + color: var(--tertiary-heading_color); |
299 | 317 | } |
300 | 318 | |
301 | 319 | #directory ul { |
302 | 320 | list-style-type: none; |
371 | 389 | |
372 | 390 | #question-page { |
373 | 391 | background: var(--primary_bg); |
374 | 392 | color: var(--primary_color); |
375 | | -} |
376 | | - |
377 | | -#question-form { |
378 | | - |
379 | | -} |
380 | | - |
381 | | - |
382 | | - |
383 | | -#updates { |
384 | | - max-width: 960px; |
385 | | - margin: auto; |
386 | | - margin-top: 3em; |
387 | | - background: white; |
388 | | - padding: 0; |
389 | | -} |
390 | | - |
391 | | -@media (max-width: 667px) { |
392 | | - #updates { |
393 | | - margin: 0.5em; |
394 | | - margin-top: 3em; |
395 | | - } |
396 | | -} |
397 | | - |
398 | | -#updates h2 { |
399 | | - width: 100%; |
400 | | - margin: 0; |
401 | | - background: var(--heading-color); |
402 | | - color: lavenderblush; |
403 | | - text-align: center; |
404 | | - font-family: var(--title-text); |
405 | | -} |
406 | | - |
407 | | -#updates ul { |
408 | | - margin: 0.75em; |
409 | 393 | padding: 3em; |
410 | | - background-image: radial-gradient(lightgray 15%, transparent 16%), |
411 | | - radial-gradient(lightgray 15%, transparent 16%); |
412 | | - background-size: 05px 07px; |
413 | | - background-position: 11px 11px, 14px 14px; |
414 | | - list-style-type: circle; |
415 | 394 | } |
416 | | - |
417 | | - |
418 | | - And heading for each item in my directory, while being able to change |
419 | | - their colors in just one spot. |
420 | | -*/ |
421 | | -.friends { |
422 | | - --dotted-pattern_bg: red; |
423 | | -} |
424 | | -.friends strong { |
425 | | - border-bottom: 1px solid red; |
426 | | -} |
427 | | - |
428 | | -.boardgames{ |
429 | | - --dotted-pattern_bg: red; |
430 | | -} |
431 | | -.boardgames strong { |
432 | | - border-bottom: 1px solid red; |
433 | | -} |
434 | | - |
435 | | -.solarpunk-magic { |
436 | | - --dotted-pattern_bg: purple; |
437 | | -} |
438 | | - |
439 | | -.solarpunk-magic strong { |
440 | | - border-bottom: 1px solid purple; |
441 | | -} |
442 | | - |
443 | | -.computer-thoughts { |
444 | | - --dotted-pattern_bg: green; |
445 | | -} |
446 | | -.computer-thoughts strong{ |
447 | | - border-bottom: 1px solid green; |
448 | | -} |
449 | | - |
450 | | -.projects { |
451 | | - --dotted-pattern_bg: orange; |
452 | | -} |
453 | | - |
454 | | -.projects strong { |
455 | | - border-bottom: 1px solid orange; |
456 | | -} |
457 | | - |
458 | | -.calendar { |
459 | | - --dotted-pattern_bg: gray; |
460 | | -} |
461 | | - |
462 | | -.calendar strong{ |
463 | | - border-bottom: 1px solid gray; |
464 | | -} |
465 | | - |
466 | | -.movies { |
467 | | - --dotted-pattern_bg: blue; |
468 | | -} |
469 | | -.movies strong{ |
470 | | - border-bottom: 1px solid blue; |
471 | | -} |
472 | | - |
473 | | -.links { |
474 | | - --dotted-pattern_bg: violet; |
475 | | -} |
476 | | - |
477 | | -.links strong { |
478 | | - border-bottom: 1px solid violet; |
479 | | -} |
480 | | - |
481 | | -.thoughts { |
482 | | - --dotted-pattern_bg: yellow; |
483 | | -} |
484 | | - |
485 | | -.thoughts strong{ |
486 | | - border-bottom: 1px solid yellow; |
487 | | -} |
488 | | - * Coolguy.Website STYLES!!! * |
489 | | - *-----------------------------------------------------------* |
490 | | - * My main stylesheet, and the reason why coolguy looks * |
491 | | - * sooooo gooooooood. I was listening to a lot of * |
492 | | - * gothboiclique whie writing this, so the site might end * |
493 | | - * up more emo teen than intended. * |
494 | | - * * |
495 | | - ************************************************************/ |
496 | | - |
497 | | - |
498 | | -I have another file called colors.css that sets up color |
499 | | -variables for things like background, font color, accent color |
500 | | -and so on. This lets me be able to change the palette of the site |
501 | | -quickly. So if you see something in this file like: |
502 | | -background: var(--primary_bg) it means I'm using a variable called |
503 | | ---primary_bg which I defined in that colors.css. So check it out! |
504 | | -*/ |
505 | | - |
506 | | - |
507 | | -body, html { |
508 | | - padding: 0; |
509 | | - margin: 0; |
510 | | - box-sizing: border-box; |
511 | | -} |
512 | | - |
513 | | -p { |
514 | | - line-height: 1.3em; |
515 | | -} |
516 | | - |
517 | | -li { |
518 | | - line-height: 1.2em; |
519 | | - margin-bottom: 1.3em; |
520 | | -} |
521 | | - |
522 | | -a { |
523 | | - color: var(--link-color); |
524 | | - text-decoration: none; |
525 | | -} |
526 | | - |
527 | | -a:hover { |
528 | | - font-weight: 200; |
529 | | -} |
530 | | - |
531 | | -a:after { |
532 | | - content: "⬫"; |
533 | | - margin-left: 0.1em; |
534 | | - color: var(--link-symbol_color); |
535 | | -} |
536 | | - |
537 | | -figure { |
538 | | - max-width: 950px; |
539 | | - margin: auto; |
540 | | - margin-bottom: 3em; |
541 | | -} |
542 | | -figure img { |
543 | | - max-width: 90%; |
544 | | -} |
545 | | - |
546 | | -figcaption { |
547 | | - border-top: 1px solid var(--heading-color); |
548 | | - border-bottom: 1px solid var(--heading-color); |
549 | | - padding: 0.5em; |
550 | | - max-width: 500px; |
551 | | - margin: auto; |
552 | | - margin-bottom: 3em; |
553 | | -} |
554 | 395 | @media (max-width: 667px) { |
555 | | - figcaption { |
556 | | - margin: 0.5em; |
| 396 | + #question-page { |
| 397 | + padding: 0; |
557 | 398 | } |
558 | 399 | } |
559 | 400 | |
560 | | -figcaption p{ |
561 | | - margin-top: 0.5em; |
562 | | - font-size: 0.65em; |
563 | | - font-style: italic; |
| 401 | +#question-page h1 { |
| 402 | + letter-spacing: 4px; |
564 | 403 | } |
565 | | - |
566 | | -section { |
567 | | - padding: 3em; |
568 | | -} |
569 | 404 | @media (max-width: 667px) { |
570 | | - section { |
571 | | - padding: 1em; |
| 405 | + #question-page h1{ |
| 406 | + margin: 2em auto 0 auto; |
| 407 | + padding-left: 1em; |
572 | 408 | } |
573 | 409 | } |
574 | 410 | |
575 | | - |
576 | | -These are some ID and Class specific values. Id's are represented as #name and class .name |
577 | | -So #greetings corresponds to <section id="greetings"></section> on my home page, |
578 | | -and #greetings h2 corresponds to the <h2> tag inside the <section id='greetings> |
579 | | -and #greetings .words corresponds to anything with the class words in the #greetings section (like <div class='words'>) |
580 | | -*/ |
581 | | - |
582 | | -#greetings { |
583 | | - display: grid; |
584 | | - grid-template-areas: |
585 | | - "header header header" |
586 | | - "words words portrait" |
587 | | - "words words portrait" |
588 | | - "flower flower portrait"; |
589 | | - max-width: 1200px; |
590 | | - margin: auto; |
| 411 | +#question-page .daiso-card { |
| 412 | + max-width: 800px; |
591 | 413 | } |
592 | | - |
593 | | - the browser viewing it. Our first query would be for ipads or smaller |
594 | | - browsers, the next is for phones. |
595 | | -*/ |
596 | | -@media (max-width: 1100px) { |
597 | | - #greetings { |
598 | | - grid-template-areas: |
599 | | - "header header header" |
600 | | - " words words portrait" |
601 | | - "flower flower flower"; |
602 | | - } |
603 | | - #greetings .flower-garden { |
604 | | - align-items: center; |
605 | | - justify-content: center !important; |
606 | | - } |
607 | | -} |
608 | | -@media (max-width: 667px) { |
609 | | - #greetings { |
610 | | - grid-template-areas: |
611 | | - "header" |
612 | | - "portrait" |
613 | | - "words" |
614 | | - "flower"; |
615 | | - } |
616 | | -} |
617 | 414 | |
618 | | -#greetings h2 { |
619 | | - font-family: var(--heading-text); |
620 | | - font-size: 1.3em; |
621 | | - font-weight: 500; |
622 | | - grid-area: header; |
623 | | - letter-spacing: 0.2em; |
| 415 | +#q-introduction { |
| 416 | + padding-top: 1em; |
| 417 | + font-size: 0.75em; |
624 | 418 | } |
625 | 419 | |
626 | | -#greetings .words { |
627 | | - grid-area: words |
628 | | -} |
629 | | - |
630 | | -#greetings aside { |
631 | | - font-weight: 300; |
| 420 | +#question-form fieldset { |
| 421 | + margin: 0 2em 2em 2em; |
| 422 | + width: 80%; |
632 | 423 | font-size: 0.8em; |
633 | | - letter-spacing: 0.05em; |
634 | | - font-style: italic; |
635 | | -} |
636 | | - |
637 | | -#greetings .portrait { |
638 | | - grid-area: portrait; |
639 | | - align-self: end; |
640 | | -} |
641 | | - |
642 | | - |
643 | | -#greetings .portrait img{ |
644 | | - max-width: 100%; |
645 | | -} |
646 | | - |
647 | | -#greetings .flower-garden { |
648 | | - grid-area: flower; |
| 424 | + padding: auto 2em 2em 2em; |
649 | 425 | display: flex; |
650 | | - justify-content: end; |
651 | | - align-items: baseline; |
| 426 | + flex-direction: column; |
| 427 | + border: 1px solid pink; |
652 | 428 | } |
653 | 429 | |
654 | | -#greetings .flower-garden img { |
655 | | - max-width: 33%; |
656 | | -} |
657 | | - |
658 | | -#home { |
659 | | - background: var(--primary_bg); |
660 | | - color: var(--primary_color); |
661 | | - font-size: var(--standard-size); |
662 | | - font-family: var(--body-text); |
663 | | -} |
664 | | - |
665 | | -#home header { |
666 | | - background: lavenderblush; |
667 | | - padding: 2em 2em 0.1em 1em; |
668 | | -} |
669 | | - |
670 | | -#home header h1 { |
671 | | - margin-top: 0; |
672 | | - padding: 0; |
673 | | - font-family: var(--title-text); |
674 | | - color: var(--heading-color); |
675 | | - font-size: 8vw; |
676 | | - margin-bottom: 0; |
677 | | - padding-bottom: 0; |
678 | | -} |
679 | | -@media (max-width: 667px) { |
680 | | - #home header h1 { |
681 | | - font-size: 11vw; |
682 | | - } |
683 | | -} |
684 | | - |
685 | | -#home header .subtitle { |
686 | | - margin-top: -0.75em; |
687 | | - font-size: 1.3em; |
688 | | - font-weight: 200; |
689 | | - padding-left: 1em; |
690 | | -} |
691 | | -@media (max-width: 667px) { |
692 | | - #home header .subtitle { |
693 | | - font-size: 1em; |
694 | | - margin-top: -0.5em; |
695 | | - } |
696 | | -} |
697 | | - |
698 | | -#invocation { |
699 | | - position: absolute; |
700 | | - top: 0; |
701 | | - right: 0; |
702 | | - padding: 0.75em; |
703 | | - font-size: 0.5em; |
704 | | - font-weight: 300; |
705 | | - font-style: italic; |
706 | | -} |
707 | | - |
708 | | - |
709 | | - We are applying the invocation to a quote tag (<q>). |
710 | | - Browsers add in quote marks to these tags, |
711 | | - but I don't want them, so we are removing them here. |
712 | | -*/ |
713 | | -#invocation:before { |
714 | | - content: none; |
715 | | -} |
716 | | -#invocation:after { |
717 | | - content: none; |
718 | | -} |
719 | | - |
720 | | -.daiso-card { |
721 | | - |
722 | | - background-color: var(--heading-color); |
723 | | - background-image: radial-gradient(white 15%, transparent 16%), |
724 | | - radial-gradient(white 15%, transparent 16%); |
725 | | - background-size: 8px 8px; |
726 | | - background-position: 0 0, 20px 20px; |
727 | | - border-radius: 5px; |
728 | | - max-width: 500px; |
729 | | - margin: auto; |
730 | | - margin-bottom: 3em; |
731 | | - padding: 0.25em; |
732 | | -} |
733 | | -@media (max-width: 667px) { |
734 | | - .daiso-card{ |
735 | | - margin: 1em; |
736 | | - } |
737 | | -} |
738 | | - |
739 | | -.daiso-page { |
740 | | - background: lavenderblush; |
741 | | - width: 100%; |
| 430 | +#question-form fieldset span { |
742 | 431 | display: flex; |
743 | | - flex-direction: column; |
744 | | - justify-content: center; |
745 | 432 | align-items: center; |
746 | | - border-radius: 5px; |
| 433 | + margin-bottom: 0.5em; |
747 | 434 | } |
748 | 435 | |
749 | | -.daiso-page h2{ |
| 436 | +#question-form fieldset span label { |
| 437 | + padding-left: 0.5em; |
| 438 | +} |
| 439 | +#question-form label[for="question"] { |
750 | 440 | font-family: var(--title-text); |
751 | | - margin-bottom: 0; |
752 | | - text-align: left; |
753 | | - width: 100%; |
754 | | - letter-spacing: 0.25em; |
755 | | - padding-left: 1.5em; |
| 441 | + margin-top: 1em; |
| 442 | + font-size: 1.5em; |
756 | 443 | } |
757 | | - |
758 | | -.daiso-page ul { |
759 | | - margin-top: 0.5em; |
760 | | - display: grid; |
761 | | - grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); |
762 | | - grid-gap: 0.25em 0.25em; |
| 444 | +#question-form textarea { |
| 445 | + margin: 2em; |
763 | 446 | padding: 1em; |
764 | | - list-style-type: none; |
765 | | - margin-bottom: 0; |
| 447 | + font-size: 1em; |
| 448 | + height: 200px; |
| 449 | + border: none; |
| 450 | + width: 79%; |
766 | 451 | } |
767 | 452 | |
768 | | -#directory { |
769 | | - border-top: 3px dotted var(--page-divider_color); |
770 | | - border-bottom: 3px dotted var(--page-divider_color); |
771 | | - box-shadow: inset 0 -1px 0 0 var(--page-divider_color), inset 0 1px 0 0 var(--page-divider_color), 0 1px 0 0 var(--page-divider_color), 0 -1px 0 0 var(--page-divider_color); |
772 | | -} |
773 | | - |
774 | | -#directory h2 { |
775 | | - max-width: 920px; |
776 | | - text-align: center; |
777 | | - margin: auto; |
| 453 | +#querent aside { |
| 454 | + font-style: italic; |
| 455 | + font-size: 0.75em; |
| 456 | + margin-top: 0; |
778 | 457 | margin-bottom: 1em; |
779 | | - font-family: var(--title-text); |
780 | | - font-size: 1.8em; |
781 | | - letter-spacing: 0.25em; |
782 | | - padding: 0.25em; |
783 | | - color: lavenderblush; |
784 | | - background: var(--heading-color); |
| 458 | + padding-top: 0; |
785 | 459 | } |
786 | 460 | |
787 | | -#directory ul { |
788 | | - list-style-type: none; |
789 | | - max-width: 940px; |
790 | | - display: grid; |
791 | | - grid-gap: 10px; |
792 | | - margin: 0 auto; |
793 | | - grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); |
794 | | - grid-auto-rows: repeat(auto-fit, minmax(50px, auto)); |
795 | | - padding: 0; |
796 | | -} |
797 | | - |
798 | | -.directory-item a { |
799 | | - background: white; |
800 | | - padding: 1em; |
801 | | - position: relative; |
| 461 | +#querent label { |
802 | 462 | display: flex; |
803 | | - flex-direction: column; |
804 | | - border: 1px solid lightgray; |
805 | | - z-index: 1; |
806 | | -} |
807 | | - |
808 | | -.directory-item strong { |
809 | 463 | margin-bottom: 1em; |
810 | | - line-height: 1em; |
811 | | - font-size: 1.2em; |
812 | | - margin-bottom: 1.5em; |
813 | | - font-weight: 300; |
814 | | - font-family: var(--secondary-heading-text); |
815 | 464 | } |
816 | 465 | |
817 | | -.directory-item a:after { |
818 | | - content: none; |
| 466 | +#querent input { |
| 467 | + margin-left: 1em; |
| 468 | + font-size: 0.8em; |
| 469 | + border: none; |
| 470 | + border-bottom: 1px solid pink; |
| 471 | + background: none; |
819 | 472 | } |
820 | 473 | |
821 | | -@media (min-width: 800px) { |
822 | | -#directory li:last-of-type { |
823 | | - grid-column-start: 2; |
| 474 | +#question-form input[type="radio"] { |
| 475 | + border: none; |
| 476 | + color: var(--primary-color); |
824 | 477 | } |
| 478 | +#question-form input[type="submit"] { |
| 479 | + width: 100%; |
| 480 | + background: pink; |
| 481 | + height: 3em; |
| 482 | + padding: 1em; |
| 483 | + font-size: 1.1em; |
| 484 | + color: var(--primary-color); |
| 485 | + font-weight: 200; |
| 486 | + cursor: pointer; |
825 | 487 | } |
826 | 488 | |
827 | | -.directory-item .description { |
828 | | - color: var(--primary_color); |
829 | | - margin-bottom: 1.5em; |
| 489 | +#question-form input[type="submit"]:hover { |
| 490 | + background: HSL(350, 100%, 90%); |
830 | 491 | } |
831 | 492 | |
832 | | - |
833 | | - What this means is that if I have a new section whose lines are real long, |
834 | | - then I need to add this class to it. I feel this is fine, though, since I |
835 | | - am not adding new items all that much, and so I don't need this to be all |
836 | | - calculated and dynamic, and I can keep the site JS-free. |
837 | | -*/ |
838 | 493 | |
839 | | -#directory .tall { |
840 | | - grid-row-end: span 2; |
841 | | -} |
842 | | - |
843 | | - |
844 | | -.dotted-pattern { |
845 | | - position: absolute; |
846 | | - height: 102%; |
847 | | - width: 100%; |
848 | | - top: 7px; |
849 | | - right: 7px; |
850 | | - background-color:none; |
851 | | - background-image: radial-gradient(var(--dotted-pattern_bg) 15%, transparent 16%), |
852 | | - radial-gradient(var(--dotted-pattern_bg) 15%, transparent 16%); |
853 | | - background-size: 05px 07px; |
854 | | - background-position: 11px 11px, 14px 14px; |
855 | | - z-index: -1 |
856 | | -} |
857 | | - |
858 | 494 | |
859 | 495 | |
860 | 496 | #updates { |
861 | 497 | max-width: 960px; |
862 | 498 | margin: auto; |
863 | 499 | margin-top: 3em; |
864 | 500 | background: white; |
865 | 501 | padding: 0; |
| 502 | + margin-bottom: 3em; |
| 503 | + padding-bottom: 0.05em; |
866 | 504 | } |
867 | 505 | |
868 | 506 | @media (max-width: 667px) { |
869 | 507 | #updates { |
874 | 512 | |
875 | 513 | #updates h2 { |
876 | 514 | width: 100%; |
877 | 515 | margin: 0; |
878 | | - background: var(--heading-color); |
879 | | - color: lavenderblush; |
| 516 | + background: var(--tertiary-heading_color); |
| 517 | + color: var(--tertiary-heading_bg); |
880 | 518 | text-align: center; |
881 | 519 | font-family: var(--title-text); |
882 | 520 | } |
883 | 521 | |
884 | 522 | #updates ul { |
885 | 523 | margin: 0.75em; |
886 | 524 | padding: 3em; |
887 | | - background-image: radial-gradient(lightgray 15%, transparent 16%), |
888 | | - radial-gradient(lightgray 15%, transparent 16%); |
| 525 | + background-image: var(--stipple-page_bg); |
889 | 526 | background-size: 05px 07px; |
890 | 527 | background-position: 11px 11px, 14px 14px; |
891 | 528 | list-style-type: circle; |
| 529 | + padding-bottom: 1em; |
892 | 530 | } |
| 531 | +@media (max-width: 667px) { |
| 532 | + #updates ul { |
| 533 | + padding: 1.5em; |
| 534 | + } |
| 535 | +} |
893 | 536 | |
894 | 537 | |
895 | 538 | And heading for each item in my directory, while being able to change |
896 | 539 | their colors in just one spot. |
961 | 604 | |
962 | 605 | .thoughts strong{ |
963 | 606 | border-bottom: 1px solid yellow; |
964 | 607 | } |
965 | | - |
966 | | -.diary { |
967 | | - --dotted-pattern_bg: cornflowerblue; |
968 | | -} |
969 | | - |
970 | | -.diary strong { |
971 | | - border-bottom: 1px solid cornflowerblue; |
972 | | -} |
973 | | - |
974 | | -.writing { |
975 | | - --dotted-pattern_bg: salmon; |
976 | | -} |
977 | | - |
978 | | -.writing strong{ |
979 | | - border-bottom: 1px solid salmon; |
980 | | -} |
981 | | - |
982 | | -.diary { |
983 | | - --dotted-pattern_bg: cornflowerblue; |
984 | | -} |
985 | | - |
986 | | -.diary strong { |
987 | | - border-bottom: 1px solid cornflowerblue; |
988 | | -} |
989 | | - |
990 | | -.writing { |
991 | | - --dotted-pattern_bg: salmon; |
992 | | -} |
993 | | - |
994 | | -.writing strong{ |
995 | | - border-bottom: 1px solid salmon; |
996 | | -} |
997 | | - |
998 | | - |
999 | | - |