64 lines
902 B
SCSS
64 lines
902 B
SCSS
h1, h2, h3, h4, h5, h6 {
|
|
font-family: $font-family-sans-serif;
|
|
letter-spacing: 0.14em;
|
|
font-weight: 300;
|
|
word-spacing: 0.3em;
|
|
|
|
margin: 0;
|
|
|
|
padding: {
|
|
top: $spacer * 4;
|
|
bottom: $spacer * 1;
|
|
}
|
|
|
|
small a {
|
|
display: none;
|
|
color: $gray-500;
|
|
}
|
|
|
|
&:hover small a {
|
|
display: inline;
|
|
}
|
|
}
|
|
|
|
figure {
|
|
text-align: center;
|
|
padding: $spacer;
|
|
|
|
figcaption {
|
|
text-align: start;
|
|
padding-top: $spacer;
|
|
}
|
|
}
|
|
|
|
strong {
|
|
color: $white;
|
|
}
|
|
|
|
blockquote {
|
|
border: none;
|
|
border-left: dashed $spacer / 4;
|
|
padding: $spacer;
|
|
margin-top: $spacer * 2;
|
|
border-color: $white;
|
|
|
|
&:before {
|
|
content: "Quote";
|
|
}
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
ul {
|
|
padding-inline-start: inherit;
|
|
}
|
|
|
|
li {
|
|
padding: {
|
|
bottom: $spacer / 2;
|
|
top: $spacer / 2;
|
|
}
|
|
}
|