codexly-ui 0.0.1
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/README.md +63 -0
- package/assets/fonts/roboto-bold-italic.ttf +0 -0
- package/assets/fonts/roboto-bold.ttf +0 -0
- package/assets/fonts/roboto-italic.ttf +0 -0
- package/assets/fonts/roboto-light-italic.ttf +0 -0
- package/assets/fonts/roboto-light.ttf +0 -0
- package/assets/fonts/roboto-medium-italic.ttf +0 -0
- package/assets/fonts/roboto-medium.ttf +0 -0
- package/assets/fonts/roboto-regular.ttf +0 -0
- package/assets/fonts/roboto-semibold-italic.ttf +0 -0
- package/assets/fonts/roboto-semibold.ttf +0 -0
- package/assets/styles/_animate.css +769 -0
- package/assets/styles/_fonts.css +84 -0
- package/assets/styles/_theme.css +9 -0
- package/assets/styles/styles.css +36 -0
- package/fesm2022/codexly-ui.mjs +13820 -0
- package/fesm2022/codexly-ui.mjs.map +1 -0
- package/index.d.ts +2734 -0
- package/package.json +23 -0
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
/* ── Roboto 300 Light ──────────────────────────────────────────────────────── */
|
|
2
|
+
@font-face {
|
|
3
|
+
font-family: 'Roboto';
|
|
4
|
+
font-style: normal;
|
|
5
|
+
font-weight: 300;
|
|
6
|
+
font-display: swap;
|
|
7
|
+
src: url('../fonts/roboto-light.ttf') format('truetype');
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
@font-face {
|
|
11
|
+
font-family: 'Roboto';
|
|
12
|
+
font-style: italic;
|
|
13
|
+
font-weight: 300;
|
|
14
|
+
font-display: swap;
|
|
15
|
+
src: url('../fonts/roboto-light-italic.ttf') format('truetype');
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
/* ── Roboto 400 Regular ────────────────────────────────────────────────────── */
|
|
19
|
+
@font-face {
|
|
20
|
+
font-family: 'Roboto';
|
|
21
|
+
font-style: normal;
|
|
22
|
+
font-weight: 400;
|
|
23
|
+
font-display: swap;
|
|
24
|
+
src: url('../fonts/roboto-regular.ttf') format('truetype');
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
@font-face {
|
|
28
|
+
font-family: 'Roboto';
|
|
29
|
+
font-style: italic;
|
|
30
|
+
font-weight: 400;
|
|
31
|
+
font-display: swap;
|
|
32
|
+
src: url('../fonts/roboto-italic.ttf') format('truetype');
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
/* ── Roboto 500 Medium ─────────────────────────────────────────────────────── */
|
|
36
|
+
@font-face {
|
|
37
|
+
font-family: 'Roboto';
|
|
38
|
+
font-style: normal;
|
|
39
|
+
font-weight: 500;
|
|
40
|
+
font-display: swap;
|
|
41
|
+
src: url('../fonts/roboto-medium.ttf') format('truetype');
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
@font-face {
|
|
45
|
+
font-family: 'Roboto';
|
|
46
|
+
font-style: italic;
|
|
47
|
+
font-weight: 500;
|
|
48
|
+
font-display: swap;
|
|
49
|
+
src: url('../fonts/roboto-medium-italic.ttf') format('truetype');
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
/* ── Roboto 600 SemiBold ───────────────────────────────────────────────────── */
|
|
53
|
+
@font-face {
|
|
54
|
+
font-family: 'Roboto';
|
|
55
|
+
font-style: normal;
|
|
56
|
+
font-weight: 600;
|
|
57
|
+
font-display: swap;
|
|
58
|
+
src: url('../fonts/roboto-semibold.ttf') format('truetype');
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
@font-face {
|
|
62
|
+
font-family: 'Roboto';
|
|
63
|
+
font-style: italic;
|
|
64
|
+
font-weight: 600;
|
|
65
|
+
font-display: swap;
|
|
66
|
+
src: url('../fonts/roboto-semibold-italic.ttf') format('truetype');
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
/* ── Roboto 700 Bold ───────────────────────────────────────────────────────── */
|
|
70
|
+
@font-face {
|
|
71
|
+
font-family: 'Roboto';
|
|
72
|
+
font-style: normal;
|
|
73
|
+
font-weight: 700;
|
|
74
|
+
font-display: swap;
|
|
75
|
+
src: url('../fonts/roboto-bold.ttf') format('truetype');
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
@font-face {
|
|
79
|
+
font-family: 'Roboto';
|
|
80
|
+
font-style: italic;
|
|
81
|
+
font-weight: 700;
|
|
82
|
+
font-display: swap;
|
|
83
|
+
src: url('../fonts/roboto-bold-italic.ttf') format('truetype');
|
|
84
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');
|
|
2
|
+
@import "tailwindcss";
|
|
3
|
+
@import "./_fonts.css";
|
|
4
|
+
@import "./_theme.css";
|
|
5
|
+
@import "./_animate.css";
|
|
6
|
+
|
|
7
|
+
/* ── Safelist: all color shades for dynamic class binding ── */
|
|
8
|
+
@source inline("{bg,hover:bg,ring,hover:ring,focus:ring,hover:border,border,text}-{red,orange,amber,yellow,lime,green,emerald,teal,cyan,sky,blue,indigo,violet,purple,fuchsia,pink,rose,slate,gray,zinc,neutral,stone}-{50,100,200,300,400,500,600,700,800,900,950}{/10,/20,/25,/50,/75,}");
|
|
9
|
+
@source inline("{bg,hover:bg,focus:ring,border,hover:border}-{white,black,transparent}");
|
|
10
|
+
@source inline("text-{black,white}");
|
|
11
|
+
|
|
12
|
+
/* ── Modal backdrop ───────────────────────────────────────────────────────── */
|
|
13
|
+
.clx-modal-backdrop {
|
|
14
|
+
background-color: rgba(15, 23, 42, 0.40);
|
|
15
|
+
backdrop-filter: blur(4px);
|
|
16
|
+
-webkit-backdrop-filter: blur(4px);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
/* ── Global scrollbar styling ─────────────────────────────────────────────── */
|
|
21
|
+
::-webkit-scrollbar {
|
|
22
|
+
width: 0.5rem;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
::-webkit-scrollbar-track {
|
|
26
|
+
background-color: transparent;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
::-webkit-scrollbar-thumb {
|
|
30
|
+
background-color: var(--clx-scrollbar);
|
|
31
|
+
border-radius: 0.5rem;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
::-webkit-scrollbar-thumb:hover {
|
|
35
|
+
background-color: var(--clx-scrollbar-hover);
|
|
36
|
+
}
|