File size: 629 Bytes
1e92f2d |
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 |
@import '~bootstrap/dist/css/bootstrap.css';
@import 'variables.scss';
html {
font-size: 16px;
}
body {
background: $syntax-bg;
font-size: 1rem;
}
pre {
border: 0;
background: transparent;
}
code {
padding: 0;
background: transparent;
color: $hue-3;
a & {
padding: 0;
color: inherit !important;
}
}
section {
margin-bottom: 2rem;
}
h1,
h2,
h3,
h4,
h5 {
margin-bottom: 2rem;
& > a,
& > a:hover {
color: inherit;
}
}
// https://twitter.com/hakimel/status/1257252729128435712?s=20
// https://twitter.com/bramus/status/1257255545897132032?s=20
:target {
scroll-margin-top: 4rem;
}
|