PluginProbe
GetResponse Forms by Optin Cat / 1.3.5
GetResponse Forms by Optin Cat v1.3.5
1.3.4 1.3.5 1.3.6 1.3.8 1.3.9 1.4.0 1.4.1 1.4.2 1.5.0 1.5.1 1.5.2 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.6.1 1.6.2 1.6.3 1.7.0 1.7.1 1.7.2 1.8.0 1.8.1 2.0.0 All 36 releases
getresponse / includes / classes / scssphp / tests / inputs / looping.scss

looping.scss in GetResponse Forms by Optin Cat 1.3.5, at includes/classes/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