|
| 1 | +.sample-shadow { |
| 2 | + text-shadow: 0.05em 0.05em 0 currentColor; |
| 3 | +} |
| 4 | + |
| 5 | +.sample-overstrike { |
| 6 | + text-decoration-line: line-through; |
| 7 | +} |
| 8 | + |
| 9 | +.sample-underline-none { |
| 10 | + text-decoration: none; |
| 11 | +} |
| 12 | + |
| 13 | +.sample-underline-double { |
| 14 | + text-decoration-line: underline; |
| 15 | + text-decoration-style: double; |
| 16 | +} |
| 17 | + |
| 18 | +.sample-underline-wavy { |
| 19 | + text-decoration-line: underline; |
| 20 | + text-decoration-style: wavy; |
| 21 | +} |
| 22 | + |
| 23 | +.sample-underline-dotted { |
| 24 | + text-decoration-line: underline; |
| 25 | + text-decoration-style: dotted; |
| 26 | +} |
| 27 | + |
| 28 | +.sample-underline-dashed { |
| 29 | + text-decoration-line: underline; |
| 30 | + text-decoration-style: dashed; |
| 31 | +} |
| 32 | + |
| 33 | +.sample-foreground-colored-24bit { |
| 34 | + color: #ff69b4; |
| 35 | +} |
| 36 | + |
| 37 | +.sample-foreground-colored-8bit { |
| 38 | + color: #ff8700; |
| 39 | +} |
| 40 | + |
| 41 | +.sample-background-colored-24bit { |
| 42 | + background-color: #ff69b4; |
| 43 | +} |
| 44 | + |
| 45 | +.sample-background-colored-8bit { |
| 46 | + background-color: #ff8700; |
| 47 | +} |
| 48 | + |
| 49 | +.sample-underline-colored-24bit { |
| 50 | + text-decoration-line: underline; |
| 51 | + text-decoration-style: solid; |
| 52 | + text-decoration-thickness: 0.15em; |
| 53 | + text-decoration-color: #ff69b4; |
| 54 | + text-decoration-skip-ink: none; |
| 55 | +} |
| 56 | + |
| 57 | +.sample-underline-colored-8bit { |
| 58 | + text-decoration-line: underline; |
| 59 | + text-decoration-style: solid; |
| 60 | + text-decoration-thickness: 0.15em; |
| 61 | + text-decoration-color: #ff8700; |
| 62 | + text-decoration-skip-ink: none; |
| 63 | +} |
| 64 | + |
| 65 | +.sample-superscript { |
| 66 | + position: relative; |
| 67 | + top: -0.17em; |
| 68 | + font-size: 0.83em; |
| 69 | +} |
| 70 | + |
| 71 | +.sample-subscript { |
| 72 | + position: relative; |
| 73 | + top: 0.17em; |
| 74 | + font-size: 0.83em; |
| 75 | +} |
| 76 | + |
| 77 | +.sample-blink-slow { |
| 78 | + animation: ansi-blink-slow 1s steps(1, end) infinite; |
| 79 | +} |
| 80 | + |
| 81 | +.sample-blink-fast { |
| 82 | + animation: ansi-blink-fast 0.5s steps(1, end) infinite; |
| 83 | +} |
| 84 | + |
| 85 | +@keyframes ansi-blink-slow { |
| 86 | + 0%, |
| 87 | + 49% { |
| 88 | + opacity: 1; |
| 89 | + } |
| 90 | + 50%, |
| 91 | + 100% { |
| 92 | + opacity: 0; |
| 93 | + } |
| 94 | +} |
| 95 | + |
| 96 | +@keyframes ansi-blink-fast { |
| 97 | + 0%, |
| 98 | + 24% { |
| 99 | + opacity: 1; |
| 100 | + } |
| 101 | + 25%, |
| 102 | + 100% { |
| 103 | + opacity: 0; |
| 104 | + } |
| 105 | +} |
0 commit comments