/samples/scalate-example/src/main/webapp/coffee/mysass.scss
Sass | 26 lines | 19 code | 3 blank | 4 comment | 0 complexity | 10a75466f4b06c7051d3cd09019a0d99 MD5 | raw file
- /*
- SCSS flavour of SASS
- http://sass-lang.com/
- */
- #sidebar {
- a { text-decoration: none; }
- }
- #footer {
- border: {
- width: 1px;
- color: #ccc;
- style: solid;
- }
- }
- @mixin rounded($amount) {
- -moz-border-radius: $amount;
- -webkit-border-radius: $amount;
- border-radius: $amount;
- }
- .box {
- border: 3px solid #777;
- @include rounded(0.5em);
- }