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
/* http://css-tricks.com/snippets/css/better-helvetica */ | |
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; | |
font-weight: 300; |
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
/* really can't remember where I saw this, sorry someone out there! :( */ | |
.grid:before { | |
background-size: 20px 20px; | |
position: absolute; | |
left: 0; top: 0; right: 0; bottom: 0; | |
content: ''; | |
background: | |
-webkit-linear-gradient(left, #5FB7ED 1px, transparent 1px), | |
-webkit-linear-gradient(#5FB7ED 1px, transparent 1px); |
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
.element { | |
font-size: 1.5em; | |
max-width: @7cols; /* can't say this because the font-size skews the calculation */ | |
/* Basically, reverse the ratio to get the number back to 1em: (1 * 1.5 = 1.5), (1.5 * 0.66666666667 = 1) */ | |
max-width: (( 7 * (@column + @gutter) * 0.66666666667) - @gutter * 0.66666666667) / @em; | |
} |
NewerOlder