Skip to content
Snippets Groups Projects
Commit 2ecf4440 authored by Miroslav Kratochvil's avatar Miroslav Kratochvil :bicyclist:
Browse files

Make h3-h6 stand out

Currently, h3 is quite hard to visually recognize from normal paragraph text,
and h4 is only almost negligibly larger than the text, making them almost
impossible spot. As the headings should provide an easily visible separation
into sections, this adds a bit of weight on heading levels 3 to 6, making them
nicely visible and useful.

(Not that I'd want to use h6 for anything ( :D ), but h3 is still pretty okay
for subsectioning larger list-ish howtos.)
parent ef9288bd
No related branches found
No related tags found
No related merge requests found
Pipeline #38113 passed
......@@ -109,10 +109,14 @@ li {
/**
* Headings
*/
h1, h2, h3, h4, h5, h6 {
h1, h2 {
font-weight: $base-font-weight;
}
h3, h4, h5, h6 {
font-weight: $base-font-weight + 300;
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment