mirror of
https://github.com/thangisme/notes.git
synced 2024-10-31 20:17:30 -04:00
105 lines
1.3 KiB
SCSS
105 lines
1.3 KiB
SCSS
//
|
|
// Base element style overrides
|
|
//
|
|
// stylelint-disable selector-no-type
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html {
|
|
@include fs-4;
|
|
}
|
|
|
|
body {
|
|
font-family: $body-font-family;
|
|
font-size: inherit;
|
|
line-height: $body-line-height;
|
|
color: $body-text-color;
|
|
}
|
|
|
|
p,
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6,
|
|
ol,
|
|
ul,
|
|
pre,
|
|
address,
|
|
blockquote,
|
|
dl,
|
|
div,
|
|
fieldset,
|
|
form,
|
|
hr,
|
|
noscript,
|
|
table {
|
|
margin-top: 0;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
margin-top: 1.2em;
|
|
margin-bottom: 0.8em;
|
|
font-weight: 500;
|
|
line-height: $body-heading-line-height;
|
|
color: $body-heading-color;
|
|
}
|
|
|
|
p {
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
a {
|
|
color: $link-color;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:not([class]) {
|
|
text-decoration: none;
|
|
background-image: linear-gradient($grey-lt-100 0%, $grey-lt-100 100%);
|
|
background-repeat: repeat-x;
|
|
background-position: 0 100%;
|
|
background-size: 1px 1px;
|
|
|
|
&:hover {
|
|
background-image: linear-gradient(rgba($link-color, 0.45) 0%, rgba($link-color, 0.45) 100%);
|
|
background-size: 1px 1px;
|
|
|
|
}
|
|
}
|
|
|
|
code {
|
|
font-family: $mono-font-family;
|
|
font-size: 12px;
|
|
line-height: $body-line-height;
|
|
}
|
|
|
|
figure {
|
|
margin: 0;
|
|
}
|
|
|
|
li {
|
|
margin: 0.25em 0;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
hr {
|
|
height: 1px;
|
|
padding: 0;
|
|
margin: $sp-6 0;
|
|
background-color: $grey-lt-100;
|
|
border: 0;
|
|
}
|