Created
April 21, 2014 11:28
-
-
Save edtoken/11140030 to your computer and use it in GitHub Desktop.
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
| /** | |
| Theme Name: {theme name} | |
| Theme URI: {theme url} | |
| Description: {descr} | |
| Author: {author} | |
| Author URI: {author url} | |
| Version: {version} | |
| **/ | |
| /** | |
| * col-xs-* | |
| * col-sm-* | |
| * col-md-* | |
| * col-lg-* | |
| * | |
| * | |
| * .container(); | |
| * .make-row(); | |
| * .make-xs-column(12); | |
| * .make-sm-column-push(12); | |
| * .make-sm-column-pull(12); | |
| * .make-sm-column-offset(12); | |
| * | |
| */ | |
| /** | |
| MEDIA WIDTH | |
| @media(max-width: @screen-xs-max){ | |
| } | |
| @media(min-width: @screen-tablet){ | |
| } | |
| @media(min-width: @screen-desktop){ | |
| } | |
| @media(min-width: @screen-lg-desktop){ | |
| } | |
| MEDIA HEIGHT | |
| @media (max-height:320px){ | |
| } | |
| @media (min-height: 480px) { | |
| } | |
| @media (min-height: 600px) { | |
| } | |
| @media (min-height: 768px) { | |
| } | |
| @media (min-height: 800px) { | |
| } | |
| @media (min-height: 1024px) { | |
| } | |
| **/ | |
| .not-user-select() | |
| { | |
| -webkit-touch-callout: none; | |
| -webkit-user-select: none; | |
| -khtml-user-select: none; | |
| -moz-user-select: none; | |
| -ms-user-select: none; | |
| user-select: none; | |
| } | |
| .delete-outline() | |
| { | |
| outline: none; | |
| &::-moz-focus-inner | |
| { | |
| border:0; | |
| } | |
| &:focus, &:active | |
| { | |
| outline: none; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment