This file contains hidden or 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
| @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2) { | |
| header h1 a { | |
| background-image: url(images/blogspoon-logo@2x.png); | |
| background-size: 164px 148px; | |
| } | |
| } |
This file contains hidden or 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
| // Generate a mixin for mobile full width columns, to maintain the same attributes | |
| .make-column(@gutter: @grid-gutter-width) { | |
| position: relative; | |
| // Prevent columns from collapsing when empty | |
| min-height: 1px; | |
| // Inner gutter via padding | |
| padding-left: (@gutter / 2); | |
| padding-right: (@gutter / 2); | |
| } |
This file contains hidden or 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
| .text3d(@color) when (lightness(@color) =< 50%) { | |
| color: @color; | |
| font-size: 32pt; | |
| border: 2px solid gray; | |
| text-shadow: 1px 1px 0px darken(@color, 5%), | |
| 2px 2px 0px darken(@color, 10%), | |
| 3px 3px 0px darken(@color, 15%), | |
| 4px 4px 0px darken(@color, 20%), | |
| 4px 4px 3px #000; | |
| } |
NewerOlder