Created
January 22, 2015 14:46
-
-
Save machal/0dfb67d5bc1e47074827 to your computer and use it in GitHub Desktop.
ukazka.less
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
| @green: #33ff33; | |
| @base-font-size: 14px; | |
| @base-line-height: 1.5*@base-font-size; | |
| @large-up: ~"only screen and (min-width: 768px)"; | |
| .bordered { | |
| border: 1px solid black; | |
| } | |
| .box-shadow(@par) { | |
| -webkit-box-shadow: @par; | |
| -moz-box-shadow: @par; | |
| -o-box-shadow: @par; | |
| box-shadow: @par; | |
| } | |
| .el { | |
| .bordered; | |
| .box-shadow(1px 1px rgba(0,0,0,.5)); | |
| background: @green; | |
| font-size: @base-font-size; | |
| line-height: @base-line-height; | |
| h2 { | |
| font-size: @base-font-size * 2; | |
| line-height: @base-line-height * 2; | |
| } | |
| @media @large-up { | |
| color: red; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment