38 lines
585 B
SCSS
38 lines
585 B
SCSS
|
h1, h2, h3, h4, h5, h6 {
|
||
|
small a {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
&:hover small a {
|
||
|
display: inline;
|
||
|
color: $gray-500;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
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;
|
||
|
}
|
||
|
}
|
||
|
}
|