Skip to content

Commit ee0cc5c

Browse files
committed
feat: liquid glass effect
0 parents  commit ee0cc5c

57 files changed

Lines changed: 12530 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.browserslistrc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
last 15 versions
2+
> 90%
3+
Safari >= 12
4+
ios_saf >= 12
5+
Opera >= 56
6+
Chrome >= 69
7+
Edge >= 18
8+
Firefox >= 62

.csscomb.json

Lines changed: 344 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,344 @@
1+
{
2+
"always-semicolon": true,
3+
"block-indent": 2,
4+
"color-case": "upper",
5+
"color-shorthand": true,
6+
"element-case": "lower",
7+
"eof-newline": true,
8+
"leading-zero": true,
9+
"quotes": "double",
10+
"remove-empty-rulesets": true,
11+
"sort-order-fallback": "abc",
12+
"space-after-colon": 1,
13+
"space-after-combinator": " ",
14+
"space-between-declarations": "\n ",
15+
"space-after-opening-brace": "\n",
16+
"space-after-selector-delimiter": "\n",
17+
"space-before-closing-brace": "\n",
18+
"space-before-colon": "",
19+
"space-before-combinator": 1,
20+
"space-before-opening-brace": 1,
21+
"space-before-selector-delimiter": 0,
22+
"strip-spaces": true,
23+
"tab-size": 2,
24+
"unitless-zero": false,
25+
"vendor-prefix-align": true,
26+
"lines-between-rulesets": 1,
27+
"sort-order": [
28+
["..."],
29+
["$include pseudo", "all", "content"],
30+
[
31+
"float",
32+
"clear",
33+
"inset",
34+
"order",
35+
"position",
36+
"z-index",
37+
"top",
38+
"right",
39+
"bottom",
40+
"left",
41+
"z-index",
42+
"grid-column",
43+
"grid-column-end",
44+
"grid-column-start",
45+
"grid-row",
46+
"grid-row-end",
47+
"grid-row-start",
48+
"grid-area",
49+
"margin",
50+
"margin-top",
51+
"margin-right",
52+
"margin-bottom",
53+
"margin-left",
54+
"margin-block",
55+
"margin-block-end",
56+
"margin-block-start",
57+
"margin-inline",
58+
"margin-inline-end",
59+
"margin-inline-start",
60+
"inset-block",
61+
"inset-block-end",
62+
"inset-block-start",
63+
"inset-inline",
64+
"inset-inline-end",
65+
"inset-inline-start"
66+
],
67+
[
68+
"container",
69+
"container-name",
70+
"container-type",
71+
"contain",
72+
"padding",
73+
"padding-top",
74+
"padding-right",
75+
"padding-bottom",
76+
"padding-left",
77+
"padding-block",
78+
"padding-block-end",
79+
"padding-block-start",
80+
"padding-inline",
81+
"padding-inline-end",
82+
"padding-inline-start",
83+
"width",
84+
"min-width",
85+
"max-width",
86+
"height",
87+
"min-height",
88+
"max-height",
89+
"$include square",
90+
"aspect-ratio",
91+
"display",
92+
"flex-direction",
93+
"align-content",
94+
"align-items",
95+
"align-self",
96+
"justify-content",
97+
"justify-items",
98+
"justify-self",
99+
"place-content",
100+
"place-items",
101+
"place-self",
102+
"grid-auto-columns",
103+
"grid-auto-flow",
104+
"grid-auto-rows",
105+
"grid-template",
106+
"grid-template-columns",
107+
"grid-template-rows",
108+
"grid-template-areas",
109+
"flex",
110+
"flex-flow",
111+
"flex-basis",
112+
"flex-grow",
113+
"flex-shrink",
114+
"flex-wrap",
115+
"grid",
116+
"gap",
117+
"column-gap",
118+
"row-gap",
119+
"box-sizing",
120+
"columns",
121+
"column-count",
122+
"column-fill",
123+
"column-gap",
124+
"column-rule",
125+
"column-rule-color",
126+
"column-rule-style",
127+
"column-rule-width",
128+
"column-span",
129+
"column-width",
130+
"object-fit",
131+
"object-position"
132+
],
133+
[
134+
"color",
135+
"font",
136+
"font-family",
137+
"font-size",
138+
"font-weight",
139+
"font-style",
140+
"font-variant",
141+
"font-size-adjust",
142+
"font-stretch",
143+
"font-feature-settings",
144+
"font-kerning",
145+
"font-optical-sizing",
146+
"font-display",
147+
"line-height",
148+
"letter-spacing",
149+
"text-align",
150+
"text-align-last",
151+
"text-decoration",
152+
"text-decoration-color",
153+
"text-decoration-line",
154+
"text-decoration-style",
155+
"text-decoration-skip-ink",
156+
"text-decoration-thickness",
157+
"text-transform",
158+
"text-indent",
159+
"text-shadow",
160+
"text-overflow",
161+
"text-wrap",
162+
"line-clamp",
163+
"-webkit-line-clamp",
164+
"-webkit-box-orient",
165+
"text-underline-position",
166+
"text-emphasis",
167+
"text-emphasis-color",
168+
"text-emphasis-style",
169+
"text-emphasis-position",
170+
"-webkit-text-size-adjust",
171+
"white-space",
172+
"word-wrap",
173+
"word-break",
174+
"word-spacing",
175+
"hyphens",
176+
"hanging-punctuation",
177+
"line-break",
178+
"overflow-wrap",
179+
"tab-size",
180+
"list-style",
181+
"unicode-bidi",
182+
"vertical-align",
183+
"writing-mode",
184+
"direction",
185+
"text-size-adjust",
186+
"quotes",
187+
"src"
188+
],
189+
[
190+
"box-shadow",
191+
"fill",
192+
"background",
193+
"background-color",
194+
"background-image",
195+
"background-repeat",
196+
"background-position",
197+
"background-size",
198+
"background-clip",
199+
"background-origin",
200+
"background-attachment",
201+
"background-blend-mode",
202+
"background-position-x",
203+
"background-position-y",
204+
"background-filter",
205+
"backdrop-filter",
206+
"filter",
207+
"border",
208+
"border-width",
209+
"border-style",
210+
"border-color",
211+
"border-top",
212+
"border-top-width",
213+
"border-top-style",
214+
"border-top-color",
215+
"border-right",
216+
"border-right-width",
217+
"border-right-style",
218+
"border-right-color",
219+
"border-bottom",
220+
"border-bottom-width",
221+
"border-bottom-style",
222+
"border-bottom-color",
223+
"border-left",
224+
"border-left-width",
225+
"border-left-style",
226+
"border-left-color",
227+
"border-radius",
228+
"border-top-left-radius",
229+
"border-top-right-radius",
230+
"border-bottom-right-radius",
231+
"border-bottom-left-radius",
232+
"border-image",
233+
"border-image-source",
234+
"border-image-slice",
235+
"border-image-width",
236+
"border-image-outset",
237+
"border-image-repeat",
238+
"outline",
239+
"outline-width",
240+
"outline-style",
241+
"outline-color",
242+
"outline-offset",
243+
"overflow",
244+
"overflow-x",
245+
"overflow-y",
246+
"overflow-anchor",
247+
"overflow-block",
248+
"overflow-inline",
249+
"visibility",
250+
"opacity",
251+
"mix-blend-mode",
252+
"content-visibility",
253+
"clip-rule",
254+
"will-change"
255+
],
256+
[
257+
"animation",
258+
"animation-name",
259+
"animation-duration",
260+
"animation-timing-function",
261+
"animation-delay",
262+
"animation-iteration-count",
263+
"animation-direction",
264+
"animation-fill-mode",
265+
"animation-play-state",
266+
"transform",
267+
"transform-origin",
268+
"transform-box",
269+
"rotate",
270+
"perspective",
271+
"perspective-origin",
272+
"backface-visibility",
273+
"transition",
274+
"transition-property",
275+
"transition-duration",
276+
"transition-timing-function",
277+
"transition-delay"
278+
],
279+
[
280+
"quotes",
281+
"counter-reset",
282+
"counter-increment",
283+
"resize",
284+
"cursor",
285+
"pointer-events",
286+
"user-select",
287+
"nav-index",
288+
"nav-up",
289+
"nav-right",
290+
"nav-down",
291+
"nav-left",
292+
"page-break-before",
293+
"page-break-after",
294+
"page-break-inside",
295+
"widows",
296+
"orphans",
297+
"zoom",
298+
"clip",
299+
"clip-path",
300+
"mask",
301+
"mask-clip",
302+
"mask-composite",
303+
"mask-image",
304+
"mask-mode",
305+
"mask-origin",
306+
"mask-position",
307+
"mask-repeat",
308+
"mask-size",
309+
"mask-type",
310+
"appearance",
311+
"-moz-appearance",
312+
"-webkit-appearance",
313+
"image-rendering",
314+
"shape-rendering",
315+
"text-rendering",
316+
"touch-action",
317+
"scroll-behavior",
318+
"overscroll-behavior",
319+
"-webkit-tap-highlight-color",
320+
"overflow-anchor",
321+
"caret-color",
322+
"scroll-snap-type",
323+
"scroll-snap-align",
324+
"scroll-snap-stop",
325+
"scroll-margin",
326+
"scroll-margin-top",
327+
"scroll-margin-right",
328+
"scroll-margin-bottom",
329+
"scroll-margin-left",
330+
"scroll-padding",
331+
"scroll-padding-top",
332+
"scroll-padding-right",
333+
"scroll-padding-bottom",
334+
"scroll-padding-left",
335+
"scrollbar-width",
336+
"scrollbar-color",
337+
"scrollbar-gutter",
338+
"$include scrollbar",
339+
"$include scrollbarHorizontal",
340+
"$include scrollbarDelete"
341+
],
342+
["$include hover"]
343+
]
344+
}

.editorconfig

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
insert_final_newline = true

.eslintrc.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
module.exports = {
2+
env: {
3+
browser: true,
4+
node: true,
5+
},
6+
extends: ['eslint:recommended', 'plugin:prettier/recommended'],
7+
parserOptions: {
8+
ecmaVersion: 2020,
9+
},
10+
rules: {
11+
quotes: ['error', 'single'],
12+
semi: ['error', 'always'],
13+
},
14+
};

0 commit comments

Comments
 (0)