Browse code

Progress

Benjamin Roth authored on14/12/2022 15:59:06
Showing1 changed files
... ...
@@ -522,6 +522,24 @@ ol {
522 522
       font-weight: 700;
523 523
       font-family: $font-family-alternate;
524 524
       letter-spacing: 0.05em;
525
+
526
+      &.-underlined,
527
+      .-underlined& {
528
+        padding-bottom: 0.3em;
529
+        position: relative;
530
+        &:after {
531
+          position: absolute;
532
+          left: 0.8em;
533
+          right: 0;
534
+          height: 0;
535
+          @include border-radius(99em);
536
+          border-color: currentColor;
537
+          content: "";
538
+          bottom: -0.15em;
539
+          border-bottom-width: 10px;
540
+          border-bottom-style: solid;
541
+        }
542
+      }
525 543
     }
526 544
     /*&.-ico-dl {
527 545
       &:before {
... ...
@@ -1085,3 +1103,6 @@ p.info {
1085 1103
 .color-brown {
1086 1104
   color: $color-bg-primary;
1087 1105
 }
1106
+.color-white {
1107
+  color: $color-text-invert;
1108
+}