this repo has no description
at main 148 lines 2.7 kB view raw
1@-webkit-keyframes underline { 2 from { 3 border-image: linear-gradient(to right, transparent, transparent) 1; 4 } 5 6 50% { 7 border-image: linear-gradient(to right, var(--ac), transparent) 1; 8 } 9 10 to { 11 border-image: linear-gradient(to right, var(--ac), var(--ac)) 1; 12 } 13} 14 15@-moz-keyframes underline { 16 from { 17 border-image: linear-gradient(to right, transparent, transparent) 1; 18 } 19 20 50% { 21 border-image: linear-gradient(to right, var(--ac), transparent) 1; 22 } 23 24 to { 25 border-image: linear-gradient(to right, var(--ac), var(--ac)) 1; 26 } 27} 28 29@keyframes underline { 30 from { 31 border-image: linear-gradient(to right, transparent, transparent) 1; 32 } 33 34 50% { 35 border-image: linear-gradient(to right, var(--ac), transparent) 1; 36 } 37 38 to { 39 border-image: linear-gradient(to right, var(--ac), var(--ac)) 1; 40 } 41} 42 43a { 44 text-decoration: none; 45} 46 47a, 48.anchor, 49.list-day a span, 50#has-l10n summary, 51#has-a11y-summary { 52 --anm: none; 53 border-bottom: 2pt solid transparent; 54} 55 56a:hover, 57a:focus, 58.anchor:hover, 59.anchor:focus, 60.list-day a:hover span, 61.list-day a:focus span, 62#has-l10n summary:hover, 63#has-l10n summary:focus, 64#has-l10n[open] summary, 65#has-a11y-summary:hover, 66#has-a11y-summary:focus, 67#has-a11y[open] #has-a11y-summary { 68 --anm: underline 127ms; 69 border-color: var(--ac); 70} 71 72/* a.cta { 73 margin: 1ex; 74 border: 2pt solid var(--fg); 75 border-radius: 1ex; 76 background: var(--fg); 77 padding: 6pt 16pt; 78 text-align: center; 79 color: var(--bg); 80 font-weight: 550; 81} 82 83a.cta.s { 84 background: var(--bg); 85 color: var(--fg); 86} 87 88a.cta:hover, 89a.cta:focus { 90 --anm: none; 91 outline: 2pt solid var(--fg); 92 border-color: var(--bg); 93 background: var(--fg); 94 color: var(--bg); 95} */ 96 97.rounded li { 98 margin: 0.5ex; 99 display: inline-block; 100} 101 102.rounded a { 103 display: inline-flex; 104 border: var(--border); 105 border-radius: 2rem; 106 background: #80808008; 107 padding: 0.5ex 1em; 108 color: var(--fg); 109 gap: 1pt; 110} 111 112.rounded a:hover, 113.rounded a:focus { 114 --anm: none; 115 border: 1pt solid var(--fg); 116} 117 118.invert a { 119 background: var(--fg) !important; 120 color: var(--bg) !important; 121} 122 123.invert a:visited { 124 color: var(--bg); 125} 126 127.invert a:hover, 128.invert a:focus { 129 --anm: none; 130 background: var(--bg) !important; 131 color: var(--fg) !important; 132} 133 134.has-hash a { 135 text-transform: uppercase; 136 letter-spacing: 0.1rem; 137 font-size: var(--footnotesize); 138} 139 140.has-hash a:hover, 141.has-hash a:focus { 142 --anm: none; 143} 144 145#term .section-title .tag::before, 146.has-hash a::before { 147 content: '#'; 148}