Skip to content

Commit

Permalink
css: Increase distinction between h2/h3/h4 on guidance pages
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Nov 7, 2024
1 parent 4206060 commit d3a8f9a
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
11 changes: 11 additions & 0 deletions extension_explorer/static/css/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -8532,6 +8532,17 @@ pre {
.ee-max-width li {
max-width: 70ch; }

.ee-max-width h2, .ee-max-width .h2 {
font-size: 3rem;
font-weight: 300; }

.ee-max-width h3, .ee-max-width .h3 {
font-size: 2rem;
font-weight: 300; }

.ee-max-width h4, .ee-max-width .h4 {
font-weight: 300; }

.custom-select {
-webkit-appearance: none;
-moz-appearance: none; }
Expand Down
12 changes: 12 additions & 0 deletions extension_explorer/static/lib/scss/_custom-styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,18 @@ pre {
max-width: 70ch;
}

.ee-max-width h2 {
font-size: 3rem;
font-weight: 300;
}
.ee-max-width h3 {
font-size: 2rem;
font-weight: 300;
}
.ee-max-width h4 {
font-weight: 300;
}

// Bootstrap fixes

.custom-select {
Expand Down

0 comments on commit d3a8f9a

Please sign in to comment.