notes/_sass/content.scss

161 lines
2.4 KiB
SCSS
Raw Normal View History

@charset "UTF-8";
2017-03-24 09:47:37 -04:00
//
// Styles for rendered markdown in the .main-content container
//
2018-11-15 16:17:29 -05:00
// stylelint-disable selector-no-type, max-nesting-depth, selector-max-compound-selectors, selector-max-type
2017-03-24 09:47:37 -04:00
.page-content {
line-height: $content-line-height;
2019-08-14 10:07:45 -04:00
2018-11-16 14:54:46 -05:00
a {
2018-11-16 15:04:31 -05:00
overflow: hidden;
2018-11-16 14:54:46 -05:00
text-overflow: ellipsis;
white-space: nowrap;
}
2017-03-24 09:47:37 -04:00
ul,
ol {
2017-03-24 09:47:37 -04:00
padding-left: 1.5em;
}
ol {
list-style-type: none;
counter-reset: step-counter;
2019-02-02 18:43:14 -05:00
> li {
2017-03-24 09:47:37 -04:00
position: relative;
&::before {
position: absolute;
2017-03-26 21:09:19 -04:00
top: 0.2em;
left: -1.6em;
2017-03-24 09:47:37 -04:00
color: $grey-dk-000;
2017-03-26 21:09:19 -04:00
content: counter(step-counter);
counter-increment: step-counter;
2017-03-24 09:47:37 -04:00
@include fs-3;
2017-03-26 21:09:19 -04:00
@include mq(sm) {
top: 0.11em;
}
2017-03-24 09:47:37 -04:00
}
ol {
counter-reset: sub-counter;
li {
&::before {
content: counter(sub-counter, lower-alpha);
2017-03-26 21:09:19 -04:00
counter-increment: sub-counter;
2017-03-24 09:47:37 -04:00
}
}
}
}
}
2017-04-08 18:51:14 -04:00
ul {
list-style: none;
2019-02-02 18:43:14 -05:00
> li {
2017-04-08 18:51:14 -04:00
&::before {
position: absolute;
margin-left: -1.4em;
2017-04-08 18:51:14 -04:00
color: $grey-dk-000;
content: "";
}
}
}
2018-11-16 10:56:50 -05:00
.task-list {
padding-left: 0;
}
.task-list-item {
display: flex;
align-items: center;
2018-11-16 11:49:29 -05:00
2018-11-16 10:56:50 -05:00
&::before {
content: "";
}
}
.task-list-item-checkbox {
margin-right: 0.6em;
}
2018-10-23 11:39:48 -04:00
hr + * {
2017-03-24 09:47:37 -04:00
margin-top: 0;
}
2018-10-23 11:39:48 -04:00
h1:first-of-type {
margin-top: 0.5em;
}
2018-10-24 08:52:27 -04:00
dl {
display: grid;
grid-template-columns: max-content 1fr;
}
dt,
dd {
margin: 0.25em 0;
}
dt {
text-align: right;
2018-10-24 14:15:29 -04:00
&::after {
content: ":";
}
}
dd {
margin-left: 1em;
font-weight: 500;
}
2019-08-13 16:23:38 -04:00
.anchor-heading {
2019-08-13 17:23:35 -04:00
position: absolute;
right: -$sp-4;
2019-08-13 17:23:35 -04:00
width: $sp-5;
height: 100%;
padding-right: $sp-1;
padding-left: $sp-1;
2019-08-14 14:59:46 -04:00
overflow: visible;
2019-08-13 16:23:38 -04:00
@include mq(md) {
2019-08-13 17:23:35 -04:00
right: auto;
2019-08-13 16:23:38 -04:00
left: -$sp-5;
}
svg {
display: inline-block;
width: 100%;
height: 100%;
fill: $link-color;
visibility: hidden;
}
2019-08-13 16:23:38 -04:00
}
.anchor-heading:hover,
2019-08-13 16:23:38 -04:00
h1:hover > .anchor-heading,
h2:hover > .anchor-heading,
h3:hover > .anchor-heading,
h4:hover > .anchor-heading,
h5:hover > .anchor-heading,
h6:hover > .anchor-heading {
svg {
visibility: visible;
}
2019-08-13 16:23:38 -04:00
}
h1,
h2,
h3,
h4,
h5,
h6 {
position: relative;
}
2017-03-24 09:47:37 -04:00
}