yummacss 1.1.0 → 2.0.0
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/CHANGELOG.md +65 -162
- package/LICENSE +1 -1
- package/README.md +12 -17
- package/dist/yumma-core.css +241423 -0
- package/dist/yumma-core.min.css +1 -0
- package/dist/yumma.css +216698 -46219
- package/dist/yumma.min.css +1 -1
- package/gulpfile.js +36 -20
- package/package.json +22 -22
- package/src/_fonts.scss +14 -0
- package/src/_stylecent.scss +68 -0
- package/src/_utilities.scss +1265 -0
- package/src/abstracts/_breakpoints.scss +43 -0
- package/src/abstracts/_colors.scss +29 -0
- package/src/abstracts/_functions.scss +4 -0
- package/src/abstracts/_layout.scss +18 -0
- package/src/abstracts/_mixins.scss +589 -0
- package/src/abstracts/_variables.scss +100 -0
- package/src/core.scss +3 -0
- package/src/yumma.scss +10 -0
- package/index.js +0 -8
- package/yumma-css/_base.scss +0 -43
- package/yumma-css/_breakpoints.scss +0 -43
- package/yumma-css/_colors.scss +0 -325
- package/yumma-css/_fonts.scss +0 -19
- package/yumma-css/_functions.scss +0 -5
- package/yumma-css/_grid.scss +0 -75
- package/yumma-css/_layout.scss +0 -18
- package/yumma-css/_utils.scss +0 -1272
- package/yumma-css/_variables.scss +0 -72
- package/yumma-css/components/_badge.scss +0 -33
- package/yumma-css/components/_button.scss +0 -66
- package/yumma-css/components/_card.scss +0 -23
- package/yumma-css/components/_navbar.scss +0 -25
- package/yumma-css/index.scss +0 -22
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
// base colors
|
|
2
|
+
$yma-colors-red: #d73d3d;
|
|
3
|
+
$yma-colors-orange: #e06814;
|
|
4
|
+
$yma-colors-yellow: #d3a107;
|
|
5
|
+
$yma-colors-green: #1fb155;
|
|
6
|
+
$yma-colors-teal: #12a695;
|
|
7
|
+
$yma-colors-cyan: #05a4bf;
|
|
8
|
+
$yma-colors-blue: #3575dd;
|
|
9
|
+
$yma-colors-indigo: #595cd9;
|
|
10
|
+
$yma-colors-violet: #7d53dd;
|
|
11
|
+
$yma-colors-pink: #d4418a;
|
|
12
|
+
$yma-colors-silver: #bfc2c7;
|
|
13
|
+
$yma-colors-gray: #606773;
|
|
14
|
+
$yma-colors-lead: #3f3f4e;
|
|
15
|
+
$yma-colors-black: black;
|
|
16
|
+
$yma-colors-white: white;
|
|
17
|
+
$yma-colors-transparent: transparent;
|
|
18
|
+
|
|
19
|
+
// borders & outlines
|
|
20
|
+
$yma-border: 1px;
|
|
21
|
+
$yma-border-radius: 4px;
|
|
22
|
+
$yma-box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.1);
|
|
23
|
+
$yma-outline-offset: 2px;
|
|
24
|
+
$yma-outline-width: 2px;
|
|
25
|
+
$yma-decoration-thickness: 1px;
|
|
26
|
+
|
|
27
|
+
// box model
|
|
28
|
+
$yma-height: 0.25rem;
|
|
29
|
+
$yma-width: 0.25rem;
|
|
30
|
+
$yma-padding: 0.25rem;
|
|
31
|
+
$yma-margin: 0.25rem;
|
|
32
|
+
$yma-spacing: 0.25rem;
|
|
33
|
+
|
|
34
|
+
// effects & filters
|
|
35
|
+
$yma-backdrop-blur: 4px;
|
|
36
|
+
|
|
37
|
+
// flexbox & grid
|
|
38
|
+
$yma-flex-basis: 1rem;
|
|
39
|
+
$yma-gap: 0.25rem;
|
|
40
|
+
$yma-column-gap: 0.25rem;
|
|
41
|
+
$yma-row-gap: 0.25rem;
|
|
42
|
+
|
|
43
|
+
// layout
|
|
44
|
+
$yma-direction: 1px;
|
|
45
|
+
|
|
46
|
+
// typography
|
|
47
|
+
$yma-font-size: 16px;
|
|
48
|
+
$yma-font-weight: 500;
|
|
49
|
+
$yma-font-size-xs: $yma-font-size * 0.75;
|
|
50
|
+
$yma-font-size-sm: $yma-font-size * 0.9;
|
|
51
|
+
$yma-font-size-md: $yma-font-size;
|
|
52
|
+
$yma-font-size-lg: $yma-font-size * 1.2;
|
|
53
|
+
$yma-font-size-xl: $yma-font-size * 1.44;
|
|
54
|
+
$yma-font-size-xxl: $yma-font-size * 1.88;
|
|
55
|
+
$yma-font-size-3xl: $yma-font-size * 2.22;
|
|
56
|
+
$yma-font-size-6xl: $yma-font-size * 3.66;
|
|
57
|
+
|
|
58
|
+
$yma-font-charter: Charter, Cambria, serif;
|
|
59
|
+
$yma-font-mono: ui-monospace, Consolas, monospace;
|
|
60
|
+
$yma-font-system: system-ui, sans-serif;
|
|
61
|
+
|
|
62
|
+
// extensions
|
|
63
|
+
$yma-extension: (
|
|
64
|
+
"auto": auto,
|
|
65
|
+
"fc": fit-content,
|
|
66
|
+
"full": 100%,
|
|
67
|
+
"half": 50%,
|
|
68
|
+
"max": max-content,
|
|
69
|
+
"min": min-content,
|
|
70
|
+
);
|
|
71
|
+
|
|
72
|
+
$yma-height-extension: (
|
|
73
|
+
"1\\/1": 100dvh,
|
|
74
|
+
"1\\/2": 50dvh,
|
|
75
|
+
);
|
|
76
|
+
|
|
77
|
+
$yma-width-extension: (
|
|
78
|
+
"1\\/1": 100dvw,
|
|
79
|
+
"2\\/1": 50dvw,
|
|
80
|
+
);
|
|
81
|
+
|
|
82
|
+
// colors map
|
|
83
|
+
$yma-colors: (
|
|
84
|
+
"red": $yma-colors-red,
|
|
85
|
+
"orange": $yma-colors-orange,
|
|
86
|
+
"yellow": $yma-colors-yellow,
|
|
87
|
+
"green": $yma-colors-green,
|
|
88
|
+
"teal": $yma-colors-teal,
|
|
89
|
+
"cyan": $yma-colors-cyan,
|
|
90
|
+
"blue": $yma-colors-blue,
|
|
91
|
+
"indigo": $yma-colors-indigo,
|
|
92
|
+
"violet": $yma-colors-violet,
|
|
93
|
+
"pink": $yma-colors-pink,
|
|
94
|
+
"silver": $yma-colors-silver,
|
|
95
|
+
"gray": $yma-colors-gray,
|
|
96
|
+
"lead": $yma-colors-lead,
|
|
97
|
+
"black": $yma-colors-black,
|
|
98
|
+
"white": $yma-colors-white,
|
|
99
|
+
"transparent": $yma-colors-transparent,
|
|
100
|
+
);
|
package/src/core.scss
ADDED
package/src/yumma.scss
ADDED
package/index.js
DELETED
package/yumma-css/_base.scss
DELETED
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
/* Yumma CSS - https://yummacss.vercel.app/ */
|
|
2
|
-
* {
|
|
3
|
-
color: inherit;
|
|
4
|
-
margin: 0;
|
|
5
|
-
font-family: system-ui, sans-serif;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
body {
|
|
9
|
-
font-family: inherit;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
a {
|
|
13
|
-
color: inherit;
|
|
14
|
-
text-decoration: none;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
hr {
|
|
18
|
-
border: 0;
|
|
19
|
-
border-top: 1px solid #efefef;
|
|
20
|
-
margin: 1em 0;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
html {
|
|
24
|
-
scroll-behavior: smooth;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
img,
|
|
28
|
-
picture,
|
|
29
|
-
svg,
|
|
30
|
-
video {
|
|
31
|
-
max-width: 100%;
|
|
32
|
-
display: block;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
ul {
|
|
36
|
-
padding: 0;
|
|
37
|
-
list-style: none;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
::before,
|
|
41
|
-
::after {
|
|
42
|
-
box-sizing: border-box;
|
|
43
|
-
}
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
$breakpoints: (
|
|
2
|
-
"xs": 0,
|
|
3
|
-
"sm": 480px,
|
|
4
|
-
"md": 720px,
|
|
5
|
-
"lg": 960px,
|
|
6
|
-
"xl": 1200px
|
|
7
|
-
);
|
|
8
|
-
|
|
9
|
-
@mixin xs {
|
|
10
|
-
@media (min-width: map-get($breakpoints, "xs")) {
|
|
11
|
-
@content;
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
@mixin sm {
|
|
16
|
-
@media (min-width: map-get($breakpoints, "sm")) {
|
|
17
|
-
@content;
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
@mixin md {
|
|
22
|
-
@media (min-width: map-get($breakpoints, "md")) {
|
|
23
|
-
@content;
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
@mixin lg {
|
|
28
|
-
@media (min-width: map-get($breakpoints, "lg")) {
|
|
29
|
-
@content;
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
@mixin xl {
|
|
34
|
-
@media (min-width: map-get($breakpoints, "xl")) {
|
|
35
|
-
@content;
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
@mixin breakpoint($bp: 0) {
|
|
40
|
-
@media (min-width: $bp) {
|
|
41
|
-
@content;
|
|
42
|
-
}
|
|
43
|
-
}
|
package/yumma-css/_colors.scss
DELETED
|
@@ -1,325 +0,0 @@
|
|
|
1
|
-
@each $k, $v in $base-colors {
|
|
2
|
-
|
|
3
|
-
// backgrounds
|
|
4
|
-
.bg-#{$k} {
|
|
5
|
-
background-color: $v;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
.h\:bg-#{$k} {
|
|
9
|
-
&:hover {
|
|
10
|
-
background-color: $v;
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
// border colors
|
|
15
|
-
.bc-#{$k} {
|
|
16
|
-
border-color: $v;
|
|
17
|
-
border-style: solid;
|
|
18
|
-
border-width: 1px;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.h\:bc-#{$k} {
|
|
22
|
-
&:hover {
|
|
23
|
-
border-color: $v;
|
|
24
|
-
border-style: solid;
|
|
25
|
-
border-width: 1px;
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
.bc-b-#{$k} {
|
|
30
|
-
border-bottom-color: $v;
|
|
31
|
-
border-style: solid;
|
|
32
|
-
border-width: 1px;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
.h\:bc-b-#{$k} {
|
|
36
|
-
&:hover {
|
|
37
|
-
border-bottom-color: $v;
|
|
38
|
-
border-style: solid;
|
|
39
|
-
border-width: 1px;
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
.bc-l-#{$k} {
|
|
44
|
-
border-left-color: $v;
|
|
45
|
-
border-style: solid;
|
|
46
|
-
border-width: 1px;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.h\:bc-l-#{$k} {
|
|
50
|
-
&:hover {
|
|
51
|
-
border-left-color: $v;
|
|
52
|
-
border-style: solid;
|
|
53
|
-
border-width: 1px;
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
.bc-r-#{$k} {
|
|
58
|
-
border-right-color: $v;
|
|
59
|
-
border-style: solid;
|
|
60
|
-
border-width: 1px;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
.h\:bc-r-#{$k} {
|
|
64
|
-
&:hover {
|
|
65
|
-
border-right-color: $v;
|
|
66
|
-
border-style: solid;
|
|
67
|
-
border-width: 1px;
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
.bc-t-#{$k} {
|
|
72
|
-
border-top-color: $v;
|
|
73
|
-
border-style: solid;
|
|
74
|
-
border-width: 1px;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
.h\:bc-t-#{$k} {
|
|
78
|
-
&:hover {
|
|
79
|
-
border-top-color: $v;
|
|
80
|
-
border-style: solid;
|
|
81
|
-
border-width: 1px;
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
// text color
|
|
86
|
-
.t-#{$k} {
|
|
87
|
-
color: $v;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
.h\:t-#{$k} {
|
|
91
|
-
&:hover {
|
|
92
|
-
color: $v;
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
// caret colors
|
|
97
|
-
.cc-#{$k} {
|
|
98
|
-
caret-color: $v;
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
.h\:cc-#{$k} {
|
|
102
|
-
&:hover {
|
|
103
|
-
caret-color: $v;
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
.td-#{$k} {
|
|
108
|
-
text-decoration-color: $v;
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
.h\:td-#{$k} {
|
|
112
|
-
&:hover {
|
|
113
|
-
text-decoration-color: $v;
|
|
114
|
-
}
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
@if ($v !=black and $v !=white) {
|
|
118
|
-
|
|
119
|
-
// light variations
|
|
120
|
-
@for $i from 1 through 6 {
|
|
121
|
-
.bg-l-#{$k}-#{$i} {
|
|
122
|
-
background-color: mix(white, $v, $i * 10%);
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
.h\:bg-l-#{$k}-#{$i} {
|
|
126
|
-
&:hover {
|
|
127
|
-
background-color: mix(white, $v, $i * 10%);
|
|
128
|
-
}
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
.bc-l-#{$k}-#{$i} {
|
|
132
|
-
border-color: mix(white, $v, $i * 10%);
|
|
133
|
-
border-style: solid;
|
|
134
|
-
border-width: 1px;
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
.h\:bc-l-#{$k}-#{$i} {
|
|
138
|
-
&:hover {
|
|
139
|
-
border-color: mix(white, $v, $i * 10%);
|
|
140
|
-
border-style: solid;
|
|
141
|
-
border-width: 1px;
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
.bc-b-l-#{$k}-#{$i} {
|
|
146
|
-
border-bottom-color: mix(white, $v, $i * 10%);
|
|
147
|
-
border-style: solid;
|
|
148
|
-
border-width: 1px;
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
.h\:bc-b-l-#{$k}-#{$i} {
|
|
152
|
-
&:hover {
|
|
153
|
-
border-bottom-color: mix(white, $v, $i * 10%);
|
|
154
|
-
border-style: solid;
|
|
155
|
-
border-width: 1px;
|
|
156
|
-
}
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
.bc-l-l-#{$k}-#{$i} {
|
|
160
|
-
border-left-color: mix(white, $v, $i * 10%);
|
|
161
|
-
border-style: solid;
|
|
162
|
-
border-width: 1px;
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
.h\:bc-l-l-#{$k}-#{$i} {
|
|
166
|
-
&:hover {
|
|
167
|
-
border-left-color: mix(white, $v, $i * 10%);
|
|
168
|
-
border-style: solid;
|
|
169
|
-
border-width: 1px;
|
|
170
|
-
}
|
|
171
|
-
}
|
|
172
|
-
|
|
173
|
-
.bc-r-l-#{$k}-#{$i} {
|
|
174
|
-
border-right-color: mix(white, $v, $i * 10%);
|
|
175
|
-
border-style: solid;
|
|
176
|
-
border-width: 1px;
|
|
177
|
-
}
|
|
178
|
-
|
|
179
|
-
.h\:bc-r-l-#{$k}-#{$i} {
|
|
180
|
-
&:hover {
|
|
181
|
-
border-right-color: mix(white, $v, $i * 10%);
|
|
182
|
-
border-style: solid;
|
|
183
|
-
border-width: 1px;
|
|
184
|
-
}
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
.bc-t-l-#{$k}-#{$i} {
|
|
188
|
-
border-top-color: mix(white, $v, $i * 10%);
|
|
189
|
-
border-style: solid;
|
|
190
|
-
border-width: 1px;
|
|
191
|
-
}
|
|
192
|
-
|
|
193
|
-
.h\:bc-t-l-#{$k}-#{$i} {
|
|
194
|
-
&:hover {
|
|
195
|
-
border-top-color: mix(white, $v, $i * 10%);
|
|
196
|
-
border-style: solid;
|
|
197
|
-
border-width: 1px;
|
|
198
|
-
}
|
|
199
|
-
}
|
|
200
|
-
|
|
201
|
-
.t-l-#{$k}-#{$i} {
|
|
202
|
-
color: mix(white, $v, $i * 10%);
|
|
203
|
-
}
|
|
204
|
-
|
|
205
|
-
.h\:t-l-#{$k}-#{$i} {
|
|
206
|
-
&:hover {
|
|
207
|
-
color: mix(white, $v, $i * 10%);
|
|
208
|
-
}
|
|
209
|
-
}
|
|
210
|
-
|
|
211
|
-
.cc-l-#{$k}-#{$i} {
|
|
212
|
-
caret-color: mix(white, $v, $i * 10%);
|
|
213
|
-
}
|
|
214
|
-
|
|
215
|
-
.h\:cc-l-#{$k}-#{$i} {
|
|
216
|
-
&:hover {
|
|
217
|
-
caret-color: mix(white, $v, $i * 10%);
|
|
218
|
-
}
|
|
219
|
-
}
|
|
220
|
-
}
|
|
221
|
-
|
|
222
|
-
// dark variations
|
|
223
|
-
@for $i from 1 through 6 {
|
|
224
|
-
.bg-d-#{$k}-#{$i} {
|
|
225
|
-
background-color: mix(black, $v, $i * 10%);
|
|
226
|
-
}
|
|
227
|
-
|
|
228
|
-
.h\:bg-d-#{$k}-#{$i} {
|
|
229
|
-
&:hover {
|
|
230
|
-
background-color: mix(black, $v, $i * 10%);
|
|
231
|
-
}
|
|
232
|
-
}
|
|
233
|
-
|
|
234
|
-
.bc-d-#{$k}-#{$i} {
|
|
235
|
-
border-color: mix(black, $v, $i * 10%);
|
|
236
|
-
border-style: solid;
|
|
237
|
-
border-width: 1px;
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
.h\:bc-d-#{$k}-#{$i} {
|
|
241
|
-
&:hover {
|
|
242
|
-
border-color: mix(black, $v, $i * 10%);
|
|
243
|
-
border-style: solid;
|
|
244
|
-
border-width: 1px;
|
|
245
|
-
}
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
.bc-b-d-#{$k}-#{$i} {
|
|
249
|
-
border-bottom-color: mix(black, $v, $i * 10%);
|
|
250
|
-
border-style: solid;
|
|
251
|
-
border-width: 1px;
|
|
252
|
-
}
|
|
253
|
-
|
|
254
|
-
.h\:bc-b-d-#{$k}-#{$i} {
|
|
255
|
-
&:hover {
|
|
256
|
-
border-bottom-color: mix(black, $v, $i * 10%);
|
|
257
|
-
border-style: solid;
|
|
258
|
-
border-width: 1px;
|
|
259
|
-
}
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
.bc-l-d-#{$k}-#{$i} {
|
|
263
|
-
border-left-color: mix(black, $v, $i * 10%);
|
|
264
|
-
border-style: solid;
|
|
265
|
-
border-width: 1px;
|
|
266
|
-
}
|
|
267
|
-
|
|
268
|
-
.h\:bc-l-d-#{$k}-#{$i} {
|
|
269
|
-
&:hover {
|
|
270
|
-
border-left-color: mix(black, $v, $i * 10%);
|
|
271
|
-
border-style: solid;
|
|
272
|
-
border-width: 1px;
|
|
273
|
-
}
|
|
274
|
-
}
|
|
275
|
-
|
|
276
|
-
.bc-r-d-#{$k}-#{$i} {
|
|
277
|
-
border-right-color: mix(black, $v, $i * 10%);
|
|
278
|
-
border-style: solid;
|
|
279
|
-
border-width: 1px;
|
|
280
|
-
}
|
|
281
|
-
|
|
282
|
-
.h\:bc-r-d-#{$k}-#{$i} {
|
|
283
|
-
&:hover {
|
|
284
|
-
border-right-color: mix(black, $v, $i * 10%);
|
|
285
|
-
border-style: solid;
|
|
286
|
-
border-width: 1px;
|
|
287
|
-
}
|
|
288
|
-
}
|
|
289
|
-
|
|
290
|
-
.bc-t-d-#{$k}-#{$i} {
|
|
291
|
-
border-top-color: mix(black, $v, $i * 10%);
|
|
292
|
-
border-style: solid;
|
|
293
|
-
border-width: 1px;
|
|
294
|
-
}
|
|
295
|
-
|
|
296
|
-
.h\:bc-t-d-#{$k}-#{$i} {
|
|
297
|
-
&:hover {
|
|
298
|
-
border-top-color: mix(black, $v, $i * 10%);
|
|
299
|
-
border-style: solid;
|
|
300
|
-
border-width: 1px;
|
|
301
|
-
}
|
|
302
|
-
}
|
|
303
|
-
|
|
304
|
-
.t-d-#{$k}-#{$i} {
|
|
305
|
-
color: mix(black, $v, $i * 10%);
|
|
306
|
-
}
|
|
307
|
-
|
|
308
|
-
.h\:t-d-#{$k}-#{$i} {
|
|
309
|
-
&:hover {
|
|
310
|
-
color: mix(black, $v, $i * 10%);
|
|
311
|
-
}
|
|
312
|
-
}
|
|
313
|
-
|
|
314
|
-
.cc-d-#{$k}-#{$i} {
|
|
315
|
-
caret-color: mix(black, $v, $i * 10%);
|
|
316
|
-
}
|
|
317
|
-
|
|
318
|
-
.h\:cc-d-#{$k}-#{$i} {
|
|
319
|
-
&:hover {
|
|
320
|
-
caret-color: mix(black, $v, $i * 10%);
|
|
321
|
-
}
|
|
322
|
-
}
|
|
323
|
-
}
|
|
324
|
-
}
|
|
325
|
-
}
|
package/yumma-css/_fonts.scss
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
.ff-d {
|
|
2
|
-
font-family: $base-system-fonts;
|
|
3
|
-
font-weight: $base-font-weight;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
.ff-c {
|
|
7
|
-
font-family: $base-charter-fonts;
|
|
8
|
-
font-weight: $base-font-weight;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.ff-i {
|
|
12
|
-
font-family: $base-inter-fonts;
|
|
13
|
-
font-weight: $base-font-weight;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.ff-m {
|
|
17
|
-
font-family: $base-monospace-fonts;
|
|
18
|
-
font-weight: $base-font-weight;
|
|
19
|
-
}
|
package/yumma-css/_grid.scss
DELETED
|
@@ -1,75 +0,0 @@
|
|
|
1
|
-
@use "sass:math";
|
|
2
|
-
|
|
3
|
-
$grid-columns: 12;
|
|
4
|
-
|
|
5
|
-
$grid-gaps: (
|
|
6
|
-
"0": 0,
|
|
7
|
-
"1": 10px,
|
|
8
|
-
"2": 20px,
|
|
9
|
-
"3": 30px,
|
|
10
|
-
"4": 40px,
|
|
11
|
-
"5": 50px,
|
|
12
|
-
"6": 60px
|
|
13
|
-
);
|
|
14
|
-
|
|
15
|
-
@each $k, $v in $grid-gaps {
|
|
16
|
-
.gap-#{$k} > * {
|
|
17
|
-
padding: $v;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.gap-#{$k} {
|
|
21
|
-
margin-left: -$v;
|
|
22
|
-
margin-right: -$v;
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
// column classes
|
|
27
|
-
@include xs {
|
|
28
|
-
@for $i from 1 through $grid-columns {
|
|
29
|
-
.xs\:col-#{$i} {
|
|
30
|
-
box-sizing: border-box;
|
|
31
|
-
flex-grow: 0;
|
|
32
|
-
width: math.div($i * 100%, $grid-columns);
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
@include sm {
|
|
38
|
-
@for $i from 1 through $grid-columns {
|
|
39
|
-
.sm\:col-#{$i} {
|
|
40
|
-
box-sizing: border-box;
|
|
41
|
-
flex-grow: 0;
|
|
42
|
-
width: math.div($i * 100%, $grid-columns);
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
@include md {
|
|
48
|
-
@for $i from 1 through $grid-columns {
|
|
49
|
-
.md\:col-#{$i} {
|
|
50
|
-
box-sizing: border-box;
|
|
51
|
-
flex-grow: 0;
|
|
52
|
-
width: math.div($i * 100%, $grid-columns);
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
@include lg {
|
|
58
|
-
@for $i from 1 through $grid-columns {
|
|
59
|
-
.lg\:col-#{$i} {
|
|
60
|
-
box-sizing: border-box;
|
|
61
|
-
flex-grow: 0;
|
|
62
|
-
width: math.div($i * 100%, $grid-columns);
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
@include xl {
|
|
68
|
-
@for $i from 1 through $grid-columns {
|
|
69
|
-
.xl\:col-#{$i} {
|
|
70
|
-
box-sizing: border-box;
|
|
71
|
-
flex-grow: 0;
|
|
72
|
-
width: math.div($i * 100%, $grid-columns);
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
}
|
package/yumma-css/_layout.scss
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
.cnn {
|
|
2
|
-
width: 100%;
|
|
3
|
-
max-width: 1200px;
|
|
4
|
-
margin: 0 auto;
|
|
5
|
-
padding: 0 20px;
|
|
6
|
-
box-sizing: border-box;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
.ins {
|
|
10
|
-
display: flex;
|
|
11
|
-
align-items: center;
|
|
12
|
-
justify-content: center;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.row {
|
|
16
|
-
display: flex;
|
|
17
|
-
flex-flow: row wrap;
|
|
18
|
-
}
|