Created
January 24, 2018 23:22
-
-
Save rfaile313/497a36401db1e07a0b11016bcef87ab3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*front page font size*/ | |
.lodestar-intro .entry-content { | |
font-size: 1.1rem; | |
} | |
/* Centering headings */ | |
.entry-header .entry-title { | |
text-align: center; | |
} | |
/* set image gallery with three columns to one column only at Team page*/ | |
body.page-id-83 .gallery-columns-3 .gallery-item { | |
max-width: none; | |
} | |
/* Adjust header menu */ | |
@media screen and (min-width: 1025px) { | |
.main-navigation { | |
clear: both; | |
display: block; | |
} | |
.has-top-content .main-navigation ul.nav-menu { | |
text-align: center; | |
} | |
/* reset image gallery with three columns to three columns at Team page on larger screens*/ | |
body.page-id-83 .gallery-columns-3 .gallery-item { | |
max-width: 33.33%; | |
} | |
} | |
/*Bold Header Links*/ | |
.header-top a { | |
font-weight: bold; | |
} | |
/*Make Page Titles Bold*/ | |
.wf-active h1 { | |
font-weight: bolder; | |
} | |
/*Make body text narrower*/ | |
div.entry-content { | |
max-width: 70%; | |
margin: auto; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment