63 lines
961 B
SCSS
63 lines
961 B
SCSS
@import "./stylesheets/code.scss";
|
|
@import "./stylesheets/headers.scss";
|
|
@import "./stylesheets/lists.scss";
|
|
@import "./stylesheets/table.scss";
|
|
|
|
.markdownBody {
|
|
summary {
|
|
outline: none;
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
display: inline-block;
|
|
margin-top: 10px;
|
|
margin-bottom: 10px;
|
|
|
|
p {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
&:hover {
|
|
[class~="octicon-link"] {
|
|
visibility: visible !important;
|
|
}
|
|
}
|
|
& > a[class~="doctocat-link"] {
|
|
padding: 8px;
|
|
margin-left: -32px;
|
|
color: var(--color-fg-muted);
|
|
&:active,
|
|
&:focus {
|
|
outline: none;
|
|
}
|
|
}
|
|
&:target {
|
|
scroll-margin-top: 75px;
|
|
}
|
|
}
|
|
|
|
[class~="note"],
|
|
[class~="tip"],
|
|
[class~="warning"],
|
|
[class~="danger"] {
|
|
// remove extra space under lists inside of notes
|
|
ul,
|
|
ol {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
}
|