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 / variables.scss

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

57 lines 907 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1
2 $color: red, two, three;
3
4 div {
5 height: $color;
6 }
7
8 $a: 1000;
9
10 div {
11 $a: 2000 !default;
12 num: $a;
13 }
14
15 div {
16 $b: 2000 !default;
17 num: $b;
18 }
19
20 $cool_color: null;
21 $cool_color: blue !default;
22
23 pre {
24 color: $cool_color;
25 }
26
27 $something_man: 100px;
28 cool: $something_man;
29
30
31 del {
32 $something: blue;
33
34 div {
35 $something: red;
36 pre {
37 color: $something;
38 }
39 }
40
41 color: $something;
42 }
43
44 $font-family-simple: Arial !default;
45 $font-family-spaces: Helvetica Neue !default;
46 $font-family-quotes: "Helvetica Neue" !default;
47 $font-family-commas: Helvetica, Arial, sans-serif !default;
48 $font-family-sans: "Helvetica Neue", Helvetica, Arial, sans-serif !default;
49
50 body {
51 font-family: $font-family-simple;
52 font-family: $font-family-spaces;
53 font-family: $font-family-quotes;
54 font-family: $font-family-commas;
55 font-family: $font-family-sans;
56 }
57