Created
September 9, 2013 08:01
-
-
Save vdchristelle/6492706 to your computer and use it in GitHub Desktop.
Responsive theming helper
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
| /** | |
| * responsive theming helper | |
| */ | |
| /* body { | |
| &:before { | |
| position: fixed; top: 60px; right: 0; z-index: 1; width: 100px; height: 30px; padding: 5px 10px; font-weight: bold; font-size: 16px; line-height: 30px; content:"default"; background-color:blue; color: white; text-align: right; | |
| @include at-breakpoint($break-1){content:"break-1";background-color:green;color:black;} | |
| @include at-breakpoint($break-2){content:"break-2";background-color:red;} | |
| @include at-breakpoint($break-3){content:"break-3";background-color:cyan;} | |
| } | |
| #admin-menu { | |
| display: none; | |
| @include at-breakpoint($break-3){display: block;} | |
| } | |
| } */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment