holygrail2 1.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/.editorconfig +13 -0
- package/.prettierrc +6 -0
- package/.stylelintrc +27 -0
- package/.vscode/settings.json +3 -0
- package/assets/images/minilogo.png +0 -0
- package/cssconfig.json +373 -0
- package/dist/style.css +10376 -0
- package/dist/style.css.map +1 -0
- package/doc/docs.css +1764 -0
- package/doc/docs.css.map +1 -0
- package/guide/index.html +3202 -0
- package/package.json +59 -0
- package/readme.md +123 -0
- package/scss/_partials.scss +44 -0
- package/scss/abstract/_0debug.scss +192 -0
- package/scss/abstract/_all.scss +4 -0
- package/scss/abstract/_breakpoints.scss +27 -0
- package/scss/abstract/_fonts.scss +22 -0
- package/scss/abstract/_mixins.scss +691 -0
- package/scss/abstract/_reset.scss +124 -0
- package/scss/abstract/_setup.scss +385 -0
- package/scss/base/_alignment.scss +294 -0
- package/scss/base/_animations.scss +64 -0
- package/scss/base/_extras.scss +21 -0
- package/scss/base/_grid.scss +361 -0
- package/scss/base/_height.scss +19 -0
- package/scss/base/_helpers.scss +814 -0
- package/scss/base/_icons.scss +162 -0
- package/scss/base/_ratios.scss +262 -0
- package/scss/base/_rtl.scss +480 -0
- package/scss/base/_spacing.scss +60 -0
- package/scss/base/_types.scss +117 -0
- package/scss/docs.scss +680 -0
- package/scss/elements/_animated.scss +73 -0
- package/scss/elements/_banners.scss +68 -0
- package/scss/elements/_buttons.scss +1324 -0
- package/scss/elements/_checkbox.scss +722 -0
- package/scss/elements/_color_selector.scss +112 -0
- package/scss/elements/_datalist.scss +55 -0
- package/scss/elements/_form.scss +708 -0
- package/scss/elements/_links.scss +268 -0
- package/scss/elements/_list.scss +271 -0
- package/scss/elements/_modal.scss +141 -0
- package/scss/elements/_progressbar.scss +20 -0
- package/scss/elements/_tabs.scss +216 -0
- package/scss/elements/_tabs_specials.scss +216 -0
- package/scss/elements/_tag.scss +58 -0
- package/scss/elements/_tooltip.scss +176 -0
- package/scss/layouts/_box3.scss +64 -0
- package/scss/layouts/_box4.scss +19 -0
- package/scss/layouts/_card.scss +24 -0
- package/scss/layouts/_card9.scss +348 -0
- package/scss/layouts/_feel.scss +2 -0
- package/scss/layouts/_header_account.scss +144 -0
- package/scss/layouts/_hgbread.scss +51 -0
- package/scss/layouts/_row1.scss +108 -0
- package/scss/style.scss +1 -0
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
*,
|
|
2
|
+
*::before,
|
|
3
|
+
*::after {
|
|
4
|
+
box-sizing: border-box;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
html,
|
|
8
|
+
body,
|
|
9
|
+
div,
|
|
10
|
+
span,
|
|
11
|
+
select,
|
|
12
|
+
object,
|
|
13
|
+
iframe,
|
|
14
|
+
h1,
|
|
15
|
+
h2,
|
|
16
|
+
h3,
|
|
17
|
+
h4,
|
|
18
|
+
h5,
|
|
19
|
+
h6,
|
|
20
|
+
p,
|
|
21
|
+
blockquote,
|
|
22
|
+
pre,
|
|
23
|
+
abbr,
|
|
24
|
+
address,
|
|
25
|
+
cite,
|
|
26
|
+
code,
|
|
27
|
+
del,
|
|
28
|
+
dfn,
|
|
29
|
+
em,
|
|
30
|
+
img,
|
|
31
|
+
ins,
|
|
32
|
+
kbd,
|
|
33
|
+
q,
|
|
34
|
+
samp,
|
|
35
|
+
small,
|
|
36
|
+
strong,
|
|
37
|
+
sub,
|
|
38
|
+
sup,
|
|
39
|
+
var,
|
|
40
|
+
b,
|
|
41
|
+
i,
|
|
42
|
+
dl,
|
|
43
|
+
dt,
|
|
44
|
+
dd,
|
|
45
|
+
ol,
|
|
46
|
+
ul,
|
|
47
|
+
li,
|
|
48
|
+
fieldset,
|
|
49
|
+
form,
|
|
50
|
+
label,
|
|
51
|
+
legend,
|
|
52
|
+
table,
|
|
53
|
+
caption,
|
|
54
|
+
tbody,
|
|
55
|
+
tfoot,
|
|
56
|
+
thead,
|
|
57
|
+
tr,
|
|
58
|
+
th,
|
|
59
|
+
td,
|
|
60
|
+
article,
|
|
61
|
+
aside,
|
|
62
|
+
figure,
|
|
63
|
+
footer,
|
|
64
|
+
header,
|
|
65
|
+
main,
|
|
66
|
+
menu,
|
|
67
|
+
nav,
|
|
68
|
+
section,
|
|
69
|
+
time,
|
|
70
|
+
mark,
|
|
71
|
+
audio,
|
|
72
|
+
video {
|
|
73
|
+
margin: 0;
|
|
74
|
+
padding: 0;
|
|
75
|
+
border: 0;
|
|
76
|
+
outline: 0;
|
|
77
|
+
font-size: 100%;
|
|
78
|
+
vertical-align: baseline;
|
|
79
|
+
background: transparent;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
h1,
|
|
83
|
+
h2,
|
|
84
|
+
h3,
|
|
85
|
+
h4,
|
|
86
|
+
h5,
|
|
87
|
+
h6 {
|
|
88
|
+
margin: 0;
|
|
89
|
+
padding: 0;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
article,
|
|
93
|
+
aside,
|
|
94
|
+
details,
|
|
95
|
+
figcaption,
|
|
96
|
+
figure,
|
|
97
|
+
footer,
|
|
98
|
+
header,
|
|
99
|
+
main,
|
|
100
|
+
menu,
|
|
101
|
+
nav,
|
|
102
|
+
section,
|
|
103
|
+
summary {
|
|
104
|
+
display: block;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
img {
|
|
108
|
+
max-width: 100%;
|
|
109
|
+
border-width: 0;
|
|
110
|
+
vertical-align: middle;
|
|
111
|
+
-ms-interpolation-mode: bicubic;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
/* Reset de arrows en inputs */
|
|
115
|
+
input::-webkit-outer-spin-button,
|
|
116
|
+
input::-webkit-inner-spin-button {
|
|
117
|
+
-webkit-appearance: none;
|
|
118
|
+
margin: 0;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
/* Firefox */
|
|
122
|
+
input[type='number'] {
|
|
123
|
+
-moz-appearance: textfield;
|
|
124
|
+
}
|
|
@@ -0,0 +1,385 @@
|
|
|
1
|
+
$espaciados: (0, 2, 4, 8, 12, 16, 20, 24, 32, 40, 48, 56, 64, 72, 80, 96, 112, 128, 160);
|
|
2
|
+
$c-white: #fff !default;
|
|
3
|
+
$c-black: #000 !default;
|
|
4
|
+
$c-dark-grey: #8e8e8e !default;
|
|
5
|
+
$c-middle-grey: #e3e3e3 !default;
|
|
6
|
+
$c-light-grey: #f0f0f0 !default;
|
|
7
|
+
$c-primary: #000 !default;
|
|
8
|
+
$c-secondary: #000 !default;
|
|
9
|
+
$c-accent: #b40016 !default;
|
|
10
|
+
$c-error: #b40016 !default;
|
|
11
|
+
$c-sale: #b40016 !default;
|
|
12
|
+
$c-info: #1a32a4 !default;
|
|
13
|
+
$c-valid: #76ae4a !default;
|
|
14
|
+
$c-warning: #ffc700 !default;
|
|
15
|
+
$c-feel: #fb9962 !default;
|
|
16
|
+
$c-feel-dark: #c94c07 !default;
|
|
17
|
+
$c-feel-light: #fccbb0 !default;
|
|
18
|
+
$c-limited: #000 !default;
|
|
19
|
+
$c-success: #76ae4a !default;
|
|
20
|
+
$c-alert: #ffc700 !default;
|
|
21
|
+
$c-facebook: #1977f3 !default;
|
|
22
|
+
$c-google: #4285f4 !default;
|
|
23
|
+
$c-naver: #03cf5d !default;
|
|
24
|
+
$c-wechat: #2dc100 !default;
|
|
25
|
+
$bg-light: #f0f0f0 !default;
|
|
26
|
+
$bg-dark: #000 !default;
|
|
27
|
+
$bg-black: #000 !default;
|
|
28
|
+
$c-bg-light: #000 !default;
|
|
29
|
+
$c-bg-dark: #fff !default;
|
|
30
|
+
$white-smoke: #f0f0f0 !default;
|
|
31
|
+
$primary: #1a1a1a !default;
|
|
32
|
+
$primary-guide: #363636 !default;
|
|
33
|
+
$secondary-guide: #6759bb !default;
|
|
34
|
+
$ternary-guide: #6759bb !default;
|
|
35
|
+
$list-disc-color: #1a1a1a !default;
|
|
36
|
+
$c-tier-silver: #e3e3e3 !default;
|
|
37
|
+
$c-tier-platinum: #9dbddc !default;
|
|
38
|
+
$c-tier-gold: #e0b279 !default;
|
|
39
|
+
$text-sm: 12px;
|
|
40
|
+
$text-md: 13px;
|
|
41
|
+
$text-lg: 13px;
|
|
42
|
+
$btn-radius: 0 !default;
|
|
43
|
+
$obj-radius: 0 !default;
|
|
44
|
+
$form-radius: 0 !default;
|
|
45
|
+
$btn-line-height: 1 !default;
|
|
46
|
+
$btn-padding: 13px !default;
|
|
47
|
+
$btn-text-mini: 12px !default;
|
|
48
|
+
$btn-text-small: 14px !default;
|
|
49
|
+
$btn-text-medium: 14px !default;
|
|
50
|
+
$btn-text-large: 14px !default;
|
|
51
|
+
$btn-text-xlarge: 16px !default;
|
|
52
|
+
$btn-text-full: 14px !default;
|
|
53
|
+
$btn-text-r: 12px !default;
|
|
54
|
+
$btn-text-m: 12px !default;
|
|
55
|
+
$tabs-text: 12px !default;
|
|
56
|
+
$font-weight-secondary-light: 300 !default;
|
|
57
|
+
$font-weight-secondary-medium: 400 !default;
|
|
58
|
+
$font-weight-secondary-bold: 700 !default;
|
|
59
|
+
$totalCols: 12 !default;
|
|
60
|
+
$totalColsXl: 24 !default;
|
|
61
|
+
$padding-global: 8px !default;
|
|
62
|
+
$padding-mobile: 24px !default;
|
|
63
|
+
$padding-desktop: 40px !default;
|
|
64
|
+
$padding-button: 8px !default;
|
|
65
|
+
$height-inputs: 40px !default;
|
|
66
|
+
$text-input-m: 12px !default;
|
|
67
|
+
$text-input-d: 12px !default;
|
|
68
|
+
$container: 800px !default;
|
|
69
|
+
$container-2: 700px !default;
|
|
70
|
+
$container-3: 900px !default;
|
|
71
|
+
$container-4: 356px !default;
|
|
72
|
+
$container-5: 800px !default;
|
|
73
|
+
$container-6: 442px !default;
|
|
74
|
+
$container-7: 595px !default;
|
|
75
|
+
$container-8: 395px !default;
|
|
76
|
+
$container-9: 798px !default;
|
|
77
|
+
$container-10: 200px !default;
|
|
78
|
+
$container-11: 1080px !default;
|
|
79
|
+
$container-12: 1080px !default;
|
|
80
|
+
$container-full: 1500px !default;
|
|
81
|
+
$height-xs: 60px !default;
|
|
82
|
+
$height-sm: 100px !default;
|
|
83
|
+
$height-md: 350px !default;
|
|
84
|
+
$height-lg: 400px !default;
|
|
85
|
+
$height-xl: 450px !default;
|
|
86
|
+
$height-full: 100vh !default;
|
|
87
|
+
$height-home: calc(100vh - 80px) !default;
|
|
88
|
+
$transition: 278ms !default;
|
|
89
|
+
$min-width: 320px !default;
|
|
90
|
+
$min-vw: 320px !default;
|
|
91
|
+
$max-vw: 1500px !default;
|
|
92
|
+
$svg-size: 16px;
|
|
93
|
+
$fs: 'font-size';
|
|
94
|
+
$lh: 'line-height';
|
|
95
|
+
$headers: (
|
|
96
|
+
tit-m: (
|
|
97
|
+
14px,
|
|
98
|
+
14px,
|
|
99
|
+
16px,
|
|
100
|
+
16px,
|
|
101
|
+
1.2,
|
|
102
|
+
'medium',
|
|
103
|
+
),
|
|
104
|
+
) !default;
|
|
105
|
+
$minheaders: (
|
|
106
|
+
tit-m: (
|
|
107
|
+
14px,
|
|
108
|
+
16px,
|
|
109
|
+
1.2,
|
|
110
|
+
'medium',
|
|
111
|
+
),
|
|
112
|
+
tit-s: (
|
|
113
|
+
13px,
|
|
114
|
+
13px,
|
|
115
|
+
1.2,
|
|
116
|
+
'medium',
|
|
117
|
+
),
|
|
118
|
+
tit-xs: (
|
|
119
|
+
12px,
|
|
120
|
+
12px,
|
|
121
|
+
1.2,
|
|
122
|
+
'regular',
|
|
123
|
+
),
|
|
124
|
+
tit-xs-b: (
|
|
125
|
+
12px,
|
|
126
|
+
12px,
|
|
127
|
+
1.2,
|
|
128
|
+
'bold',
|
|
129
|
+
),
|
|
130
|
+
sub-xs: (
|
|
131
|
+
11px,
|
|
132
|
+
11px,
|
|
133
|
+
1.2,
|
|
134
|
+
'regular',
|
|
135
|
+
),
|
|
136
|
+
/* ttu */ p-m:
|
|
137
|
+
(
|
|
138
|
+
12px,
|
|
139
|
+
12px,
|
|
140
|
+
1.2,
|
|
141
|
+
'regular',
|
|
142
|
+
),
|
|
143
|
+
p-s: (
|
|
144
|
+
12px,
|
|
145
|
+
12px,
|
|
146
|
+
1.2,
|
|
147
|
+
'regular',
|
|
148
|
+
),
|
|
149
|
+
/* desaparece y pasa a ser --> p-m ❌ */ p-xs:
|
|
150
|
+
(
|
|
151
|
+
11px,
|
|
152
|
+
11px,
|
|
153
|
+
1.2,
|
|
154
|
+
'regular',
|
|
155
|
+
),
|
|
156
|
+
p-tag: (
|
|
157
|
+
10px,
|
|
158
|
+
10px,
|
|
159
|
+
1.3,
|
|
160
|
+
'regular',
|
|
161
|
+
),
|
|
162
|
+
p-m-b: (
|
|
163
|
+
12px,
|
|
164
|
+
13px,
|
|
165
|
+
1.2,
|
|
166
|
+
'bold',
|
|
167
|
+
),
|
|
168
|
+
/* ❌ */ p-m-m:
|
|
169
|
+
(
|
|
170
|
+
12px,
|
|
171
|
+
13px,
|
|
172
|
+
1.2,
|
|
173
|
+
'medium',
|
|
174
|
+
),
|
|
175
|
+
/*desaparece y pasa a ser p-m❌ */ p-xs-b:
|
|
176
|
+
(
|
|
177
|
+
11px,
|
|
178
|
+
12px,
|
|
179
|
+
1.3,
|
|
180
|
+
'bold',
|
|
181
|
+
),
|
|
182
|
+
/* desaparece y pasa a ser sub-xs ❌ */ p-xxs-b:
|
|
183
|
+
(
|
|
184
|
+
9px,
|
|
185
|
+
9px,
|
|
186
|
+
1.3,
|
|
187
|
+
'bold',
|
|
188
|
+
),
|
|
189
|
+
) !default;
|
|
190
|
+
$headersFixers: (
|
|
191
|
+
12: (
|
|
192
|
+
12px,
|
|
193
|
+
1.5,
|
|
194
|
+
),
|
|
195
|
+
14: (
|
|
196
|
+
14px,
|
|
197
|
+
1.5,
|
|
198
|
+
),
|
|
199
|
+
16: (
|
|
200
|
+
16px,
|
|
201
|
+
1.5,
|
|
202
|
+
),
|
|
203
|
+
18: (
|
|
204
|
+
18px,
|
|
205
|
+
1.5,
|
|
206
|
+
),
|
|
207
|
+
20: (
|
|
208
|
+
20px,
|
|
209
|
+
1.5,
|
|
210
|
+
),
|
|
211
|
+
24: (
|
|
212
|
+
24px,
|
|
213
|
+
1.5,
|
|
214
|
+
),
|
|
215
|
+
) !default;
|
|
216
|
+
$headersFluids: (
|
|
217
|
+
2: (
|
|
218
|
+
40px,
|
|
219
|
+
100px,
|
|
220
|
+
0.9,
|
|
221
|
+
),
|
|
222
|
+
1: (
|
|
223
|
+
60px,
|
|
224
|
+
160px,
|
|
225
|
+
0.8,
|
|
226
|
+
),
|
|
227
|
+
) !default;
|
|
228
|
+
$heights: (
|
|
229
|
+
height-xs: (
|
|
230
|
+
80px,
|
|
231
|
+
80px,
|
|
232
|
+
),
|
|
233
|
+
height-sm: (
|
|
234
|
+
100px,
|
|
235
|
+
100px,
|
|
236
|
+
),
|
|
237
|
+
height-128: (
|
|
238
|
+
128px,
|
|
239
|
+
128px,
|
|
240
|
+
),
|
|
241
|
+
height-md: (
|
|
242
|
+
350px,
|
|
243
|
+
350px,
|
|
244
|
+
),
|
|
245
|
+
height-lg: (
|
|
246
|
+
400px,
|
|
247
|
+
400px,
|
|
248
|
+
),
|
|
249
|
+
height-xl: (
|
|
250
|
+
450px,
|
|
251
|
+
450px,
|
|
252
|
+
),
|
|
253
|
+
height-full: (
|
|
254
|
+
100vh,
|
|
255
|
+
100vh,
|
|
256
|
+
),
|
|
257
|
+
height-big: (
|
|
258
|
+
300px,
|
|
259
|
+
500px,
|
|
260
|
+
),
|
|
261
|
+
height-medium: (
|
|
262
|
+
200px,
|
|
263
|
+
400px,
|
|
264
|
+
),
|
|
265
|
+
height-mini: (
|
|
266
|
+
100px,
|
|
267
|
+
300px,
|
|
268
|
+
),
|
|
269
|
+
height-home: (
|
|
270
|
+
calc(100vh - 80px),
|
|
271
|
+
calc(100vh - 80px),
|
|
272
|
+
),
|
|
273
|
+
) !default;
|
|
274
|
+
$mg: 'margin';
|
|
275
|
+
$margin: () !default;
|
|
276
|
+
$mx: 'margin';
|
|
277
|
+
$margin-x: () !default;
|
|
278
|
+
$my: 'margin';
|
|
279
|
+
$margin-y: () !default;
|
|
280
|
+
$mt: 'margin-top';
|
|
281
|
+
$margin-top: (
|
|
282
|
+
mtr-128: (
|
|
283
|
+
64px,
|
|
284
|
+
128px,
|
|
285
|
+
128px,
|
|
286
|
+
128px,
|
|
287
|
+
),
|
|
288
|
+
) !default;
|
|
289
|
+
$mr: 'margin-right';
|
|
290
|
+
$margin-right: () !default;
|
|
291
|
+
$mb: 'margin-bottom';
|
|
292
|
+
$margin-bottom: (
|
|
293
|
+
mbr-24: (
|
|
294
|
+
16px,
|
|
295
|
+
24px,
|
|
296
|
+
24px,
|
|
297
|
+
24px,
|
|
298
|
+
),
|
|
299
|
+
mbr-32: (
|
|
300
|
+
24px,
|
|
301
|
+
32px,
|
|
302
|
+
32px,
|
|
303
|
+
32px,
|
|
304
|
+
),
|
|
305
|
+
mbr-64: (
|
|
306
|
+
32px,
|
|
307
|
+
64px,
|
|
308
|
+
64px,
|
|
309
|
+
64px,
|
|
310
|
+
),
|
|
311
|
+
mbr-128: (
|
|
312
|
+
64px,
|
|
313
|
+
128px,
|
|
314
|
+
128px,
|
|
315
|
+
128px,
|
|
316
|
+
),
|
|
317
|
+
mbr-20-40: (
|
|
318
|
+
20px,
|
|
319
|
+
40px,
|
|
320
|
+
40px,
|
|
321
|
+
40px,
|
|
322
|
+
),
|
|
323
|
+
) !default;
|
|
324
|
+
$ml: 'margin-left';
|
|
325
|
+
$margin-left: () !default;
|
|
326
|
+
$p: 'padding';
|
|
327
|
+
$padding: (
|
|
328
|
+
p-body: (
|
|
329
|
+
16px,
|
|
330
|
+
16px,
|
|
331
|
+
40px,
|
|
332
|
+
40px,
|
|
333
|
+
),
|
|
334
|
+
) !default;
|
|
335
|
+
$py: 'padding';
|
|
336
|
+
$padding-y: () !default;
|
|
337
|
+
$px: 'padding';
|
|
338
|
+
$padding-x: () !default;
|
|
339
|
+
$pt: 'padding-top';
|
|
340
|
+
$padding-top: (
|
|
341
|
+
ptr-120: (
|
|
342
|
+
64px,
|
|
343
|
+
64px,
|
|
344
|
+
120px,
|
|
345
|
+
120px,
|
|
346
|
+
),
|
|
347
|
+
ptr-128: (
|
|
348
|
+
64px,
|
|
349
|
+
64px,
|
|
350
|
+
128px,
|
|
351
|
+
128px,
|
|
352
|
+
),
|
|
353
|
+
) !default;
|
|
354
|
+
$pb: 'padding-bottom';
|
|
355
|
+
$padding-bottom: (
|
|
356
|
+
pbr-128: (
|
|
357
|
+
64px,
|
|
358
|
+
64px,
|
|
359
|
+
128px,
|
|
360
|
+
128px,
|
|
361
|
+
),
|
|
362
|
+
) !default;
|
|
363
|
+
$pl: 'padding-left';
|
|
364
|
+
$padding-left: (
|
|
365
|
+
pl-body: (
|
|
366
|
+
16px,
|
|
367
|
+
16px,
|
|
368
|
+
40px,
|
|
369
|
+
40px,
|
|
370
|
+
),
|
|
371
|
+
) !default;
|
|
372
|
+
$pr: 'padding-right';
|
|
373
|
+
$padding-right: (
|
|
374
|
+
pr-body: (
|
|
375
|
+
16px,
|
|
376
|
+
16px,
|
|
377
|
+
40px,
|
|
378
|
+
40px,
|
|
379
|
+
),
|
|
380
|
+
) !default;
|
|
381
|
+
|
|
382
|
+
//@include space($breakpoints, $padding-top, $pt);
|
|
383
|
+
//@include space($breakpoints, $padding-left, $pl);
|
|
384
|
+
//@include space($breakpoints, $padding-bottom, $pb);
|
|
385
|
+
//@include space($breakpoints, $padding-right, $pr);
|