| OLD | NEW |
| (Empty) |
| 1 @charset utf-8; | |
| 2 @import url(test); | |
| 3 | |
| 4 @mixin z-base { | |
| 5 a:hover, a:active { outline: none; } | |
| 6 a, a:active, a:visited { color: #607890; } | |
| 7 a:hover { color: #036; } | |
| 8 @debug test; } | |
| 9 | |
| 10 @media print { | |
| 11 @include z-base; } | |
| 12 | |
| 13 // Test comment | |
| 14 /* Css comment */ | |
| 15 body { | |
| 16 $font: Georgia; | |
| 17 | |
| 18 margin-bottom: .5em; | |
| 19 font-family: $font, sans-serif; | |
| 20 *font:13px/1.231 sans-serif; } | |
| 21 | |
| 22 .test { | |
| 23 color: red; | |
| 24 &:after { | |
| 25 content: 'blue'; }} | |
| 26 | |
| 27 pre, code, kbd, samp { | |
| 28 font: 12px/10px; | |
| 29 font-family: monospace, sans-serif; } | |
| 30 | |
| 31 abbr[title], dfn[title] { | |
| 32 border:2px; } | |
| OLD | NEW |