@newlogic-digital/ui 3.4.2 → 3.7.5
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 +21 -15
- package/package.json +32 -24
- package/src/data/main.json +25 -15
- package/src/emails/styles/main/+.css +3 -0
- package/src/emails/styles/main/Base/+.css +2 -0
- package/src/emails/styles/main/Base/config.css +22 -0
- package/src/emails/styles/main/Components/+.css +1 -0
- package/src/emails/styles/main/Components/Card.css +12 -0
- package/src/emails/styles/main/Ui/+.css +3 -0
- package/src/emails/styles/main/Ui/Btn.css +78 -0
- package/src/emails/styles/main/Ui/Heading.css +8 -0
- package/src/emails/styles/main/Ui/Text.css +12 -0
- package/src/emails/styles/main.css +92 -0
- package/src/emails/{templates/Layout.twig → templates.test/Layout.latte} +17 -5
- package/src/emails/templates.test/Sections/Footer.latte +22 -0
- package/src/emails/templates.test/Sections/Header.latte +37 -0
- package/src/emails/templates.test/Sections/Text.latte +24 -0
- package/src/icons.svg +27 -21
- package/src/scripts/Components/+.js +2 -1
- package/src/scripts/Components/Drawer.js +60 -0
- package/src/scripts/Components/Popover.js +65 -0
- package/src/scripts/Layout/+.js +0 -1
- package/src/scripts/Layout/Header.js +14 -24
- package/src/scripts/Libraries/+.js +4 -8
- package/src/scripts/Libraries/CookieConsent.js +65 -52
- package/src/scripts/Libraries/Dialog.js +19 -36
- package/src/scripts/Libraries/Form.js +5 -25
- package/src/scripts/Libraries/Naja.js +22 -20
- package/src/scripts/Libraries/ReCaptcha.js +8 -30
- package/src/scripts/Libraries/Reveal.js +32 -0
- package/src/scripts/Libraries/Ripple.js +6 -22
- package/src/scripts/Libraries/Stimulus.js +49 -5
- package/src/scripts/Libraries/Swup.js +45 -32
- package/src/scripts/Libraries/Toaster.js +55 -0
- package/src/scripts/Ui/+.js +3 -3
- package/src/scripts/Ui/Check.js +8 -0
- package/src/scripts/Ui/Control.js +194 -0
- package/src/scripts/Ui/ControlSelect.js +25 -0
- package/src/scripts/Ui/Text.js +9 -11
- package/src/scripts/Utils/+.js +3 -3
- package/src/scripts/Utils/cdn.js +1 -3
- package/src/scripts/Utils/initAfter.js +11 -0
- package/src/scripts/Utils/naja.js +41 -0
- package/src/scripts/Utils/utilities.js +8 -0
- package/src/scripts/main.js +2 -1
- package/src/styles/Components/+.css +4 -3
- package/src/styles/Components/Dialog/+.css +2 -0
- package/src/styles/Components/Dialog/Content.css +2 -0
- package/src/styles/Components/Dialog/CookieConsent.css +17 -0
- package/src/styles/Components/Dialog/Default.css +2 -43
- package/src/styles/Components/Drawer.css +18 -0
- package/src/styles/Components/Field.css +1 -0
- package/src/styles/Components/Popover.css +1 -0
- package/src/styles/Components/Toaster.css +2 -0
- package/src/styles/Layout/Header.css +9 -45
- package/src/styles/Layout/Main.css +11 -75
- package/src/styles/Layout/Nav.css +13 -33
- package/src/styles/Libraries/+.css +1 -7
- package/src/styles/Libraries/Datepicker.css +38 -229
- package/src/styles/Libraries/Pickr.css +13 -0
- package/src/styles/Ui/+.css +5 -5
- package/src/styles/Ui/Badge.css +8 -82
- package/src/styles/Ui/Btn.css +14 -226
- package/src/styles/Ui/Check.css +1 -0
- package/src/styles/Ui/Control.css +57 -0
- package/src/styles/Ui/ControlSelect.css +57 -0
- package/src/styles/Ui/Group.css +1 -0
- package/src/styles/Ui/Heading.css +4 -22
- package/src/styles/Ui/Image.css +1 -17
- package/src/styles/Ui/Info.css +1 -0
- package/src/styles/Ui/Label.css +1 -14
- package/src/styles/Ui/Link.css +6 -39
- package/src/styles/Ui/Notice.css +5 -43
- package/src/styles/Ui/Progress.css +1 -56
- package/src/styles/Ui/Switch.css +1 -70
- package/src/styles/Ui/Text.css +1 -254
- package/src/styles/Ui/Title.css +4 -15
- package/src/styles/Utils/+.css +6 -10
- package/src/styles/Utils/breakpoints.css +1 -9
- package/src/styles/Utils/config.css +16 -0
- package/src/styles/Utils/default.css +15 -26
- package/src/styles/Utils/keyframes.css +1 -182
- package/src/styles/Utils/theme/+.css +1 -1
- package/src/styles/Utils/theme/main.css +28 -23
- package/src/styles/Utils/utilities.css +42 -0
- package/src/styles/main.css +16 -14
- package/src/styles/tinymce.css +34 -0
- package/src/templates/Components/Dialog/Basic.latte +24 -0
- package/src/templates/Components/Dialog/CookieConsent.latte +27 -0
- package/src/templates/Components/Form/CookieConsent.latte +47 -0
- package/src/templates/Layout/Header.latte +38 -0
- package/src/templates/Layout/Main.latte +73 -0
- package/src/templates/Sections/CookieConsent.latte +69 -0
- package/src/templates/Sections/Site.latte +213 -0
- package/src/templates/Sections/Text.latte +64 -0
- package/src/templates/Sections/Ui/Docs/@intro.html +16 -65
- package/src/templates/Sections/Ui/Docs/@nav.html +68 -129
- package/src/templates/Sections/Ui/Docs/@styles.html +3 -7
- package/src/templates/Sections/Ui/Docs/Default.latte +979 -0
- package/src/templates/Sections/Ui/Icons.html +11 -9
- package/src/templates/Sections/Ui/Intro.html +62 -79
- package/src/templates/Sections/Ui.latte +8 -0
- package/src/templates/Ui/+.latte +5 -0
- package/src/templates/Ui/Check.latte +7 -0
- package/src/templates/Ui/Control.latte +9 -0
- package/src/templates/Ui/ControlDate.latte +14 -0
- package/src/templates/Ui/ControlSelect.latte +9 -0
- package/src/templates/Ui/ControlTime.latte +14 -0
- package/src/templates/Utils/sections.latte +3 -0
- package/src/views/dialog/basic.json.latte +5 -0
- package/src/views/email/email.latte +6 -0
- package/src/views/email/email.test.latte +6 -0
- package/src/views/gdpr.json +6 -4
- package/src/views/index.json +1 -1
- package/src/views/popover/info.json.latte +15 -0
- package/src/views/site.json +11 -0
- package/src/views/ui-icons.json +1 -1
- package/src/views/ui.json +1 -1
- package/vite.config.js +17 -16
- package/src/emails/styles/email.css +0 -77
- package/src/emails/templates/Content.twig +0 -16
- package/src/emails/templates/Header.twig +0 -14
- package/src/scripts/Components/CookieConsent.js +0 -83
- package/src/scripts/Layout/Main.js +0 -47
- package/src/scripts/Libraries/Anchor.js +0 -35
- package/src/scripts/Libraries/Drawer.js +0 -45
- package/src/scripts/Libraries/NativeSlider.js +0 -138
- package/src/scripts/Libraries/Script.js +0 -19
- package/src/scripts/Libraries/Tabs.js +0 -16
- package/src/scripts/Libraries/Tippy.js +0 -120
- package/src/scripts/Ui/Checkbox.js +0 -10
- package/src/scripts/Ui/Input.js +0 -259
- package/src/scripts/Ui/Select.js +0 -53
- package/src/scripts/Utils/Functions/+.js +0 -6
- package/src/scripts/Utils/Functions/checkValidity.js +0 -44
- package/src/scripts/Utils/Functions/dataValue.js +0 -52
- package/src/scripts/Utils/Functions/importScript.js +0 -17
- package/src/scripts/Utils/Functions/importStyle.js +0 -18
- package/src/scripts/Utils/Functions/loadStimulus.js +0 -42
- package/src/scripts/Utils/Functions/replaceTag.js +0 -12
- package/src/scripts/Utils/global.js +0 -15
- package/src/styles/Components/CookieConsent.css +0 -71
- package/src/styles/Components/Dropdown/+.css +0 -1
- package/src/styles/Components/Dropdown/Default.css +0 -5
- package/src/styles/Components/Form/+.css +0 -1
- package/src/styles/Components/Form/CookieConsent.css +0 -31
- package/src/styles/Libraries/Dialog.css +0 -35
- package/src/styles/Libraries/Drawer.css +0 -70
- package/src/styles/Libraries/Hint.css +0 -201
- package/src/styles/Libraries/NativeSlider.css +0 -60
- package/src/styles/Libraries/Ripple.css +0 -16
- package/src/styles/Libraries/Tabs.css +0 -19
- package/src/styles/Libraries/Tippy.css +0 -87
- package/src/styles/Ui/Checkbox.css +0 -150
- package/src/styles/Ui/Icon.css +0 -33
- package/src/styles/Ui/Input.css +0 -467
- package/src/styles/Ui/Radio.css +0 -4
- package/src/styles/Ui/Select.css +0 -137
- package/src/styles/Utils/icons.css +0 -9
- package/src/styles/Utils/normalize.css +0 -223
- package/src/styles/Utils/tailwind/+.css +0 -3
- package/src/styles/Utils/tailwind/base.css +0 -3
- package/src/styles/Utils/tailwind/gutters.css +0 -346
- package/src/styles/Utils/tailwind/utilities.css +0 -48
- package/src/styles/Utils/vars.css +0 -91
- package/src/styles/Utils/vendor.css +0 -2
- package/src/templates/Components/CookieConsent.twig +0 -30
- package/src/templates/Components/Dialogs/Basic.twig +0 -22
- package/src/templates/Layout/Header.twig +0 -42
- package/src/templates/Layout/Main.twig +0 -49
- package/src/templates/Sections/Gdpr.twig +0 -64
- package/src/templates/Sections/Ui/Docs/Default.twig +0 -1600
- package/src/templates/Sections/Ui.twig +0 -8
- package/src/templates/Utils/sections.twig +0 -3
- package/src/views/dialog/basic.json.twig +0 -3
- package/src/views/dropdown/tippy.json.twig +0 -16
- package/src/views/email/email.twig +0 -6
- /package/src/{styles/Utils/print.css → emails/styles/main/Base/font.css} +0 -0
- /package/src/{templates/Components/Items → emails/templates}/.gitkeep +0 -0
- /package/src/templates/Layout/{Footer.twig → Footer.latte} +0 -0
package/src/styles/Ui/Switch.css
CHANGED
|
@@ -1,70 +1 @@
|
|
|
1
|
-
|
|
2
|
-
--ui-switch-width: 3rem;
|
|
3
|
-
--ui-switch-height: 1.5rem;
|
|
4
|
-
--ui-switch-padding: 0.375rem;
|
|
5
|
-
--ui-swtich-bg: var(--color-dark);
|
|
6
|
-
--ui-swtich-bg-opacity: 0.2;
|
|
7
|
-
--ui-swtich-fg: var(--color-accent);
|
|
8
|
-
--ui-switch-radius: 999px;
|
|
9
|
-
|
|
10
|
-
@nest .dark & {
|
|
11
|
-
--ui-swtich-bg: var(--color-background-300);
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
display: inline-flex;
|
|
15
|
-
color: rgb(var(--ui-swtich-fg));
|
|
16
|
-
position: relative;
|
|
17
|
-
|
|
18
|
-
&:--size-sm {
|
|
19
|
-
--ui-switch-width: 2.5rem;
|
|
20
|
-
--ui-switch-height: 1.25rem;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
&:--size-lg {
|
|
24
|
-
--ui-switch-width: 4rem;
|
|
25
|
-
--ui-switch-height: 2rem;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
& input {
|
|
29
|
-
width: var(--ui-switch-width);
|
|
30
|
-
height: var(--ui-switch-height);
|
|
31
|
-
display: block;
|
|
32
|
-
position: relative;
|
|
33
|
-
border-radius: var(--ui-switch-radius);
|
|
34
|
-
background-color: rgb(var(--ui-swtich-bg));
|
|
35
|
-
transition: var(--transition-background);
|
|
36
|
-
cursor: pointer;
|
|
37
|
-
appearance: none;
|
|
38
|
-
outline: none;
|
|
39
|
-
color: inherit;
|
|
40
|
-
|
|
41
|
-
&[disabled] {
|
|
42
|
-
opacity: 0.8;
|
|
43
|
-
pointer-events: none;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
&::before {
|
|
47
|
-
width: calc(var(--ui-switch-height) - var(--ui-switch-padding));
|
|
48
|
-
height: calc(var(--ui-switch-height) - var(--ui-switch-padding));
|
|
49
|
-
background-color: rgb(var(--color-light));
|
|
50
|
-
border-radius: var(--ui-switch-radius);
|
|
51
|
-
position: absolute;
|
|
52
|
-
left: var(--ui-switch-height);
|
|
53
|
-
top: 50%;
|
|
54
|
-
content: "";
|
|
55
|
-
display: block;
|
|
56
|
-
margin-left: calc((var(--ui-switch-height) - var(--ui-switch-padding) + var(--ui-switch-padding) / 2) * -1);
|
|
57
|
-
transition: left var(--transition), var(--transition-background);
|
|
58
|
-
transform: translateY(-50%);
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
&:checked {
|
|
62
|
-
background-color: currentColor;
|
|
63
|
-
|
|
64
|
-
&::before {
|
|
65
|
-
background-color: rgb(var(--color-light));
|
|
66
|
-
left: 100%;
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
}
|
|
1
|
+
@import "winduum/src/ui/switch/index.css";
|
package/src/styles/Ui/Text.css
CHANGED
|
@@ -1,254 +1 @@
|
|
|
1
|
-
|
|
2
|
-
--ui-text-size: 0.875rem;
|
|
3
|
-
--ui-text-size-line: 0.75rem;
|
|
4
|
-
--ui-text-weight: var(--font-normal);
|
|
5
|
-
--ui-text-weight-bold: var(--font-semibold);
|
|
6
|
-
|
|
7
|
-
font-weight: var(--ui-text-weight);
|
|
8
|
-
font-size: var(--ui-text-size);
|
|
9
|
-
line-height: calc(var(--ui-text-size) + var(--ui-text-size-line));
|
|
10
|
-
|
|
11
|
-
&:--size-base {
|
|
12
|
-
--ui-text-size: 1rem;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
&:--size-lg {
|
|
16
|
-
--ui-text-size: 1.125rem;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
& a {
|
|
20
|
-
text-decoration: underline;
|
|
21
|
-
transition: var(--transition-opacity);
|
|
22
|
-
|
|
23
|
-
&:not([class*="text-"]) {
|
|
24
|
-
color: rgb(var(--color-accent));
|
|
25
|
-
|
|
26
|
-
@nest .no-touch &[href]:is(:hover, :focus-visible) {
|
|
27
|
-
opacity: 0.8;
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
& b, & strong {
|
|
33
|
-
font-weight: var(--ui-text-weight-bold);
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
& i, & em {
|
|
37
|
-
display: inline;
|
|
38
|
-
font-style: italic;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
& figure {
|
|
42
|
-
margin: 1rem 0;
|
|
43
|
-
|
|
44
|
-
@media (--media-t) {
|
|
45
|
-
margin: 2rem 0;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
& figcaption {
|
|
49
|
-
font-size: 0.875rem;
|
|
50
|
-
font-weight: var(--font-semibold);
|
|
51
|
-
margin-top: 0.875rem;
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
& img {
|
|
56
|
-
max-width: 100%;
|
|
57
|
-
height: auto !important;
|
|
58
|
-
|
|
59
|
-
@media (--media-m) {
|
|
60
|
-
display: block;
|
|
61
|
-
float: none !important;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
@media (--media-t) {
|
|
65
|
-
&[style*="right"], &.float-right {
|
|
66
|
-
margin: 0 0 2rem 4rem;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
&[style*="left"], &.float-left {
|
|
70
|
-
margin: 0 2rem 4rem 0;
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
& p {
|
|
76
|
-
line-height: inherit;
|
|
77
|
-
margin: 0 0 0.25rem;
|
|
78
|
-
|
|
79
|
-
&:empty {
|
|
80
|
-
line-height: 1rem;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
&::after {
|
|
84
|
-
content: "\00a0";
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
& hr {
|
|
89
|
-
margin: 1.25rem 0;
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
& :is(h1, h2, h3, h4, h5, h6) {
|
|
93
|
-
font-weight: var(--ui-text-weight-bold);
|
|
94
|
-
font-family: var(--font-secondary);
|
|
95
|
-
font-size: var(--ui-text-heading-size, 1rem);
|
|
96
|
-
line-height: calc(var(--ui-text-heading-size) + 0.5rem);
|
|
97
|
-
margin: 0 0 1.25rem;
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
& h1 {
|
|
101
|
-
--ui-text-heading-size: 2.25rem;
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
& h2 {
|
|
105
|
-
--ui-text-heading-size: 1.75rem;
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
& h3, & h4 {
|
|
109
|
-
--ui-text-heading-size: 1.25rem;
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
& table {
|
|
113
|
-
border: 0;
|
|
114
|
-
|
|
115
|
-
@media (--media-m) {
|
|
116
|
-
min-width: 100%;
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
& td, & th {
|
|
120
|
-
padding: 1rem 1.125rem;
|
|
121
|
-
text-align: left;
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
& thead {
|
|
125
|
-
font-weight: var(--ui-text-weight-bold);
|
|
126
|
-
border-bottom: 1px solid rgb(var(--color-current) / 0.075);
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
& tbody {
|
|
130
|
-
& tr {
|
|
131
|
-
&:nth-of-type(even) {
|
|
132
|
-
background-color: rgb(var(--color-current) / 0.05);
|
|
133
|
-
}
|
|
134
|
-
}
|
|
135
|
-
}
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
& iframe {
|
|
139
|
-
max-width: 100%;
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
& blockquote {
|
|
143
|
-
background-color: rgb(var(--color-current) / 0.075);
|
|
144
|
-
border-left: 0.3125rem solid rgb(var(--color-accent) / 1);
|
|
145
|
-
padding: 1.25em 1.5em;
|
|
146
|
-
margin: 0;
|
|
147
|
-
font-size: inherit;
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
& code {
|
|
151
|
-
margin: 0;
|
|
152
|
-
border-radius: var(--radius);
|
|
153
|
-
padding: 0.25rem 0.5rem;
|
|
154
|
-
font-size: 0.85em;
|
|
155
|
-
color: #476582;
|
|
156
|
-
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
|
|
157
|
-
background-color: rgb(27 31 35 / 0.05);
|
|
158
|
-
|
|
159
|
-
@nest .dark & {
|
|
160
|
-
background-color: rgb(var(--color-background-100));
|
|
161
|
-
color: rgb(var(--color-primary));
|
|
162
|
-
}
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
& ol {
|
|
166
|
-
margin: 0 0 1.5rem;
|
|
167
|
-
padding: 0 0 0 1rem;
|
|
168
|
-
|
|
169
|
-
&:not([type]) {
|
|
170
|
-
list-style: decimal;
|
|
171
|
-
}
|
|
172
|
-
|
|
173
|
-
& li {
|
|
174
|
-
padding-left: 0.5rem;
|
|
175
|
-
|
|
176
|
-
&::marker {
|
|
177
|
-
color: rgb(var(--color-accent));
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
& ul {
|
|
183
|
-
list-style-type: none !important;
|
|
184
|
-
margin: 0 0 1.5rem;
|
|
185
|
-
padding: 0;
|
|
186
|
-
|
|
187
|
-
& li {
|
|
188
|
-
position: relative;
|
|
189
|
-
line-height: inherit;
|
|
190
|
-
padding-left: 1.5rem;
|
|
191
|
-
|
|
192
|
-
&:not(:last-of-type) {
|
|
193
|
-
margin: 0 0 0.5rem;
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
&::before {
|
|
197
|
-
width: 0.25rem;
|
|
198
|
-
height: 0.25rem;
|
|
199
|
-
box-sizing: content-box;
|
|
200
|
-
position: absolute;
|
|
201
|
-
content: "";
|
|
202
|
-
border: 1px solid rgb(var(--color-accent));
|
|
203
|
-
background-color: rgb(var(--color-accent));
|
|
204
|
-
left: 0;
|
|
205
|
-
top: 0.625rem;
|
|
206
|
-
text-indent: 0;
|
|
207
|
-
border-radius: 50%;
|
|
208
|
-
}
|
|
209
|
-
}
|
|
210
|
-
|
|
211
|
-
&[style*="square"] {
|
|
212
|
-
& li {
|
|
213
|
-
&::before {
|
|
214
|
-
border-radius: 0;
|
|
215
|
-
}
|
|
216
|
-
}
|
|
217
|
-
}
|
|
218
|
-
|
|
219
|
-
&[style*="circle"] {
|
|
220
|
-
& li {
|
|
221
|
-
&::before {
|
|
222
|
-
border-radius: 50%;
|
|
223
|
-
background-color: transparent;
|
|
224
|
-
}
|
|
225
|
-
}
|
|
226
|
-
}
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
& .elm_text_table {
|
|
230
|
-
display: block;
|
|
231
|
-
|
|
232
|
-
@media (--media-m) {
|
|
233
|
-
max-width: 100%;
|
|
234
|
-
overflow: auto;
|
|
235
|
-
}
|
|
236
|
-
}
|
|
237
|
-
|
|
238
|
-
& .elm_text_video {
|
|
239
|
-
aspect-ratio: 16/9;
|
|
240
|
-
position: relative;
|
|
241
|
-
|
|
242
|
-
&::before {
|
|
243
|
-
content: "";
|
|
244
|
-
display: block;
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
& iframe {
|
|
248
|
-
position: absolute;
|
|
249
|
-
inset: 0;
|
|
250
|
-
width: 100%;
|
|
251
|
-
height: 100%;
|
|
252
|
-
}
|
|
253
|
-
}
|
|
254
|
-
}
|
|
1
|
+
@import "winduum/src/ui/text/index.css";
|
package/src/styles/Ui/Title.css
CHANGED
|
@@ -1,15 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
--ui-title-weight: var(--font-semibold);
|
|
6
|
-
|
|
7
|
-
display: block;
|
|
8
|
-
font-size: var(--ui-title-size);
|
|
9
|
-
line-height: calc(var(--ui-title-size) + var(--ui-title-size-line));
|
|
10
|
-
font-weight: var(--ui-title-weight);
|
|
11
|
-
|
|
12
|
-
&[class*="uppercase"] {
|
|
13
|
-
letter-spacing: var(--ui-title-spacing);
|
|
14
|
-
}
|
|
15
|
-
}
|
|
1
|
+
@import "winduum/src/ui/title/default.css";
|
|
2
|
+
@import "winduum/src/ui/title/default-props.css";
|
|
3
|
+
@import "winduum/src/ui/title/sm.css";
|
|
4
|
+
@import "winduum/src/ui/title/lg.css";
|
package/src/styles/Utils/+.css
CHANGED
|
@@ -1,10 +1,6 @@
|
|
|
1
|
-
@import "breakpoints.css";
|
|
2
|
-
@import "
|
|
3
|
-
@import "
|
|
4
|
-
@import "keyframes.css";
|
|
5
|
-
@import "
|
|
6
|
-
@import "
|
|
7
|
-
@import "tailwind/+.css";
|
|
8
|
-
@import "theme/+.css";
|
|
9
|
-
@import "vars.css";
|
|
10
|
-
@import "vendor.css";
|
|
1
|
+
@import "breakpoints.css";
|
|
2
|
+
@import "config.css";
|
|
3
|
+
@import "default.css";
|
|
4
|
+
@import "keyframes.css";
|
|
5
|
+
@import "theme/+.css";
|
|
6
|
+
@import "utilities.css";
|
|
@@ -1,9 +1 @@
|
|
|
1
|
-
@
|
|
2
|
-
@custom-media --media-t (min-width: 48em);
|
|
3
|
-
@custom-media --media-d (min-width: 60em);
|
|
4
|
-
@custom-media --media-w (min-width: 76em);
|
|
5
|
-
@custom-media --media-hd (min-width: 85em);
|
|
6
|
-
@custom-media --media-mhd (min-width: 88em);
|
|
7
|
-
@custom-media --media-fhd (min-width: 100em);
|
|
8
|
-
@custom-media --media-touch (max-width: 59.9375em);
|
|
9
|
-
@custom-media --media-touch-only (max-width: 59.9375em) and (min-width: 47.9375em);
|
|
1
|
+
@import "winduum/src/base/breakpoints.css";
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
@import "winduum/src/base/config/font.css";
|
|
2
|
+
@import "winduum/src/base/config/mask.css";
|
|
3
|
+
@import "winduum/src/base/config/rounded.css";
|
|
4
|
+
@import "winduum/src/base/config/spacing.css";
|
|
5
|
+
@import "winduum/src/base/config/text.css";
|
|
6
|
+
@import "winduum/src/base/config/transition.css";
|
|
7
|
+
@import "winduum/src/base/config/z.css";
|
|
8
|
+
|
|
9
|
+
:root, :host {
|
|
10
|
+
--container: min(100% - (var(--container-padding) * 2), var(--container-width));
|
|
11
|
+
--container-lg: min(100% - (var(--container-padding) * 2), var(--container-lg-width));
|
|
12
|
+
--container-width: 80rem;
|
|
13
|
+
--container-lg-width: 90rem;
|
|
14
|
+
--container-padding: 5vw;
|
|
15
|
+
--container-padding-calc: max(calc(50vw - (var(--container-width) / 2)), var(--container-padding));
|
|
16
|
+
}
|
|
@@ -1,37 +1,26 @@
|
|
|
1
|
-
|
|
2
|
-
color: rgb(var(--color-light));
|
|
3
|
-
background-color: rgb(var(--color-accent));
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
:where(*) {
|
|
7
|
-
outline: none;
|
|
8
|
-
-webkit-tap-highlight-color: rgb(255 255 255 / 0);
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
:where([hidden]) {
|
|
12
|
-
display: none;
|
|
13
|
-
}
|
|
1
|
+
@import "winduum/src/base/defaults.css";
|
|
14
2
|
|
|
15
3
|
:where(svg) {
|
|
16
|
-
stroke-width: 1.5;
|
|
17
4
|
display: block;
|
|
5
|
+
|
|
6
|
+
&:has([href]) {
|
|
7
|
+
stroke-width: 2;
|
|
8
|
+
stroke: currentcolor;
|
|
9
|
+
fill: none;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
&:has([href*="-solid"]) {
|
|
13
|
+
stroke: none;
|
|
14
|
+
fill: currentcolor;
|
|
15
|
+
}
|
|
18
16
|
}
|
|
19
17
|
|
|
20
|
-
:where(
|
|
18
|
+
:where(img) {
|
|
21
19
|
display: block;
|
|
22
|
-
|
|
23
|
-
border-radius: var(--rounded);
|
|
20
|
+
font-size: 0;
|
|
24
21
|
}
|
|
25
22
|
|
|
26
|
-
:where(ol, ul) {
|
|
23
|
+
:where(ol:not([type]), ul, menu) {
|
|
27
24
|
padding: 0;
|
|
28
25
|
margin: 0;
|
|
29
26
|
}
|
|
30
|
-
|
|
31
|
-
.grecaptcha-badge {
|
|
32
|
-
display: none;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
.google-map * {
|
|
36
|
-
border-style: none;
|
|
37
|
-
}
|
|
@@ -1,182 +1 @@
|
|
|
1
|
-
@keyframes
|
|
2
|
-
0% {
|
|
3
|
-
transform: rotate(0deg);
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
100% {
|
|
7
|
-
transform: rotate(360deg);
|
|
8
|
-
}
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
@keyframes move-indeterminate {
|
|
12
|
-
from {
|
|
13
|
-
background-position: 200% 0;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
to {
|
|
17
|
-
background-position: -200% 0;
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
@keyframes fade-in-left {
|
|
22
|
-
from {
|
|
23
|
-
opacity: 0;
|
|
24
|
-
transform: translateX(-5rem);
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
to {
|
|
28
|
-
opacity: 1;
|
|
29
|
-
transform: none;
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
@keyframes fade-in-right {
|
|
34
|
-
from {
|
|
35
|
-
opacity: 0;
|
|
36
|
-
transform: translateX(5rem);
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
to {
|
|
40
|
-
opacity: 1;
|
|
41
|
-
transform: none;
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
@keyframes fade-in-up {
|
|
46
|
-
0% {
|
|
47
|
-
opacity: 0;
|
|
48
|
-
transform: translateY(2rem);
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
100% {
|
|
52
|
-
opacity: 1;
|
|
53
|
-
transform: translateY(0);
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
@keyframes fade-in-down {
|
|
58
|
-
0% {
|
|
59
|
-
opacity: 0;
|
|
60
|
-
transform: translateY(-2rem);
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
100% {
|
|
64
|
-
opacity: 1;
|
|
65
|
-
transform: translateY(0);
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
@keyframes fade-out-left {
|
|
70
|
-
from {
|
|
71
|
-
opacity: 1;
|
|
72
|
-
transform: none;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
to {
|
|
76
|
-
opacity: 0;
|
|
77
|
-
transform: translateX(-5rem);
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
@keyframes fade-out-right {
|
|
82
|
-
from {
|
|
83
|
-
opacity: 1;
|
|
84
|
-
transform: none;
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
to {
|
|
88
|
-
opacity: 0;
|
|
89
|
-
transform: translateX(5rem);
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
@keyframes fade-out-up {
|
|
94
|
-
0% {
|
|
95
|
-
opacity: 1;
|
|
96
|
-
transform: translateY(0);
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
100% {
|
|
100
|
-
opacity: 0;
|
|
101
|
-
transform: translateY(-2rem);
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
@keyframes fade-out-down {
|
|
106
|
-
0% {
|
|
107
|
-
opacity: 1;
|
|
108
|
-
transform: translateY(0);
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
100% {
|
|
112
|
-
opacity: 0;
|
|
113
|
-
transform: translateY(2rem);
|
|
114
|
-
}
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
@keyframes fade-in {
|
|
118
|
-
from {
|
|
119
|
-
opacity: 0;
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
to {
|
|
123
|
-
opacity: 1;
|
|
124
|
-
}
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
@keyframes fade-out {
|
|
128
|
-
from {
|
|
129
|
-
opacity: 1;
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
to {
|
|
133
|
-
opacity: 0;
|
|
134
|
-
}
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
@keyframes slide-in-down {
|
|
138
|
-
0% {
|
|
139
|
-
transform: translateY(-100%);
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
100% {
|
|
143
|
-
transform: translateY(0);
|
|
144
|
-
}
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
@keyframes slide-out-up {
|
|
148
|
-
0% {
|
|
149
|
-
transform: translateY(0);
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
100% {
|
|
153
|
-
transform: translateY(-100%);
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
@keyframes slide-in-up {
|
|
158
|
-
0% {
|
|
159
|
-
transform: translateY(100%);
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
100% {
|
|
163
|
-
transform: translateY(0);
|
|
164
|
-
}
|
|
165
|
-
}
|
|
166
|
-
|
|
167
|
-
@keyframes slide-out-down {
|
|
168
|
-
0% {
|
|
169
|
-
transform: translateY(0);
|
|
170
|
-
}
|
|
171
|
-
|
|
172
|
-
100% {
|
|
173
|
-
transform: translateY(100%);
|
|
174
|
-
}
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
@keyframes ripple {
|
|
178
|
-
100% {
|
|
179
|
-
transform: scale(2.5);
|
|
180
|
-
opacity: 0;
|
|
181
|
-
}
|
|
182
|
-
}
|
|
1
|
+
@import "winduum/src/base/keyframes.css";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@import "main.css";
|
|
1
|
+
@import "main.css";
|
|
@@ -1,28 +1,33 @@
|
|
|
1
|
-
:root {
|
|
1
|
+
:root, :host {
|
|
2
|
+
--font-primary: "Poppins", sans-serif;
|
|
3
|
+
--font-secondary: "Poppins", sans-serif;
|
|
4
|
+
--space: srgb;
|
|
5
|
+
--scheme: dark;
|
|
2
6
|
--color-accent: var(--color-primary);
|
|
3
|
-
--color-
|
|
4
|
-
--color-
|
|
5
|
-
--color-
|
|
6
|
-
--color-
|
|
7
|
-
--color-
|
|
8
|
-
--color-
|
|
9
|
-
--color-
|
|
10
|
-
--color-
|
|
11
|
-
--color-
|
|
12
|
-
--color-
|
|
13
|
-
--color-
|
|
14
|
-
--color-
|
|
15
|
-
--color-
|
|
16
|
-
--color-
|
|
17
|
-
--color-
|
|
7
|
+
--color-accent-foreground: var(--color-primary-foreground);
|
|
8
|
+
--color-primary: #83cd4f;
|
|
9
|
+
--color-primary-foreground: var(--color-dark);
|
|
10
|
+
--color-main: #111315;
|
|
11
|
+
--color-main-foreground: var(--color-body);
|
|
12
|
+
--color-main-primary: var(--color-main);
|
|
13
|
+
--color-main-secondary: color-mix(in var(--space), var(--color-main) 75%, var(--color-main-foreground));
|
|
14
|
+
--color-main-tertiary: color-mix(in var(--space), var(--color-main) 50%, var(--color-main-foreground));
|
|
15
|
+
--color-body: #fff;
|
|
16
|
+
--color-body-foreground: var(--color-main);
|
|
17
|
+
--color-body-primary: var(--color-body);
|
|
18
|
+
--color-body-secondary: color-mix(in var(--space), var(--color-body) 95%, var(--color-body-foreground));
|
|
19
|
+
--color-body-tertiary: color-mix(in var(--space), var(--color-body) 90%, var(--color-body-foreground));
|
|
20
|
+
--color-light: #fff;
|
|
21
|
+
--color-light-foreground: var(--color-dark);
|
|
22
|
+
--color-dark: #111315;
|
|
23
|
+
--color-dark-foreground: var(--color-light);
|
|
24
|
+
--color-success: #16a34a;
|
|
25
|
+
--color-error: #dc2626;
|
|
26
|
+
--color-warning: #eab308;
|
|
27
|
+
--color-info: #0ea5e9;
|
|
18
28
|
|
|
19
29
|
&.dark {
|
|
20
|
-
--color-
|
|
21
|
-
--color-
|
|
22
|
-
--color-secondary: 39 41 46;
|
|
23
|
-
--color-background: 14 17 22;
|
|
24
|
-
--color-background-100: 23 27 34;
|
|
25
|
-
--color-background-200: 26 32 38;
|
|
26
|
-
--color-background-300: 30 36 46;
|
|
30
|
+
--color-main: #c9d1d9;
|
|
31
|
+
--color-body: #0e1116;
|
|
27
32
|
}
|
|
28
33
|
}
|