View stylus-gdse.css
@import url('https://fonts.googleapis.com/css?family=Open+Sans'); | |
html, body, h1, h2, h3, h4, p, a, ul, ol, li, input, textarea { | |
font-family: 'Open Sans', sans !important; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
} | |
p { | |
line-height: 1.5em; |
View stylus-clientsfromhell.css
aside, .w-blog-post.deal, .w-blog-post.podcast, .w-blog-post.uncategorized{ | |
display: none; | |
} | |
main, .l-content { | |
width: 100%; | |
} |
View helpers.scss
/* ===================== *\ | |
SCSS HELPERS | |
\* ===================== */ | |
/* TRANSFORM =-=-=-=-=-=-=-=-=-=-=-=*/ | |
@mixin transform($transform){ | |
-ms-transform: $transform; | |
-webkit-transform: $transform; | |
transform: $transform; |