Skip to content

Commit

Permalink
Fix heading colors for light theme; brighten footnotes.
Browse files Browse the repository at this point in the history
  • Loading branch information
ryan-p-randall committed Nov 27, 2023
1 parent de73e14 commit 4cf09f6
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 3 deletions.
11 changes: 10 additions & 1 deletion _sass/minimal-mistakes/skins/_dark-citrus-sage.scss
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,17 @@ progress {
background-color: $masthead-link-color;
}

/* more heading style experimentation */
/* more heading and color experimentation */

h1,h2,h3,h4,h5,h6 {
color: $masthead-link-color;
}

.footnote {
color: #d2d2d2 !important;
text-decoration: none;
}

.footnotes {
color: #d2d2d2 !important;
}
8 changes: 7 additions & 1 deletion _sass/minimal-mistakes/skins/_light-citrus-sage.scss
Original file line number Diff line number Diff line change
Expand Up @@ -191,4 +191,10 @@ progress {
outline-offset: .2rem; /* -1px; */
outline-color: $masthead-link-color;
box-shadow: 0 0 0 .3rem #f0f0f0;
}
}

/* more heading style experimentation */

h1,h2,h3,h4,h5,h6 {
color: $masthead-link-color;
}
10 changes: 9 additions & 1 deletion assets/css/main2.scss
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,12 @@ summary:focus {
/* outline-offset: .2rem; */
/* outline-color:#007053; */
box-shadow: 0 0 0 .3rem #007053;
}
}

/* more heading style experimentation */

/*
h1,h2,h3,h4,h5,h6 {
color: $masthead-link-color;
}
*/

0 comments on commit 4cf09f6

Please sign in to comment.