Last active
December 5, 2016 14:45
-
-
Save a-barbieri/4b91e6917166a84788c68d4588813dbd to your computer and use it in GitHub Desktop.
Default font styles
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
// ADOBE BLANK | |
// http://blog.typekit.com/2013/03/28/introducing-adobe-blank/ | |
// https://github.com/adobe-fonts/adobe-blank | |
@font-face { | |
font-family: AdobeBlank; | |
src: url('../../assets/fonts/AdobeBlank.eot'); /* IE9 Compat Modes */ | |
src: url('../../assets/fonts/AdobeBlank.ttf.woff') format('woff'), /* Pretty Modern Browsers */ | |
url('../../assets/fonts/AdobeBlank.ttf') format('truetype'), /* Safari, Android, iOS */ | |
} | |
.hide-text { | |
font-family: AdobeBlank !important; | |
} | |
// Import Google Font | |
@import 'https://fonts.googleapis.com/css?family=Playfair+Display:400,400i,700,700i'; | |
body { | |
font-family: sans-serif; | |
font-size: 16px; | |
letter-spacing: 1px; | |
color: black; | |
} | |
// Text classes | |
p, h1, h2, h3, h4, h5, h6 { | |
// some styles... | |
} | |
a { | |
color: $text-color; | |
// border-bottom: $border; | |
} | |
a:link, a:visited, a:active { | |
color: $text-color; | |
} | |
a:hover { | |
} | |
em { | |
font-style: italic !important; | |
} | |
strong { | |
font-weight: bold !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment