1
0
Fork 0
mirror of synced 2024-07-04 06:21:09 -04:00
ultimate-vim/sources_non_forked/vim-css-color/tests/example.less

25 lines
327 B
Plaintext
Raw Normal View History

2016-08-22 09:00:27 -04:00
i { background: #359 }
b { background: #335599 }
u { background: rgba(144, 0, 0, .5) }
s { background: hsl(0, 100%, 50%) }
@color1: #359;
@color1: #335599;
@color3: rgba(144, 0, 0, .5);
@color4: hsl(0, 100%, 50%);
/*
* #123, #456
*/
// #123456
ul {
color: white;
li {
color: yellow;
background: black;
}
}