You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
714 B
53 lines
714 B
@import "containers";
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
@include segment;
|
|
line-height: 1.2;
|
|
padding: 0;
|
|
color: $color-emphasize;
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
&:hover {
|
|
color: $color-hyperlink;
|
|
}
|
|
}
|
|
}
|
|
|
|
section h1 {
|
|
border-top: $border-regular;
|
|
border-bottom: $border-thin;
|
|
padding: 0.5rem 0;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 1.4rem;
|
|
&.logo {
|
|
border: none;
|
|
}
|
|
&.page-title {
|
|
border-bottom: $border-thin;
|
|
padding: 0 0 0.5rem;
|
|
}
|
|
}
|
|
h2 {
|
|
font-size: 1.3rem;
|
|
}
|
|
h3 {
|
|
font-size: 1.2rem;
|
|
}
|
|
h4 {
|
|
font-size: 1.1rem;
|
|
}
|
|
h5 {
|
|
font-size: 1rem;
|
|
}
|
|
h6 {
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
@include media("<tablet") {
|
|
section > h1, section > header h1 {
|
|
text-align: center;
|
|
}
|
|
}
|
|
|