// TYPOGAPHY // =========================== // Set the base font size for em's to work body { font-size: $font-size-base; // Takes control of the base font size from Bootstrap/reboot } // HEADINGS // Special Headings (decorative headings used for specific sections) // h1 is KCC's logo-font, reserved for the nav-local's page-title heading. .typography__nav-heading { // Not to be used for page content align-self: center; color: $primary-blue; display: inline; font-family: $font-family-kcc; font-size: 1.5rem; font-style: italic; font-weight: 700; text-transform: uppercase; vertical-align: middle; transition-property: color; transition-timing-function: ease; transition-duration: .4s; &:hover, &:focus { color: $primary-red; } &--smaller { font-size: 1.2rem; } } @media screen and (min-width:360px) { .typography__nav-heading { font-size: 1.8rem; &--smaller { font-size: 1.35rem; } } } @media screen and (min-width:410px) { .typography__nav-heading { font-size: 1.5rem; } } @media screen and (min-width:576px) { .typography__nav-heading { font-size: 2.3rem; } } @media screen and (min-width: 768px) { .typography__nav-heading { font-size: 2.4rem; } } @media screen and (min-width: 1500px) { .typography__nav-heading { font-size: 2.6rem; } } .typography__footer-heading { // Footer heading/link that shows the site URL font-family: $font-family-headings; font-size: 1.95rem; font-weight: $font-weight-black; } @media screen and (min-width: 360px) { .typography__footer-heading { font-size: 2.2rem; } } @media screen and (min-width: 375px) { .typography__footer-heading { font-size: 2.4rem; } } @media screen and (min-width: 410px) { .typography__footer-heading { font-size: 2.6rem; } } .typography__contacts--name { color: $primary-blue; font-family: $font-family-headings; font-size: 1.3em; font-weight: $font-weight-bold; margin-bottom: .2rem; } .typography__contacts--title { color: $grey-heading; font-family: $font-family-headings; font-size: 1.1em; font-weight: $font-weight-bold; margin-bottom: .2rem; } .typography__orange-h4 { color: $orange-heading; font-family: $font-family-oswald; font-size: 2.4rem; } .typography__sub-nav--red-h3 { color: $primary-red; font-family: $font-family-oswald; font-size: 1.4rem; font-weight: 500; text-transform: uppercase; } @media screen and (min-width: 768px) { .typography__sub-nav--red-h3 { font-size: 1.8rem; } } .typography__section--heading { color: $primary-red; font-family: $font-family-oswald; font-size: 2rem; font-weight: $font-weight-boldish; } .typography__nav-link { font-family: $font-family-oswald; font-weight: 500; text-transform: uppercase; } // "The POWER of Community" text .typography__power-text { color: $white; font-family: $font-family-power; font-size: 1.1rem; font-weight: $font-weight-bold; letter-spacing: .02em; text-transform: uppercase; } @media screen and (min-width: 360px) { .typography__power-text { font-size: 1.3rem; } } @media screen and (min-width: 768px) { .typography__power-text { font-size: 2.2rem; } } @media screen and (min-width: 992px) { .typography__power-text { font-size: 2.9rem; } } @media screen and (min-width: 1200px) { .typography__power-text { font-size: 3.1rem; } } // Content Headings .typography__h2 { color: $grey-heading; font-family: $font-family-headings; font-size: 2rem; font-weight: $font-weight-boldish; } .typography__h3 { color: $primary-blue; font-family: $font-family-headings; font-size: 1.75rem; font-weight: $font-weight-bolder; } .typography__h4 { color: $primary-red; font-family: $font-family-headings; font-size: 1.7rem; font-weight: $font-weight-bolder; } .typography__h5 { color: $grey-heading; font-family: $font-family-headings; font-weight: $font-weight-bold; font-size: 1.5rem; } .typography__h6 { color: $grey-heading; font-family: $font-family-headings; font-weight: $font-weight-bold; font-size: 1.4rem; } .typography__phone--span { color: $white; font-family: $font-family-oswald; font-size: 1.3rem; font-weight: $font-weight-regular; letter-spacing: .07rem; white-space: nowrap; } @media screen and (min-width: 768px) { .typography__phone--span { font-size: 1.45rem; } } @media screen and (min-width: 1024px) { .typography__phone--span { font-size: 1.5rem; } } .typography__larger-p { font-size: 1.3rem; } .typography__col--heading-underline { background-image: url(/assets/img/heading-bg-underline.png); background-repeat: no-repeat; background-position: 0 50px; } .typography__col--heading-underline-tan { background-image: url(/assets/img/heading-bg-underline-tan.png); background-repeat: no-repeat; background-position: 0 50px; } // Other font styles p, ul:not(.navbar-nav), // :not() selecter prevents unnecesary style override ol { // Needed so list font looks the same as paragraph font color: $grey-heading; // Bootstrap sets these things to black font-family: $font-family-paragraph; font-size: $font-size-base; } .typography__tables th { color: $primary-red; font-family: $font-family-headings; font-weight: $font-weight-bold; } .typography__tables td { color: $grey-heading; // Bootstrap sets these things to black font-family: $font-family-paragraph; font-size: $font-size-base; } h1 sup, h2 sup, h3 sup, h4 sup, h5 sup, h6 sup { // Make superscripts within headings a little bit smaller than reboot's styling font-size: 45% !important; top: -1em; font-weight: normal; }