1
0
Fork 0
mirror of synced 2024-07-02 05:21:09 -04:00
ultimate-vim/sources_non_forked/vim-css-color/tests/example.scss
2017-11-27 13:43:13 +08:00

25 lines
327 B
SCSS

i { background: #359 }
b { background: #335599 }
u { background: rgba(144, 0, 0, .5) }
s { background: hsl(0, 100%, 50%) }
$color1: #359;
$color2: #335599;
$color3: rgba(144, 0, 0, .5);
$color4: hsl(0, 100%, 50%);
/*
* #123, #456
*/
// #123456
ul {
color: white;
li {
color: yellow;
background: black;
}
}