Skip to content

Instantly share code, notes, and snippets.

@a-barbieri
Last active December 5, 2016 14:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save a-barbieri/4b91e6917166a84788c68d4588813dbd to your computer and use it in GitHub Desktop.
Save a-barbieri/4b91e6917166a84788c68d4588813dbd to your computer and use it in GitHub Desktop.
Default font styles
// 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