Spaces:
Sleeping
Sleeping
File size: 2,164 Bytes
fca4ff8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 | #contentinfo {
display: grid;
grid-template-columns: 6fr 4fr;
font-size: var(--small);
gap: var(--medskip);
}
#colophon {
grid-column: 1;
}
#colophon > div {
display: flex;
margin-top: 1ex;
gap: 1rem;
}
#qr {
padding-top: 4pt;
}
#contribute {
grid-column: 2;
border-radius: 1ex;
background-color: var(--g18s);
padding: 1.4rem 1.4rem 1rem;
height: fit-content;
line-height: 1.618;
}
#contrib-menu li {
margin: 1ex 1ex 1ex 0;
}
#contrib-menu a {
display: inline-block;
border: none;
border-radius: 1ex;
background: var(--ac);
padding: 4pt 9pt 3pt 7pt;
width: 100%;
text-align: center;
color: var(--bg);
}
#contrib-menu a:hover,
#contrib-menu a:focus {
--anm: none;
opacity: 0.86;
color: var(--bg);
}
#has-contrib-menu {
padding: .4rem 0;
}
#contentinfo ol {
position: relative;
margin-bottom: 0;
padding-left: 2.5rem;
list-style: none;
counter-reset: li;
}
#contentinfo ol li {
margin-bottom: 1ex;
padding-bottom: 1ex;
}
#contentinfo ol li::before {
display: inline-block;
position: absolute;
left: 0;
border-radius: 2rem;
background: var(--g18s);
padding: 4pt 7pt;
color: var(--mid);
font: 0.7em monospace;
content: counter(li);
counter-increment: li;
}
#contentinfo ol li.see-more::before {
content: '>';
}
#related a {
position: relative;
top: 0.25ex;
}
#has-timeline {
grid-column-start: 2;
grid-row-start: 1;
}
#has-timeline summary {
display: flex;
}
#has-timeline ol {
margin: 1ex 0 0 1rem;
border-left: 2.5pt solid var(--g18s);
padding: 1ex 0 0 1rem;
}
#has-timeline ol li::before {
left: -8pt;
border: 4pt solid var(--bg);
background: var(--mid);
padding: 0;
content: '\a0';
height: 6pt;
width: 6pt;
}
#has-timeline .has-aria-label-top {
margin: 5pt 0;
}
#has-timeline .emoji--stage {
position: absolute;
left: -8pt;
}
@media screen and (max-width: 640px) {
#contentinfo {
display: block;
}
#contentinfo > * {
margin-bottom: var(--bigskip) ;
}
} |