nuudel-core 0.2.107 → 0.2.109
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/main/lib/components/Button/style.scss +3 -0
- package/build/main/lib/components/ColorPicker/styles.module.scss +71 -0
- package/build/main/lib/components/Drawer/styles.module.scss +9 -0
- package/build/main/lib/components/Material/styles.module.scss +14 -0
- package/build/main/lib/components/MessageBar/styles.module.scss +9 -0
- package/build/main/lib/components/Sortable/styles.module.scss +108 -0
- package/build/main/lib/controls/formFields/styles.module.scss +115 -0
- package/build/main/lib/theme/styles/styles.module.scss +228 -0
- package/build/main/lib/theme/variables/_colors.scss +35 -0
- package/build/main/lib/theme/variables/_palette.scss +69 -0
- package/build/main/lib/theme/variables/_sizes.scss +79 -0
- package/build/main/lib/widgets/styles.module.scss +391 -0
- package/build/module/lib/components/Button/style.scss +2 -2
- package/build/module/lib/components/Drawer/styles.module.scss +3 -3
- package/build/module/lib/components/MessageBar/styles.module.scss +1 -1
- package/build/module/lib/controls/formFields/styles.module.scss +33 -9
- package/build/module/lib/theme/styles/styles.module.scss +40 -6
- package/build/module/lib/theme/variables/_colors.scss +2 -2
- package/build/module/lib/theme/variables/_sizes.scss +2 -2
- package/package.json +2 -2
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* color picker
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
.picker {
|
|
6
|
+
position: relative;
|
|
7
|
+
border-radius: 5px;
|
|
8
|
+
max-height: 30px;
|
|
9
|
+
min-width: 200px;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.row {
|
|
13
|
+
display: flex;
|
|
14
|
+
flex-direction: row;
|
|
15
|
+
|
|
16
|
+
>span {
|
|
17
|
+
line-height: 28px;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.input {
|
|
22
|
+
display: block;
|
|
23
|
+
box-sizing: border-box;
|
|
24
|
+
width: 90px;
|
|
25
|
+
height: 30px;
|
|
26
|
+
margin: 8px 0 8px 5px;
|
|
27
|
+
padding: 6px;
|
|
28
|
+
border: 1px solid #ddd;
|
|
29
|
+
border-radius: 4px;
|
|
30
|
+
background: #eee;
|
|
31
|
+
outline: none;
|
|
32
|
+
font: inherit;
|
|
33
|
+
text-transform: uppercase;
|
|
34
|
+
text-align: center;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.swatch {
|
|
38
|
+
width: 28px;
|
|
39
|
+
height: 28px;
|
|
40
|
+
border-radius: 8px;
|
|
41
|
+
border: 3px solid #fff;
|
|
42
|
+
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(0, 0, 0, 0.1);
|
|
43
|
+
cursor: pointer;
|
|
44
|
+
margin-right: 8px;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.popover {
|
|
48
|
+
z-index: 10000;
|
|
49
|
+
position: absolute;
|
|
50
|
+
top: calc(100% + 2px);
|
|
51
|
+
left: 0;
|
|
52
|
+
border-radius: 9px;
|
|
53
|
+
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.pickerSwatches {
|
|
57
|
+
display: flex;
|
|
58
|
+
padding: 12px;
|
|
59
|
+
flex-wrap: wrap;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.pickerSwatch {
|
|
63
|
+
width: 24px;
|
|
64
|
+
height: 24px;
|
|
65
|
+
margin: 4px;
|
|
66
|
+
border: none;
|
|
67
|
+
padding: 0;
|
|
68
|
+
border-radius: 4px;
|
|
69
|
+
cursor: pointer;
|
|
70
|
+
outline: none;
|
|
71
|
+
}
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
@import '../../theme/variables/colors';
|
|
2
|
+
|
|
3
|
+
.sortableItem {
|
|
4
|
+
display: flex;
|
|
5
|
+
justify-content: space-between;
|
|
6
|
+
flex-grow: 1;
|
|
7
|
+
align-items: center;
|
|
8
|
+
padding: 18px 20px;
|
|
9
|
+
background-color: #fff;
|
|
10
|
+
box-shadow: 0 0 0 calc(1px / var(--scale-x, 1)) rgba(63, 63, 68, 0.05),
|
|
11
|
+
0 1px calc(3px / var(--scale-x, 1)) 0 rgba(34, 33, 81, 0.15);
|
|
12
|
+
border-radius: calc(4px / var(--scale-x, 1));
|
|
13
|
+
box-sizing: border-box;
|
|
14
|
+
list-style: none;
|
|
15
|
+
color: $text-dark;
|
|
16
|
+
font-weight: 400;
|
|
17
|
+
font-size: 1rem;
|
|
18
|
+
|
|
19
|
+
&:hover .removeItem {
|
|
20
|
+
visibility: visible !important;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.dragHandle,
|
|
25
|
+
.removeItem {
|
|
26
|
+
display: flex;
|
|
27
|
+
width: 12px;
|
|
28
|
+
padding: 15px;
|
|
29
|
+
margin-left: 3px;
|
|
30
|
+
align-items: center;
|
|
31
|
+
justify-content: center;
|
|
32
|
+
flex: 0 0 auto;
|
|
33
|
+
touch-action: none;
|
|
34
|
+
cursor: var(--cursor, pointer);
|
|
35
|
+
border-radius: 5px;
|
|
36
|
+
border: none;
|
|
37
|
+
outline: none;
|
|
38
|
+
appearance: none;
|
|
39
|
+
background-color: rgba(255, 255, 255, 0.5);
|
|
40
|
+
-webkit-tap-highlight-color: transparent;
|
|
41
|
+
|
|
42
|
+
&:hover {
|
|
43
|
+
background-color: rgba(255, 255, 255, 0.75);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
&:focus-visible {
|
|
47
|
+
box-shadow: 0 0px 0px 2px $primary;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
svg {
|
|
51
|
+
flex: 0 0 auto;
|
|
52
|
+
margin: auto;
|
|
53
|
+
height: 100%;
|
|
54
|
+
overflow: visible;
|
|
55
|
+
fill: $placeholder;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.removeItem {
|
|
60
|
+
visibility: hidden;
|
|
61
|
+
|
|
62
|
+
&.onmobile {
|
|
63
|
+
visibility: visible !important;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.actionButtons {
|
|
68
|
+
z-index: 1;
|
|
69
|
+
display: flex;
|
|
70
|
+
align-self: flex-start;
|
|
71
|
+
margin-top: -12px;
|
|
72
|
+
margin-left: auto;
|
|
73
|
+
margin-bottom: -15px;
|
|
74
|
+
margin-right: -10px;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.itemGrid {
|
|
78
|
+
list-style-type: none;
|
|
79
|
+
margin: 0;
|
|
80
|
+
padding: 0;
|
|
81
|
+
max-width: 330px;
|
|
82
|
+
|
|
83
|
+
@media screen and (min-width: 1100px) {
|
|
84
|
+
max-width: 1100px;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
@media screen and (min-width: 960px) and (max-width: 1099px) {
|
|
88
|
+
max-width: 960px;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
@media screen and (min-width: 780px) and (max-width: 959px) {
|
|
92
|
+
max-width: 780px;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
@media screen and (min-width: 500px) and (max-width: 779px) {
|
|
96
|
+
max-width: 500px;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
li {
|
|
100
|
+
display: inline-block;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
li:first-child {
|
|
104
|
+
//border: 2px solid $warning;
|
|
105
|
+
border-radius: 2px;
|
|
106
|
+
box-shadow: 0px 0px 0px 4px rgba(0, 0, 0, 0.3);
|
|
107
|
+
}
|
|
108
|
+
}
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
@import '../../theme/variables/colors';
|
|
2
|
+
@import '../../theme/variables/sizes';
|
|
3
|
+
|
|
4
|
+
.datetime {
|
|
5
|
+
color: $text;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.container {
|
|
9
|
+
flex: 1;
|
|
10
|
+
justify-content: center;
|
|
11
|
+
align-items: center;
|
|
12
|
+
background-color: $background-light;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.formfield {
|
|
16
|
+
border-bottom-color: $border-light;
|
|
17
|
+
border-bottom-width: $border-width;
|
|
18
|
+
margin-bottom: 0;
|
|
19
|
+
flex-direction: column;
|
|
20
|
+
margin-top: $padding;
|
|
21
|
+
|
|
22
|
+
p {
|
|
23
|
+
padding-bottom: 5px;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.formfield:last-child {
|
|
28
|
+
margin-bottom: $padding;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.description {
|
|
32
|
+
font-style: italic;
|
|
33
|
+
color: $placeholder;
|
|
34
|
+
font-size: $font;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.display {
|
|
38
|
+
color: $text;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.link {
|
|
42
|
+
color: $text;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.text {
|
|
46
|
+
color: $text;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.number {
|
|
50
|
+
color: $text;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.url {
|
|
54
|
+
color: $text;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.object {
|
|
58
|
+
color: $text;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.lookup {
|
|
62
|
+
color: $text;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.lookuptext {
|
|
66
|
+
background-color: transparent;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.pickerview {
|
|
70
|
+
background-color: $background-light;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.lookupplaceholder {
|
|
74
|
+
color: $placeholder;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.image {
|
|
78
|
+
max-width: 100%;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.picture {
|
|
82
|
+
flex-direction: row-reverse;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.button {
|
|
86
|
+
min-width: 150px;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.date {
|
|
90
|
+
font-size: $h6;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.choice {
|
|
94
|
+
color: $text;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.select {
|
|
98
|
+
font-size: $h6;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.textarea {
|
|
102
|
+
width: 100%;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.bool {
|
|
106
|
+
height: 50px;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.toggle {
|
|
110
|
+
flex: 1;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.hide {
|
|
114
|
+
display: none;
|
|
115
|
+
}
|
|
@@ -0,0 +1,228 @@
|
|
|
1
|
+
@import '../variables/colors';
|
|
2
|
+
@import '../variables/sizes';
|
|
3
|
+
|
|
4
|
+
.searchBar {
|
|
5
|
+
z-index: 0;
|
|
6
|
+
//font-family: $fontfamily;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.button {
|
|
10
|
+
overflow: hidden;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.buttonText {
|
|
14
|
+
font-size: $h6;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.item {
|
|
18
|
+
margin-bottom: 0;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.text {
|
|
22
|
+
font-size: $font;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.h1 {
|
|
26
|
+
font-size: $h1;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.label {
|
|
30
|
+
font-size: $font;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.padding {
|
|
34
|
+
padding: $padding-half;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.paddingBig {
|
|
38
|
+
padding: $padding;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.bg {
|
|
42
|
+
background-color: $background;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.form {
|
|
46
|
+
width: 100%;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.input {
|
|
50
|
+
|
|
51
|
+
//font-family: $fontfamily;
|
|
52
|
+
&:invalid {
|
|
53
|
+
border: $danger solid 1px;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.loading {
|
|
58
|
+
overflow: hidden;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.loadingLabel {
|
|
62
|
+
color: $placeholder;
|
|
63
|
+
font-size: $big;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.box {
|
|
67
|
+
justify-content: center;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.slider {
|
|
71
|
+
width: 100%;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.font {
|
|
75
|
+
font-size: $font;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.placeholder {
|
|
79
|
+
text-align: center;
|
|
80
|
+
color: $placeholder;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.delete-button {
|
|
84
|
+
background-color: $danger;
|
|
85
|
+
margin: $padding-half;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.flexone {
|
|
89
|
+
flex: 1;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.paddingbottom {
|
|
93
|
+
padding-bottom: $padding-half;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.paddingBottomBig {
|
|
97
|
+
padding-bottom: $padding;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.paddingtop {
|
|
101
|
+
padding-top: $padding-half;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.colorbox {
|
|
105
|
+
width: 10px;
|
|
106
|
+
height: 10px;
|
|
107
|
+
display: inline-block;
|
|
108
|
+
margin-right: 5px;
|
|
109
|
+
border: 1px solid $placeholder;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.wrapper {
|
|
113
|
+
margin: 8px;
|
|
114
|
+
position: relative;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.marginTopBig {
|
|
118
|
+
margin-top: $margingbottom-big;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.marginTop {
|
|
122
|
+
margin-top: $margingbottom;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.marginTopSmall {
|
|
126
|
+
margin-top: $margingbottom-small;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.marginLeftBig {
|
|
130
|
+
margin-left: $margingbottom-big;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.marginLeft {
|
|
134
|
+
margin-left: $margingbottom;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.marginLeftSmall {
|
|
138
|
+
margin-left: $margingbottom-small;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.marginRightBig {
|
|
142
|
+
margin-right: $margingbottom-big;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.marginRight {
|
|
146
|
+
margin-right: $margingbottom;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.marginRightSmall {
|
|
150
|
+
margin-right: $margingbottom-small;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.marginBottomBig {
|
|
154
|
+
margin-bottom: $margingbottom-big;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.marginBottom {
|
|
158
|
+
margin-bottom: $margingbottom;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.marginBottomSmall {
|
|
162
|
+
margin-bottom: $margingbottom-small;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.marginNormal {
|
|
166
|
+
margin-top: 16px;
|
|
167
|
+
margin-bottom: 8px;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.paddingNormal {
|
|
171
|
+
margin-top: 16px;
|
|
172
|
+
margin-bottom: 8px;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
$ccolor: #08182b;
|
|
176
|
+
|
|
177
|
+
.container {
|
|
178
|
+
color: $ccolor;
|
|
179
|
+
display: flex;
|
|
180
|
+
align-items: center;
|
|
181
|
+
align-content: center;
|
|
182
|
+
justify-content: center;
|
|
183
|
+
flex-direction: column;
|
|
184
|
+
background-size: cover;
|
|
185
|
+
background-repeat: no-repeat;
|
|
186
|
+
background-color: transparent;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.listContainer {
|
|
190
|
+
display: block;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.optionAdornment {
|
|
194
|
+
background-color: $background-grey;
|
|
195
|
+
border-radius: 2px 0 0 2px;
|
|
196
|
+
margin-left: -13px;
|
|
197
|
+
padding: 18px 13px;
|
|
198
|
+
width: 200px;
|
|
199
|
+
color: $text-dark;
|
|
200
|
+
overflow: hidden;
|
|
201
|
+
text-overflow: ellipsis;
|
|
202
|
+
white-space: nowrap;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.link {
|
|
206
|
+
padding-top: 8px;
|
|
207
|
+
padding-bottom: 15px;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
.swichPadding {
|
|
211
|
+
padding-top: $padding * 2;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
.colorbox {
|
|
215
|
+
width: 10px;
|
|
216
|
+
height: 10px;
|
|
217
|
+
display: inline-block;
|
|
218
|
+
margin-right: 5px;
|
|
219
|
+
border: 1px solid '#999';
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
.multiSelect-container {
|
|
223
|
+
z-index: 999;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.multichoice {
|
|
227
|
+
font-size: $h6;
|
|
228
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
//@import './palette';
|
|
2
|
+
|
|
3
|
+
$transparent: transparent;
|
|
4
|
+
$neutral: var(--neutral);
|
|
5
|
+
$facebook: var(--facebook);
|
|
6
|
+
$login: var(--login);
|
|
7
|
+
$primary: var(--primary);
|
|
8
|
+
$primary-light: var(--primary-light);
|
|
9
|
+
$secondary: var(--secondary);
|
|
10
|
+
$info: var(--info);
|
|
11
|
+
$danger: var(--danger);
|
|
12
|
+
$warning: var(--warning);
|
|
13
|
+
$success: var(--success);
|
|
14
|
+
$button: var(--button);
|
|
15
|
+
$link: var(--link);
|
|
16
|
+
$text: var(--text);
|
|
17
|
+
$text-dark: var(--text-dark);
|
|
18
|
+
$text-light: var(--text-light);
|
|
19
|
+
$background: var(--background);
|
|
20
|
+
$background-light: var(--background-light);
|
|
21
|
+
$background-dark: var(--background-dark);
|
|
22
|
+
$background-grey: var(--background-grey);
|
|
23
|
+
$border: var(--border);
|
|
24
|
+
$border-light: var(--border-light);
|
|
25
|
+
$input: var(--input);
|
|
26
|
+
$placeholder: var(--placeholder);
|
|
27
|
+
$navbar: var(--navbar);
|
|
28
|
+
$block: var(--block);
|
|
29
|
+
$icon: var(--icon);
|
|
30
|
+
$icon-light: var(--icon-light);
|
|
31
|
+
$shadow: var(--shadow);
|
|
32
|
+
$disabled: var(--disabled);
|
|
33
|
+
$inverse-bg: var(--inverse-bg);
|
|
34
|
+
$inverse-text: var(--inverse-text);
|
|
35
|
+
$loader: var(--loader);
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
// Энийг хэрэглээгүй
|
|
2
|
+
$brand: #f58c22 !default;
|
|
3
|
+
$brand-light: #42a5f5 !default;
|
|
4
|
+
$brand-dark: #2777f7 !default;
|
|
5
|
+
$accent: #d9534f !default;
|
|
6
|
+
$white: #ffffff !default;
|
|
7
|
+
$white-bright: #fafafa !default;
|
|
8
|
+
$white-light: #f8f9fc !default;
|
|
9
|
+
$black: #161616 !default;
|
|
10
|
+
$black-dark: #000000 !default;
|
|
11
|
+
$black-light: #1e1e1e !default;
|
|
12
|
+
$dark-black: #2d2d2d !default;
|
|
13
|
+
$dark: #333333 !default;
|
|
14
|
+
$gray: #777777 !default;
|
|
15
|
+
$gray-light: #cdcdcd !default;
|
|
16
|
+
$grey: #656565 !default;
|
|
17
|
+
$grey-light: #999999 !default;
|
|
18
|
+
$grey-bright: #e1e1e1 !default;
|
|
19
|
+
$grey-dark: #5c5c5c !default;
|
|
20
|
+
$red: #d9534f !default;
|
|
21
|
+
$orange: #ff8f00 !default;
|
|
22
|
+
$green: #60d517 !default;
|
|
23
|
+
$blue: #0091ea !default;
|
|
24
|
+
$pink: #d81b60 !default;
|
|
25
|
+
$yellow: #fdd835 !default;
|
|
26
|
+
$red-dark: #c62828 !default;
|
|
27
|
+
$orange-dark: #ff6f00 !default;
|
|
28
|
+
$green-dark: #00875a !default;
|
|
29
|
+
$blue-dark: #5e98d8 !default;
|
|
30
|
+
$pink-dark: #b4004e !default;
|
|
31
|
+
$yellow-dark: #ffa000 !default;
|
|
32
|
+
$neutral: rgba(255, 255, 255, 0.65) !default;
|
|
33
|
+
//*
|
|
34
|
+
:root {
|
|
35
|
+
$brand: #{$brand};
|
|
36
|
+
$brand-light: #{$brand-light};
|
|
37
|
+
$brand-dark: #{$brand-dark};
|
|
38
|
+
$accent: #{$accent};
|
|
39
|
+
$white: #{$white};
|
|
40
|
+
$white-bright: #{$white-bright};
|
|
41
|
+
$white-light: #{$white-light};
|
|
42
|
+
$black: #{$black};
|
|
43
|
+
$black-dark: #{$black-dark};
|
|
44
|
+
$black-light: #{$black-light};
|
|
45
|
+
$dark-black: #{$dark-black};
|
|
46
|
+
$dark: #{$dark};
|
|
47
|
+
$gray: #{$gray};
|
|
48
|
+
$gray-light: #{$gray-light};
|
|
49
|
+
$grey: #{$grey};
|
|
50
|
+
$grey-light: #{$grey-light};
|
|
51
|
+
$grey-bright: #{$grey-bright};
|
|
52
|
+
$grey-dark: #{$grey-dark};
|
|
53
|
+
$red: #{$red};
|
|
54
|
+
$orange: #{$orange};
|
|
55
|
+
$green: #{$green};
|
|
56
|
+
$blue: #{$blue};
|
|
57
|
+
$pink: #{$pink};
|
|
58
|
+
$yellow: #{$yellow};
|
|
59
|
+
$red-dark: #{$red-dark};
|
|
60
|
+
$orange-dark: #{$orange-dark};
|
|
61
|
+
$green-dark: #{$green-dark};
|
|
62
|
+
$blue-dark: #{$blue-dark};
|
|
63
|
+
$pink-dark: #{$pink-dark};
|
|
64
|
+
$yellow-dark: #{$yellow-dark};
|
|
65
|
+
$neutral: #{$neutral};
|
|
66
|
+
}
|
|
67
|
+
//*/
|
|
68
|
+
|
|
69
|
+
//:export { primary: $primary; }
|