37 lines
585 B
SCSS
37 lines
585 B
SCSS
h1, h2, h3, h4, h5, h6 {
|
|
small a {
|
|
display: none;
|
|
color: $gray-500;
|
|
}
|
|
|
|
&:hover small a {
|
|
display: inline;
|
|
}
|
|
}
|
|
|
|
section > header {
|
|
font-size: 1.5em;
|
|
padding-bottom: $spacer * 2;
|
|
}
|
|
|
|
article {
|
|
padding: {
|
|
top: $spacer * 2;
|
|
bottom: $spacer * 2;
|
|
}
|
|
|
|
& > header {
|
|
font-size: 1.25em;
|
|
margin-bottom: $spacer * 2;
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
margin-bottom: 0;
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
p {
|
|
font-size: 0.75em;
|
|
margin: 0;
|
|
}
|
|
}
|
|
}
|