font-weight: 400;
position: relative;
display: block;
- color: #222;
+ @include lightDark(color, #222, #BBB);
.subheader {
font-size: 0.5em;
line-height: 1em;
*/
a {
color: var(--color-primary);
- fill: var(--color-primary);
+ fill: currentColor;
cursor: pointer;
text-decoration: none;
transition: filter ease-in-out 80ms;
hr {
border: 0;
height: 1px;
- background: #EAEAEA;
+ @include lightDark(background, #eaeaea, #555);
margin-bottom: $-l;
&.faded {
background-image: linear-gradient(to right, #FFF, #e3e0e0 20%, #e3e0e0 80%, #FFF);
small, p.small, span.small, .text-small {
font-size: 0.75rem;
- color: lighten($text-dark, 10%);
+ @include lightDark(color, #5e5e5e, #999);
}
sup, .superscript {
pre {
font-size: 12px;
- background-color: #f5f5f5;
border: 1px solid #DDD;
+ @include lightDark(background-color, #f5f5f5, #2B2B2B);
+ @include lightDark(border-color, #DDD, #111);
padding-left: 31px;
position: relative;
padding-top: 3px;
top: 0;
width: 29px;
left: 0;
- background-color: #f5f5f5;
height: 100%;
- border-right: 1px solid #DDD;
+ @include lightDark(background-color, #f5f5f5, #313335);
+ @include lightDark(border-right, 1px solid #DDD, none);
}
}
display: block;
position: relative;
border-left: 4px solid var(--color-primary);
- background-color: #F8F8F8;
+ @include lightDark(background-color, #f8f8f8, #333);
padding: $-s $-m $-s $-xl;
+ overflow: auto;
&:before {
content: "\201C";
font-size: 2em;
}
.code-base {
- background-color: #F8F8F8;
- font-size: 0.80em;
- border: 1px solid #DDD;
- border-radius: 3px;
+ font-size: 0.84em;
+ border: 1px solid #DDD;
+ border-radius: 3px;
+ @include lightDark(background-color, #f8f8f8, #2b2b2b);
+ @include lightDark(border-color, #DDD, #444);
}
code {
* Lists
*/
ul, ol {
- overflow: hidden;
p {
margin: 0;
}
overflow-wrap: break-word;
}
-.limit-text {
+.text-limit-lines-1 {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
+.text-limit-lines-2 {
+ // -webkit use here is actually standardised cross-browser:
+ // https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-line-clamp
+ display: -webkit-box;
+ -webkit-box-orient: vertical;
+ -webkit-line-clamp: 2;
+ overflow: hidden;
+}
+
/**
* Grouping
*/
bottom: -0.105em;
margin-inline-end: $-xs;
pointer-events: none;
+ fill: currentColor;
}