ShortCSS/README.md

44 строки
752 B
Markdown
Исходник Обычный вид История

ShortCSS
========
Библиотека [Stylus](http://learnboost.github.io/stylus/) для короткой записи CSS-свойств
Stylus:
body
-bgc #000
-c #fff
#content
-ff sans-serif
#element
-d block
2015-02-08 18:46:56 +00:00
-w 150px
-h 100px
b-radius 7px
-br 1px solid #eee
CSS:
body {
background-color: #000;
color: #fff;
}
#content {
font-family: sans-serif;
}
#element {
display: block;
2015-02-08 18:46:56 +00:00
width: 150px;
height: 100px;
-webkit-border-radius: 7px;
-moz-border-radius: 7px;
-o-border-radius: 7px;
-ms-border-radius: 7px;
-khtml-border-radius: 7px;
border-radius: 7px;
border: 1px solid #eee;
}