PluginProbe
Responsive Menu – Create Mobile-Friendly Menu / 3.0.6
Responsive Menu – Create Mobile-Friendly Menu v3.0.6
4.7.3 3.1.5 3.1.6 3.1.7 3.1.8 3.1.9 4.0.0 4.0.1 4.0.2 4.0.3 4.0.4 4.1.0 4.1.1 4.1.10 4.1.11 4.1.12 4.1.2 4.1.3 4.1.4 4.1.5 4.1.6 4.1.7 4.1.8 4.1.9 4.2.0 All 90 releases
responsive-menu / src / app / Mappers / scssphp / tests / inputs / looping.scss

looping.scss in Responsive Menu – Create Mobile-Friendly Menu 3.0.6, at src/app/Mappers/scssphp/tests/inputs/looping.scss

52 lines 584 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1
2 div {
3 @each $var in what is this {
4 color: $var;
5 }
6
7 @each $var in what, is, this {
8 font: $var;
9 }
10
11 $list: what is this;
12 @each $var in $list {
13 background: $var;
14 }
15
16 $list: what, is, this;
17 @each $var in $list {
18 border: $var;
19 }
20 }
21
22
23 span {
24 $i: 0;
25 @while $i <= 10 {
26 color: $i;
27 $i: $i + 1;
28 }
29 }
30
31 pre {
32 @for $x from 1 to 5 {
33 color: $x;
34 }
35
36 @for $x from 1 through 5 {
37 height: $x;
38 }
39
40 $y: 10;
41 @for $x from $y through 3 {
42 cool: $x;
43 }
44
45 }
46
47 $j: null;
48 @while $j {
49 .item { width: 2em; }
50 $j: false;
51 }
52