UNPKG
uek
Version:
latest (1.0.0)
1.0.0
this a good
uek
/
less.less
14 lines
•
186 B
text/less
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
@color:
red;
@height:
20px
;
div
{
background
:
@color
;
color
:
@color
;
width
:
@height
; }
.loop
(
@i
:
1
)
when
(
@i
<
10
){
div
@{i}
{
width
:
100
*
@i
*
1px
; }
.loop
(
@i
+
1
); }
.loop
();