2023-04-03 22:25:08 +02:00
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
|
// Block: Heading
|
|
|
|
|
// --------------------------------------------------------------------------------
|
2023-04-04 21:24:44 +02:00
|
|
|
h1,
|
|
|
|
|
h2,
|
|
|
|
|
h3,
|
|
|
|
|
h4,
|
|
|
|
|
h5,
|
|
|
|
|
h6 {
|
|
|
|
|
.block+&.block {
|
|
|
|
|
margin-top: 2rem;
|
|
|
|
|
}
|
2022-01-11 07:02:30 +01:00
|
|
|
|
2023-04-04 21:24:44 +02:00
|
|
|
&.block {
|
|
|
|
|
margin: 0;
|
|
|
|
|
margin-left: -0.75rem;
|
|
|
|
|
margin-right: -0.75rem;
|
|
|
|
|
padding: 0;
|
|
|
|
|
font-variant: small-caps;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
line-height: 1.333em;
|
|
|
|
|
padding: 0.5rem 0.75rem;
|
|
|
|
|
}
|
2021-12-28 19:43:39 +01:00
|
|
|
|
2023-04-04 21:24:44 +02:00
|
|
|
&.block>a {
|
|
|
|
|
color: $theme-article-heading-link-color;
|
|
|
|
|
}
|
2023-04-03 23:00:25 +02:00
|
|
|
|
2023-04-04 21:24:44 +02:00
|
|
|
&.block>a:active,
|
|
|
|
|
&.block>a:focus,
|
|
|
|
|
&.block>a:hover {
|
|
|
|
|
color: $theme-article-heading-link-color-active;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.block+.block {
|
|
|
|
|
margin-top: .5rem;
|
|
|
|
|
}
|
2023-04-03 22:25:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h1.block {
|
2021-12-28 19:43:39 +01:00
|
|
|
font-size: 2.0rem;
|
|
|
|
|
background: $theme-article-heading-h1-background;
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-03 22:25:08 +02:00
|
|
|
h2.block {
|
2021-12-28 19:43:39 +01:00
|
|
|
font-size: 1.8rem;
|
|
|
|
|
background: $theme-article-heading-h2-background;
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-03 22:25:08 +02:00
|
|
|
h3.block {
|
2021-12-28 19:43:39 +01:00
|
|
|
font-size: 1.6667rem;
|
|
|
|
|
background: $theme-article-heading-h3-background;
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-03 22:25:08 +02:00
|
|
|
h4.block {
|
2021-12-28 19:43:39 +01:00
|
|
|
font-size: 1.45rem;
|
|
|
|
|
background: $theme-article-heading-h4-background;
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-03 22:25:08 +02:00
|
|
|
h5.block {
|
2021-12-28 19:43:39 +01:00
|
|
|
font-size: 1.3333rem;
|
|
|
|
|
background: $theme-article-heading-h5-background;
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-03 22:25:08 +02:00
|
|
|
h6.block {
|
2021-12-28 19:43:39 +01:00
|
|
|
font-size: 1.2rem;
|
|
|
|
|
background: $theme-article-heading-h6-background;
|
|
|
|
|
}
|