24 lines
357 B
SCSS
24 lines
357 B
SCSS
// Masthead
|
|
//
|
|
// Super small header above the content for site name and short description.
|
|
|
|
.masthead {
|
|
padding-top: var(--spacer);
|
|
padding-bottom: var(--spacer);
|
|
margin-bottom: var(--spacer-3);
|
|
}
|
|
|
|
.masthead-title {
|
|
margin-bottom: 0;
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
small {
|
|
font-weight: 400;
|
|
opacity: .5;
|
|
}
|
|
}
|