Skip to content

Instantly share code, notes, and snippets.

@machal
Created January 22, 2015 14:46
Show Gist options
  • Select an option

  • Save machal/0dfb67d5bc1e47074827 to your computer and use it in GitHub Desktop.

Select an option

Save machal/0dfb67d5bc1e47074827 to your computer and use it in GitHub Desktop.
ukazka.less
@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