mirror of
https://github.com/thangisme/notes.git
synced 2024-10-31 20:57:26 -04:00
107 lines
1.5 KiB
SCSS
107 lines
1.5 KiB
SCSS
//
|
|
// Styles for rendered markdown in the .main-content container
|
|
//
|
|
// stylelint-disable selector-no-type, max-nesting-depth, selector-max-compound-selectors, selector-max-type
|
|
|
|
.page-content {
|
|
ul,
|
|
ol {
|
|
padding-left: 1.5em;
|
|
}
|
|
|
|
ol {
|
|
list-style-type: none;
|
|
counter-reset: step-counter;
|
|
|
|
li {
|
|
position: relative;
|
|
|
|
&::before {
|
|
position: absolute;
|
|
top: 0.2em;
|
|
left: -1.5em;
|
|
color: $grey-dk-000;
|
|
content: counter(step-counter);
|
|
counter-increment: step-counter;
|
|
@include fs-3;
|
|
|
|
@include mq(sm) {
|
|
top: 0.11em;
|
|
}
|
|
}
|
|
|
|
ol {
|
|
counter-reset: sub-counter;
|
|
|
|
li {
|
|
&::before {
|
|
content: counter(sub-counter, lower-alpha);
|
|
counter-increment: sub-counter;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
ul {
|
|
list-style: none;
|
|
|
|
li {
|
|
&::before {
|
|
position: absolute;
|
|
margin-left: -1.5em;
|
|
color: $grey-dk-000;
|
|
content: "•";
|
|
}
|
|
}
|
|
}
|
|
|
|
.task-list {
|
|
padding-left: 0;
|
|
}
|
|
|
|
.task-list-item {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
&::before {
|
|
content: "";
|
|
}
|
|
}
|
|
|
|
.task-list-item-checkbox {
|
|
margin-right: 0.6em;
|
|
}
|
|
|
|
hr + * {
|
|
margin-top: 0;
|
|
}
|
|
|
|
h1:first-of-type {
|
|
margin-top: 0.5em;
|
|
}
|
|
|
|
dl {
|
|
display: grid;
|
|
grid-template-columns: max-content 1fr;
|
|
}
|
|
|
|
dt,
|
|
dd {
|
|
margin: 0.25em 0;
|
|
}
|
|
|
|
dt {
|
|
text-align: right;
|
|
|
|
&::after {
|
|
content: ":";
|
|
}
|
|
}
|
|
|
|
dd {
|
|
margin-left: 1em;
|
|
font-weight: 500;
|
|
}
|
|
}
|