@phila/phila-ui-core 2.1.1 → 2.2.0-beta.2
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/dist/BaseLink.css +1 -0
- package/dist/BaseLink.vue_vue_type_script_setup_true_lang-CXQJyB5W.js +225 -0
- package/dist/BaseLink.vue_vue_type_script_setup_true_lang-CexJ6lNf.cjs +1 -0
- package/dist/classNames-CcykAxZN.js +6 -0
- package/dist/classNames-GLLmlfI4.cjs +1 -0
- package/dist/collapse-ApWEJVnD.cjs +1 -0
- package/dist/collapse-BvsHwQBu.js +74 -0
- package/dist/components.d.ts +162 -1
- package/dist/components.js +1 -1
- package/dist/components.mjs +7 -109
- package/dist/composables.d.ts +100 -0
- package/dist/composables.js +1 -1
- package/dist/composables.mjs +6 -2
- package/dist/index.d.ts +356 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +19 -2
- package/dist/styles/elements/buttons.css +230 -0
- package/dist/styles/elements/icons.css +53 -0
- package/dist/styles/elements/index.css +3 -0
- package/dist/styles/elements/links.css +87 -0
- package/dist/styles/generated/extended-colors.css +11 -0
- package/dist/styles/generated/other.css +111 -0
- package/dist/styles/generated/palettes.css +140 -0
- package/dist/styles/generated/primitives.css +293 -0
- package/dist/styles/generated/schemes.css +58 -0
- package/dist/styles/generated/sizes.css +44 -0
- package/dist/styles/generated/typography.css +281 -0
- package/dist/styles/legacy.css +39 -0
- package/dist/styles/raw/PhilaUI 4.0-variables.css +3543 -0
- package/dist/styles/template-light.css +6 -2
- package/dist/styles/template-orange.css +4 -2
- package/dist/styles/tokens.css +39 -0
- package/dist/styles/typography.css +45 -0
- package/dist/styles/utilities/color.css +26 -0
- package/dist/styles/utilities/containers.css +158 -0
- package/dist/styles/utilities/index.css +4 -0
- package/dist/styles/utilities/spacing.css +433 -0
- package/dist/styles/utilities/text.css +177 -0
- package/dist/useRouter-BVKwor6C.js +50 -0
- package/dist/useRouter-C4oT8vFk.cjs +1 -0
- package/dist/utils.d.ts +71 -0
- package/dist/utils.js +1 -1
- package/dist/utils.mjs +17 -3
- package/package.json +25 -13
- package/dist/components.css +0 -1
- package/dist/index-DkaNsoLU.cjs +0 -5
- package/dist/index-dajx1Lu4.js +0 -1718
- package/dist/styles/light-mode.css +0 -106
- package/dist/styles/variables.css +0 -92
|
@@ -0,0 +1,230 @@
|
|
|
1
|
+
.phila-button {
|
|
2
|
+
/* --- Base styles --- */
|
|
3
|
+
display: inline-flex;
|
|
4
|
+
justify-content: center;
|
|
5
|
+
align-items: center;
|
|
6
|
+
flex-shrink: 0;
|
|
7
|
+
cursor: pointer;
|
|
8
|
+
overflow: hidden;
|
|
9
|
+
white-space: nowrap;
|
|
10
|
+
box-sizing: border-box;
|
|
11
|
+
|
|
12
|
+
/* --- Text styles --- */
|
|
13
|
+
color: var(--Schemes-On-Primary-Container);
|
|
14
|
+
font-family: var(--Label-Default-font-label-default-family, Montserrat);
|
|
15
|
+
font-size: var(--Label-Default-font-label-default-size, 1rem);
|
|
16
|
+
font-style: normal;
|
|
17
|
+
font-weight: 600;
|
|
18
|
+
line-height: var(--Label-Default-font-label-default-lineheight);
|
|
19
|
+
|
|
20
|
+
/* --- Reset button --- */
|
|
21
|
+
border: none;
|
|
22
|
+
/* Corrects font smoothing for webkit */
|
|
23
|
+
-webkit-font-smoothing: inherit;
|
|
24
|
+
-moz-osx-font-smoothing: inherit;
|
|
25
|
+
/* Corrects inability to style clickable `input` types in iOS */
|
|
26
|
+
appearance: none;
|
|
27
|
+
-webkit-appearance: none;
|
|
28
|
+
|
|
29
|
+
/* --- Reset link styles --- */
|
|
30
|
+
text-decoration: none;
|
|
31
|
+
|
|
32
|
+
/* Prevent visited link color changes - maintain button color */
|
|
33
|
+
&:visited:not(:hover):not(:focus):not(:active) {
|
|
34
|
+
color: var(--Schemes-On-Primary-Container);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
/* --- Sizing --- */
|
|
38
|
+
height: var(--spacing-6xl, 3.25rem);
|
|
39
|
+
max-width: 18.75rem;
|
|
40
|
+
padding: var(--spacing-l, 0.5rem) var(--spacing-3xl);
|
|
41
|
+
|
|
42
|
+
&.is-medium {
|
|
43
|
+
height: var(--spacing-5xl, 3rem);
|
|
44
|
+
padding: var(--spacing-m, 0.75rem) var(--spacing-xxl);
|
|
45
|
+
}
|
|
46
|
+
&.is-small {
|
|
47
|
+
height: var(--spacing-3xl);
|
|
48
|
+
padding: var(--spacing-s) var(--spacing-l);
|
|
49
|
+
}
|
|
50
|
+
&.is-extra-small:not(.icon-button) {
|
|
51
|
+
color: var(--Schemes-Primary-Container);
|
|
52
|
+
height: var(--spacing-xxl);
|
|
53
|
+
padding: var(--spacing-xxs);
|
|
54
|
+
background-color: var(--Schemes-Surface-Container-Lowest) !important;
|
|
55
|
+
font-family: var(--Label-Default-font-label-default-family, Montserrat);
|
|
56
|
+
font-size: var(--Label-Small-font-label-small-size);
|
|
57
|
+
font-style: normal;
|
|
58
|
+
font-weight: 600;
|
|
59
|
+
line-height: var(--Label-Small-font-label-small-lineheight);
|
|
60
|
+
border-color: var(--Schemes-Surface-Container-Lowest);
|
|
61
|
+
border-width: var(--spacing-xxs);
|
|
62
|
+
border-style: solid;
|
|
63
|
+
box-sizing: border-box;
|
|
64
|
+
border-left: none;
|
|
65
|
+
border-right: none;
|
|
66
|
+
&:focus:not(:disabled),
|
|
67
|
+
&:hover:not(:disabled) {
|
|
68
|
+
--Schemes-On-Primary-Container: --Schemes-Inverse-Surface;
|
|
69
|
+
color: var(--Schemes-Inverse-Surface) !important;
|
|
70
|
+
border-bottom-color: var(--Schemes-Inverse-Surface) !important;
|
|
71
|
+
}
|
|
72
|
+
&:active:not(:disabled) {
|
|
73
|
+
color: var(--Schemes-Secondary-Container) !important;
|
|
74
|
+
box-sizing: border-box;
|
|
75
|
+
border: none;
|
|
76
|
+
}
|
|
77
|
+
&:disabled {
|
|
78
|
+
color: var(--Schemes-Surface-Container-High);
|
|
79
|
+
}
|
|
80
|
+
&.phila-button--destructive:not(:active) {
|
|
81
|
+
color: var(--Schemes-Error-Container);
|
|
82
|
+
}
|
|
83
|
+
&:visited:not(:hover):not(:focus):not(:active) {
|
|
84
|
+
color: var(--Schemes-Primary-Container);
|
|
85
|
+
}
|
|
86
|
+
&.phila-button--destructive:visited:not(:hover):not(:focus):not(:active) {
|
|
87
|
+
color: var(--Schemes-Error-Container);
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
/* --- States --- */
|
|
91
|
+
&:hover:not(:disabled):not(.is-extra-small),
|
|
92
|
+
&:focus:not(:disabled):not(.is-extra-small),
|
|
93
|
+
&.icon-button:hover:not(:disabled),
|
|
94
|
+
&.icon-button:focus:not(:disabled) {
|
|
95
|
+
&:not(:active):not(.phila-button--secondary):not(.icon-button--standard) {
|
|
96
|
+
background: var(--Schemes-On-Surface-Variant) !important;
|
|
97
|
+
color: var(--Schemes-On-Primary-Container) !important;
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
&:active:not(:disabled):not(.is-extra-small) {
|
|
101
|
+
color: var(--Schemes-On-Primary-Container) !important;
|
|
102
|
+
background: var(--Schemes-Secondary-Container) !important;
|
|
103
|
+
}
|
|
104
|
+
&:disabled,
|
|
105
|
+
&[aria-disabled="true"] {
|
|
106
|
+
background: var(--Schemes-Surface-Container-High) !important;
|
|
107
|
+
cursor: not-allowed;
|
|
108
|
+
pointer-events: none;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
/* --- Variants --- */
|
|
112
|
+
&.phila-button--primary:not(:disabled) {
|
|
113
|
+
background: var(--Schemes-Primary-Container);
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
&.phila-button--secondary:not(:disabled) {
|
|
117
|
+
color: var(--Schemes-Primary);
|
|
118
|
+
background: var(--Schemes-Surface-Container-Lowest);
|
|
119
|
+
&:not(:active) {
|
|
120
|
+
border: var(--spacing-xxs) solid var(--Schemes-Primary);
|
|
121
|
+
}
|
|
122
|
+
&:active:not(:disabled):not(.is-extra-small) {
|
|
123
|
+
border-right: var(--spacing-xxs) solid var(--Schemes-Surface-Container-Lowest);
|
|
124
|
+
border-left: var(--spacing-xxs) solid var(--Schemes-Surface-Container-Lowest);
|
|
125
|
+
}
|
|
126
|
+
&:hover:not(:disabled),
|
|
127
|
+
&:focus:not(:disabled) {
|
|
128
|
+
color: var(--Schemes-On-Primary-Container);
|
|
129
|
+
background: var(--Schemes-On-Surface-Variant);
|
|
130
|
+
}
|
|
131
|
+
&:visited:not(:hover):not(:focus):not(:active) {
|
|
132
|
+
color: var(--Schemes-Primary);
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
&.phila-button--destructive:not(:disabled) {
|
|
137
|
+
&:not(.is-extra-small) {
|
|
138
|
+
background: var(--Schemes-Error-Container);
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
/* --- Icon Buttons --- */
|
|
143
|
+
&.icon-button {
|
|
144
|
+
padding: 0;
|
|
145
|
+
height: 3.75rem;
|
|
146
|
+
width: 3.75rem;
|
|
147
|
+
|
|
148
|
+
&.is-extra-large {
|
|
149
|
+
height: 5rem;
|
|
150
|
+
width: 5rem;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
&.is-large {
|
|
154
|
+
height: 3.75rem;
|
|
155
|
+
width: 3.75rem;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
&.is-medium {
|
|
159
|
+
height: 3rem;
|
|
160
|
+
width: 3rem;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
&.is-small {
|
|
164
|
+
height: 2rem;
|
|
165
|
+
width: 2rem;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
&.is-extra-small {
|
|
169
|
+
width: 1.5rem;
|
|
170
|
+
height: 1.5rem;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
&.icon-button--standard:not(:disabled) {
|
|
174
|
+
color: var(--Schemes-Primary, #003282);
|
|
175
|
+
background: var(--Schemes-Surface-Container-Lowest);
|
|
176
|
+
&:visited:not(:hover):not(:focus):not(:active) {
|
|
177
|
+
color: var(--Schemes-Primary, #003282);
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
&.phila-button--destructive:not(:disabled) {
|
|
181
|
+
color: var(--Schemes-On-Error-Container) !important;
|
|
182
|
+
background: var(--Schemes-Error-Container);
|
|
183
|
+
}
|
|
184
|
+
&:active:not(:disabled) {
|
|
185
|
+
color: var(--Schemes-On-Secondary-Container) !important;
|
|
186
|
+
background: var(--Schemes-Secondary-Container) !important;
|
|
187
|
+
box-sizing: border-box;
|
|
188
|
+
border: none;
|
|
189
|
+
}
|
|
190
|
+
&:hover:not(:disabled),
|
|
191
|
+
&:focus:not(:disabled) {
|
|
192
|
+
&.phila-button--secondary,
|
|
193
|
+
&.icon-button--standard {
|
|
194
|
+
color: var(--Schemes-Primary);
|
|
195
|
+
background: var(--Schemes-Surface-Container);
|
|
196
|
+
border-color: transparent;
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
/* Icon positioning within buttons */
|
|
202
|
+
span.icon:first-child:not(:last-child) {
|
|
203
|
+
margin-left: 0;
|
|
204
|
+
margin-right: var(--spacing-s);
|
|
205
|
+
+ span {
|
|
206
|
+
padding-right: var(--spacing-s);
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
span.icon:last-child:not(:first-child) {
|
|
210
|
+
margin: 0;
|
|
211
|
+
padding: 0;
|
|
212
|
+
}
|
|
213
|
+
span:not([class="icon"]:only-child) {
|
|
214
|
+
padding: 0 !important;
|
|
215
|
+
}
|
|
216
|
+
span:first-child:not([class="icon"]) {
|
|
217
|
+
margin-left: 0 !important;
|
|
218
|
+
margin-right: 0 !important;
|
|
219
|
+
padding-left: var(--spacing-s);
|
|
220
|
+
text-overflow: ellipsis;
|
|
221
|
+
overflow: hidden;
|
|
222
|
+
+ span {
|
|
223
|
+
margin-left: var(--spacing-s) !important;
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
&:focus {
|
|
227
|
+
outline-offset: var(--spacing-xs);
|
|
228
|
+
outline: var(--stroke-stroke-thin, 2px) solid var(--Schemes-Primary-Container);
|
|
229
|
+
}
|
|
230
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
/* Base icon styles */
|
|
2
|
+
.phila-icon {
|
|
3
|
+
display: inline-flex;
|
|
4
|
+
justify-content: center;
|
|
5
|
+
align-items: center;
|
|
6
|
+
font-style: normal;
|
|
7
|
+
font-weight: 900;
|
|
8
|
+
line-height: normal;
|
|
9
|
+
font-size: var(--Icon-Solid-Small-font-icon-solid-small-size);
|
|
10
|
+
height: 2rem;
|
|
11
|
+
width: 2rem;
|
|
12
|
+
padding: var(--spacing-s);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
/* Icon size variants */
|
|
16
|
+
.phila-icon--extra-large {
|
|
17
|
+
font-size: var(--Icon-Solid-ExtraLarge-font-icon-solid-xl-size);
|
|
18
|
+
height: 5rem;
|
|
19
|
+
width: 5rem;
|
|
20
|
+
padding: var(--spacing-xl);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.phila-icon--large {
|
|
24
|
+
font-size: var(--Icon-Solid-Large-font-icon-solid-large-size);
|
|
25
|
+
height: 3.75rem;
|
|
26
|
+
width: 3.75rem;
|
|
27
|
+
padding: var(--spacing-m);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.phila-icon--medium {
|
|
31
|
+
font-size: var(--Icon-Solid-Default-font-icon-solid-default-size);
|
|
32
|
+
height: 3rem;
|
|
33
|
+
width: 3rem;
|
|
34
|
+
padding: var(--spacing-m);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.phila-icon--small {
|
|
38
|
+
font-size: var(--Icon-Solid-Small-font-icon-solid-small-size);
|
|
39
|
+
height: 2rem;
|
|
40
|
+
width: 2rem;
|
|
41
|
+
padding: var(--spacing-s);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.phila-icon--extra-small {
|
|
45
|
+
font-size: var(--Icon-Solid-XXSmall-font-icon-solid-xxs-size);
|
|
46
|
+
height: 1.5rem;
|
|
47
|
+
width: 1.5rem;
|
|
48
|
+
padding: var(--scale-xsmall);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.phila-icon.phila-icon--inline {
|
|
52
|
+
padding: 0;
|
|
53
|
+
}
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
/* Base link component styles */
|
|
2
|
+
.phila-link {
|
|
3
|
+
color: var(--Extended-Colors-link-default, #2176d2);
|
|
4
|
+
text-decoration: underline;
|
|
5
|
+
cursor: pointer;
|
|
6
|
+
display: flex;
|
|
7
|
+
align-items: center;
|
|
8
|
+
transition:
|
|
9
|
+
color 0.2s ease,
|
|
10
|
+
text-decoration-color 0.2s ease;
|
|
11
|
+
|
|
12
|
+
/* Variant - sets CSS variables (same as .has-background-primary does for containers) */
|
|
13
|
+
&.phila-link--on-primary {
|
|
14
|
+
--Extended-Colors-link-default: var(--Extended-Colors-link-default-on-primary);
|
|
15
|
+
--Extended-Colors-link-hover: var(--Extended-Colors-link-hover-on-primary);
|
|
16
|
+
--Extended-Colors-link-visited: var(--Extended-Colors-link-visited-on-primary);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
/* Pseudo-classes - LVHA order: visited before hover so hover wins */
|
|
20
|
+
&:visited {
|
|
21
|
+
color: var(--Extended-Colors-link-visited, #4b0083);
|
|
22
|
+
text-decoration-color: var(--Extended-Colors-link-visited, #4b0083);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
&:hover {
|
|
26
|
+
color: var(--Extended-Colors-link-hover, #000);
|
|
27
|
+
text-decoration-color: var(--Extended-Colors-link-hover, #000);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
&:focus-visible {
|
|
31
|
+
outline: 2px solid var(--Extended-Colors-link-hover, #000);
|
|
32
|
+
outline-offset: 2px;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
&.is-disabled {
|
|
36
|
+
opacity: 0.5;
|
|
37
|
+
pointer-events: none;
|
|
38
|
+
cursor: not-allowed;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
&.icon-link {
|
|
42
|
+
display: inline-flex;
|
|
43
|
+
align-items: center;
|
|
44
|
+
gap: var(--spacing-xs, 0.25rem);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
/* Size variants */
|
|
48
|
+
&.is-extra-large {
|
|
49
|
+
font-family: var(--Link-on-Surface-Large-font-link-on-surface-large-family, Montserrat);
|
|
50
|
+
font-size: var(--Link-on-Surface-Large-font-link-on-surface-large-size, 1.125rem);
|
|
51
|
+
font-style: normal;
|
|
52
|
+
font-weight: 700;
|
|
53
|
+
line-height: var(--Link-on-Surface-Large-font-link-on-surface-large-lineheight, 1.75rem);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
&.is-large {
|
|
57
|
+
font-family: var(--Link-on-Surface-Large-font-link-on-surface-large-family, Montserrat);
|
|
58
|
+
font-size: var(--Link-on-Surface-Large-font-link-on-surface-large-size, 1.125rem);
|
|
59
|
+
font-style: normal;
|
|
60
|
+
font-weight: 700;
|
|
61
|
+
line-height: var(--Link-on-Surface-Large-font-link-on-surface-large-lineheight, 1.75rem);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
&.is-medium {
|
|
65
|
+
font-family: var(--Link-on-Surface-Default-font-link-on-surface-default-family, Montserrat);
|
|
66
|
+
font-size: var(--Link-on-Surface-Default-font-link-on-surface-default-size, 1rem);
|
|
67
|
+
font-style: normal;
|
|
68
|
+
font-weight: 700;
|
|
69
|
+
line-height: var(--Link-on-Surface-Default-font-link-on-surface-default-lineheight, 1.5rem);
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
&.is-small {
|
|
73
|
+
font-family: var(--Link-on-Surface-Small-font-link-on-surface-small-family, Montserrat);
|
|
74
|
+
font-size: var(--Link-on-Surface-Small-font-link-on-surface-small-size, 0.875rem);
|
|
75
|
+
font-style: normal;
|
|
76
|
+
font-weight: 700;
|
|
77
|
+
line-height: var(--Link-on-Surface-Small-font-link-on-surface-small-lineheight, 1.25rem);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
&.is-extra-small {
|
|
81
|
+
font-family: var(--Link-on-Surface-font-link-family, Montserrat);
|
|
82
|
+
font-size: var(--Link-on-Surface-ExtraSmall-font-link-on-surface-xs-size, 0.75rem);
|
|
83
|
+
font-style: normal;
|
|
84
|
+
font-weight: 700;
|
|
85
|
+
line-height: var(--Body-ExtraSmall-font-body-xs-lineheight, 1rem);
|
|
86
|
+
}
|
|
87
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
/* extended-colors */
|
|
3
|
+
/* Generated from Figma CSS export - references preserved */
|
|
4
|
+
|
|
5
|
+
--Extended-Colors-Black: var(--black-400-black);
|
|
6
|
+
--Extended-Colors-Black-Container: var(--black-450-black);
|
|
7
|
+
--Extended-Colors-link-default: var(--Schemes-Primary);
|
|
8
|
+
--Extended-Colors-link-hover: var(--Schemes-On-Surface);
|
|
9
|
+
--Extended-Colors-link-visited: var(--Palettes-Visited-Visited-450);
|
|
10
|
+
--Extended-Colors-White: var(--white-400-white);
|
|
11
|
+
}
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
/* other */
|
|
3
|
+
/* Generated from Figma CSS export - references preserved */
|
|
4
|
+
|
|
5
|
+
--border-left-right: 0;
|
|
6
|
+
--border-radius-l: var(--sizes-scale-200);
|
|
7
|
+
--border-radius-m: var(--sizes-scale-150);
|
|
8
|
+
--border-radius-s: var(--sizes-scale-100);
|
|
9
|
+
--border-radius-xl: var(--sizes-scale-300);
|
|
10
|
+
--border-radius-xs: var(--sizes-scale-50);
|
|
11
|
+
--border-top-bottom: 0;
|
|
12
|
+
--border-width-2xl: var(--sizes-scale-100);
|
|
13
|
+
--border-width-2xs: var(--sizes-xxsmall);
|
|
14
|
+
--border-width-l: var(--sizes-scale-50);
|
|
15
|
+
--border-width-m: var(--sizes-scale-25);
|
|
16
|
+
--border-width-s: var(--sizes-scale-10);
|
|
17
|
+
--border-width-xl: var(--sizes-scale-75);
|
|
18
|
+
--border-width-xs: var(--sizes-scale-0);
|
|
19
|
+
--Breadcrumb-Boolean: 0;
|
|
20
|
+
--Breadcrumb-Chevron-Visible: 0;
|
|
21
|
+
--Breadcrumb-Home-Visible: 1;
|
|
22
|
+
--Breadcrumb-Link-1: "Services";
|
|
23
|
+
--Breadcrumb-Link-2: "Cars, parking & transportation";
|
|
24
|
+
--Breadcrumb-Link-3: "Apply for a parking permit";
|
|
25
|
+
--Breadcrumb-Link-4: "Link 4";
|
|
26
|
+
--Breadcrumb-Link-5: "Link 5";
|
|
27
|
+
--Breadcrumb-Link-6: "Link 6";
|
|
28
|
+
--Breadcrumb-Links-Visible: 1;
|
|
29
|
+
--Breadcrumb-Text: "Apply for a Temporary No Parking (TNP) permit";
|
|
30
|
+
--Breadcrumb-Text-Visible: 1;
|
|
31
|
+
--breakpoints-2xl: 1920px;
|
|
32
|
+
--breakpoints-l: 1024px;
|
|
33
|
+
--breakpoints-m: 768px;
|
|
34
|
+
--breakpoints-s: 375px;
|
|
35
|
+
--breakpoints-xl: 1440px;
|
|
36
|
+
--breakpoints-xs: 162px;
|
|
37
|
+
--button-buttom-tertiary: 1;
|
|
38
|
+
--button-button: 1;
|
|
39
|
+
--button-button-primary: 1;
|
|
40
|
+
--button-button-secondary: 1;
|
|
41
|
+
--Card-media-exdent: 0;
|
|
42
|
+
--checkbox: 1;
|
|
43
|
+
--content-color: var(--Schemes-On-Surface);
|
|
44
|
+
--date: 1;
|
|
45
|
+
--dimension-core-0: 0;
|
|
46
|
+
--dimension-core-100: 8px;
|
|
47
|
+
--dimension-core-1000: 80px;
|
|
48
|
+
--dimension-core-150: 12px;
|
|
49
|
+
--dimension-core-175: 14px;
|
|
50
|
+
--dimension-core-200: 16px;
|
|
51
|
+
--dimension-core-25: 2px;
|
|
52
|
+
--dimension-core-250: 20px;
|
|
53
|
+
--dimension-core-300: 24px;
|
|
54
|
+
--dimension-core-400: 32px;
|
|
55
|
+
--dimension-core-50: 4px;
|
|
56
|
+
--dimension-core-500: 40px;
|
|
57
|
+
--dimension-core-600: 48px;
|
|
58
|
+
--dimension-core-75: 6px;
|
|
59
|
+
--dimension-core-800: 64px;
|
|
60
|
+
--flag-layout: "Standard";
|
|
61
|
+
--Footer-Column-1-City-Commissioners: "City Commissioners";
|
|
62
|
+
--Footer-Column-1-City-Controller: "City Controller";
|
|
63
|
+
--Footer-Column-1-City-Council: "City Council";
|
|
64
|
+
--Footer-Column-1-Courts: "Courts";
|
|
65
|
+
--Footer-Column-1-District-Attorney: "District Attorney";
|
|
66
|
+
--Footer-Column-1-Mayor: "Mayor";
|
|
67
|
+
--Footer-Column-1-Register-of-Wills: "Register of Wills";
|
|
68
|
+
--Footer-Column-1-Sheriff: "Sheriff";
|
|
69
|
+
--Footer-Column-2-City-agency-regulations: "City agency regulations";
|
|
70
|
+
--Footer-Column-2-City-organization-chart: "City organization chart";
|
|
71
|
+
--Footer-Column-2-City-records: "City records";
|
|
72
|
+
--Footer-Column-2-Executive-orders: "Executive orders";
|
|
73
|
+
--Footer-Column-2-Honesty-in-government: "Honesty in government";
|
|
74
|
+
--Footer-Column-2-Open-data: "Open data";
|
|
75
|
+
--Footer-Column-2-Philadelphia-Code-Charter: "Philadelphia Code & Charter";
|
|
76
|
+
--Footer-Column-2-Voting-and-elections: "Voting & elections";
|
|
77
|
+
--Footer-Column-3-SEPTA: "SEPTA";
|
|
78
|
+
--Footer-Column-3-Visit-Philadelphia: "Visit Philadelphia";
|
|
79
|
+
--Footer-Footer-Icon: 1;
|
|
80
|
+
--Footer-footer-width: 1440px;
|
|
81
|
+
--Footer-horz-rule: 0;
|
|
82
|
+
--Footer-Sub-Footer-Accessibility: "Accessibility";
|
|
83
|
+
--Footer-Sub-Footer-Privacy-policy: "Privacy policy";
|
|
84
|
+
--Footer-Sub-Footer-Right-to-know: "Right to know";
|
|
85
|
+
--Footer-Sub-Footer-Terms-of-use: "Terms of use";
|
|
86
|
+
--Footer-vert-rule: 1;
|
|
87
|
+
--Header-Content-Language-LInk-Label: "English";
|
|
88
|
+
--Header-Content-Trusted-Banner-Copy: "Here's how you know";
|
|
89
|
+
--Header-Content-Trusted-Banner-Icon: "caret-down";
|
|
90
|
+
--Header-Display-Language-Links-Visible: 1;
|
|
91
|
+
--Header-Display-Mayor-Link-Visible: 1;
|
|
92
|
+
--Header-Display-Mobile-Globe-Visible: 0;
|
|
93
|
+
--Header-Display-Nav-Link-Visible: 1;
|
|
94
|
+
--Header-Display-Trusted-Banner-Text-Visible: 1;
|
|
95
|
+
--Header-Menu-Button-Color: rgb(255, 255, 255);
|
|
96
|
+
--Header-Size-Header-Width: 1440px;
|
|
97
|
+
--headline: 1;
|
|
98
|
+
--height: 1064px;
|
|
99
|
+
--Hover-Alternative-Nested-Off: 0;
|
|
100
|
+
--Hover-Alternative-Nested-On: 1;
|
|
101
|
+
--Icon-bars: "bars";
|
|
102
|
+
--image: 1;
|
|
103
|
+
--link: 1;
|
|
104
|
+
--Links-Color: rgb(255, 255, 255);
|
|
105
|
+
--media: 1;
|
|
106
|
+
--play-button: 1;
|
|
107
|
+
--radius: var(--border-radius-l);
|
|
108
|
+
--surface-color: var(--Schemes-Surface-Bright);
|
|
109
|
+
--top-icon: 1;
|
|
110
|
+
--width: 640px;
|
|
111
|
+
}
|
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
/* palettes */
|
|
3
|
+
/* Generated from Figma CSS export - references preserved */
|
|
4
|
+
|
|
5
|
+
--Palettes-Alert-Alert-100: var(--bell-yellow-100-bell-yellow);
|
|
6
|
+
--Palettes-Alert-Alert-150: var(--bell-yellow-150-bell-yellow);
|
|
7
|
+
--Palettes-Alert-Alert-200: var(--bell-yellow-200-bell-yellow);
|
|
8
|
+
--Palettes-Alert-Alert-250: var(--bell-yellow-250-bell-yellow);
|
|
9
|
+
--Palettes-Alert-Alert-300: var(--bell-yellow-300-bell-yellow);
|
|
10
|
+
--Palettes-Alert-Alert-350: var(--bell-yellow-350-bell-yellow);
|
|
11
|
+
--Palettes-Alert-Alert-400: var(--bell-yellow-400-bell-yellow);
|
|
12
|
+
--Palettes-Alert-Alert-450: var(--bell-yellow-450-bell-yellow);
|
|
13
|
+
--Palettes-Alert-Alert-50: var(--bell-yellow-50-bell-yellow);
|
|
14
|
+
--Palettes-Alert-Alert-500: var(--bell-yellow-500-bell-yellow);
|
|
15
|
+
--Palettes-Alert-Alert-550: var(--bell-yellow-550-bell-yellow);
|
|
16
|
+
--Palettes-Alert-Alert-600: var(--bell-yellow-600-bell-yellow);
|
|
17
|
+
--Palettes-Alert-Alert-650: var(--bell-yellow-650-bell-yellow);
|
|
18
|
+
--Palettes-Alert-Alert-700: var(--bell-yellow-700-bell-yellow);
|
|
19
|
+
--Palettes-Alert-Alert-750: var(--bell-yellow-750-bell-yellow);
|
|
20
|
+
--Palettes-Error-Error-100: var(--red-100-red);
|
|
21
|
+
--Palettes-Error-Error-150: var(--red-150-red);
|
|
22
|
+
--Palettes-Error-Error-200: var(--red-200-red);
|
|
23
|
+
--Palettes-Error-Error-250: var(--red-250-red);
|
|
24
|
+
--Palettes-Error-Error-300: var(--red-300-red);
|
|
25
|
+
--Palettes-Error-Error-350: var(--red-350-red);
|
|
26
|
+
--Palettes-Error-Error-400: var(--red-400-red);
|
|
27
|
+
--Palettes-Error-Error-450: var(--red-450-red);
|
|
28
|
+
--Palettes-Error-Error-50: var(--red-50-red);
|
|
29
|
+
--Palettes-Error-Error-500: var(--red-500-red);
|
|
30
|
+
--Palettes-Error-Error-550: var(--red-550-red);
|
|
31
|
+
--Palettes-Error-Error-600: var(--red-600-red);
|
|
32
|
+
--Palettes-Error-Error-650: var(--red-650-red);
|
|
33
|
+
--Palettes-Error-Error-700: var(--red-700-red);
|
|
34
|
+
--Palettes-Error-Error-750: var(--red-750-red);
|
|
35
|
+
--Palettes-Neutral-Neutral-100: var(--medium-grey-100-medium-grey);
|
|
36
|
+
--Palettes-Neutral-Neutral-150: var(--medium-grey-150-medium-grey);
|
|
37
|
+
--Palettes-Neutral-Neutral-200: var(--medium-grey-200-medium-grey);
|
|
38
|
+
--Palettes-Neutral-Neutral-250: var(--medium-grey-250-medium-grey);
|
|
39
|
+
--Palettes-Neutral-Neutral-300: var(--medium-grey-300-medium-grey);
|
|
40
|
+
--Palettes-Neutral-Neutral-350: var(--medium-grey-350-medium-grey);
|
|
41
|
+
--Palettes-Neutral-Neutral-400: var(--medium-grey-400-medium-grey);
|
|
42
|
+
--Palettes-Neutral-Neutral-450: var(--medium-grey-450-medium-grey);
|
|
43
|
+
--Palettes-Neutral-Neutral-50: var(--medium-grey-50-medium-grey);
|
|
44
|
+
--Palettes-Neutral-Neutral-500: var(--medium-grey-500-medium-grey);
|
|
45
|
+
--Palettes-Neutral-Neutral-550: var(--medium-grey-550-medium-grey);
|
|
46
|
+
--Palettes-Neutral-Neutral-600: var(--medium-grey-600-medium-grey);
|
|
47
|
+
--Palettes-Neutral-Neutral-650: var(--medium-grey-650-medium-grey);
|
|
48
|
+
--Palettes-Neutral-Neutral-700: var(--medium-grey-700-medium-grey);
|
|
49
|
+
--Palettes-Neutral-Neutral-750: var(--medium-grey-750-medium-grey);
|
|
50
|
+
--Palettes-Neutral-Variant-Neutral-Variant-100: var(--dark-grey-100-dark-grey);
|
|
51
|
+
--Palettes-Neutral-Variant-Neutral-Variant-150: var(--dark-grey-150-dark-grey);
|
|
52
|
+
--Palettes-Neutral-Variant-Neutral-Variant-200: var(--dark-grey-200-dark-grey);
|
|
53
|
+
--Palettes-Neutral-Variant-Neutral-Variant-250: var(--dark-grey-250-dark-grey);
|
|
54
|
+
--Palettes-Neutral-Variant-Neutral-Variant-300: var(--dark-grey-300-dark-grey);
|
|
55
|
+
--Palettes-Neutral-Variant-Neutral-Variant-350: var(--dark-grey-350-dark-grey);
|
|
56
|
+
--Palettes-Neutral-Variant-Neutral-Variant-400: var(--dark-grey-400-dark-grey);
|
|
57
|
+
--Palettes-Neutral-Variant-Neutral-Variant-450: var(--dark-grey-450-dark-grey);
|
|
58
|
+
--Palettes-Neutral-Variant-Neutral-Variant-50: var(--dark-grey-50-dark-grey);
|
|
59
|
+
--Palettes-Neutral-Variant-Neutral-Variant-500: var(--dark-grey-500-dark-grey);
|
|
60
|
+
--Palettes-Neutral-Variant-Neutral-Variant-550: var(--dark-grey-550-dark-grey);
|
|
61
|
+
--Palettes-Neutral-Variant-Neutral-Variant-600: var(--dark-grey-600-dark-grey);
|
|
62
|
+
--Palettes-Neutral-Variant-Neutral-Variant-650: var(--dark-grey-650-dark-grey);
|
|
63
|
+
--Palettes-Neutral-Variant-Neutral-Variant-700: var(--dark-grey-700-dark-grey);
|
|
64
|
+
--Palettes-Neutral-Variant-Neutral-Variant-750: var(--dark-grey-750-dark-grey);
|
|
65
|
+
--Palettes-Primary-Primary-100: var(--blue-100-blue);
|
|
66
|
+
--Palettes-Primary-Primary-150: var(--blue-150-blue);
|
|
67
|
+
--Palettes-Primary-Primary-200: var(--blue-200-blue);
|
|
68
|
+
--Palettes-Primary-Primary-250: var(--blue-250-blue);
|
|
69
|
+
--Palettes-Primary-Primary-300: var(--blue-300-blue);
|
|
70
|
+
--Palettes-Primary-Primary-350: var(--blue-350-blue);
|
|
71
|
+
--Palettes-Primary-Primary-400: var(--blue-400-blue);
|
|
72
|
+
--Palettes-Primary-Primary-450: var(--blue-450-blue);
|
|
73
|
+
--Palettes-Primary-Primary-50: var(--blue-50-blue);
|
|
74
|
+
--Palettes-Primary-Primary-500: var(--blue-500-blue);
|
|
75
|
+
--Palettes-Primary-Primary-550: var(--blue-550-blue);
|
|
76
|
+
--Palettes-Primary-Primary-600: var(--blue-600-blue);
|
|
77
|
+
--Palettes-Primary-Primary-650: var(--blue-650-blue);
|
|
78
|
+
--Palettes-Primary-Primary-700: var(--blue-700-blue);
|
|
79
|
+
--Palettes-Primary-Primary-750: var(--blue-750-blue);
|
|
80
|
+
--Palettes-Secondary-Secondary-100: var(--dark-blue-100-dark-blue);
|
|
81
|
+
--Palettes-Secondary-Secondary-150: var(--dark-blue-150-dark-blue);
|
|
82
|
+
--Palettes-Secondary-Secondary-200: var(--dark-blue-200-dark-blue);
|
|
83
|
+
--Palettes-Secondary-Secondary-250: var(--dark-blue-250-dark-blue);
|
|
84
|
+
--Palettes-Secondary-Secondary-300: var(--dark-blue-300-dark-blue);
|
|
85
|
+
--Palettes-Secondary-Secondary-350: var(--dark-blue-350-dark-blue);
|
|
86
|
+
--Palettes-Secondary-Secondary-400: var(--dark-blue-400-dark-blue);
|
|
87
|
+
--Palettes-Secondary-Secondary-450: var(--dark-blue-450-dark-blue);
|
|
88
|
+
--Palettes-Secondary-Secondary-50: var(--dark-blue-50-dark-blue);
|
|
89
|
+
--Palettes-Secondary-Secondary-500: var(--dark-blue-500-dark-blue);
|
|
90
|
+
--Palettes-Secondary-Secondary-550: var(--dark-blue-550-dark-blue);
|
|
91
|
+
--Palettes-Secondary-Secondary-600: var(--dark-blue-600-dark-blue);
|
|
92
|
+
--Palettes-Secondary-Secondary-650: var(--dark-blue-650-dark-blue);
|
|
93
|
+
--Palettes-Secondary-Secondary-700: var(--dark-blue-700-dark-blue);
|
|
94
|
+
--Palettes-Secondary-Secondary-750: var(--dark-blue-750-dark-blue);
|
|
95
|
+
--Palettes-Success-Success-100: var(--green-100-green);
|
|
96
|
+
--Palettes-Success-Success-150: var(--green-150-green);
|
|
97
|
+
--Palettes-Success-Success-200: var(--green-200-green);
|
|
98
|
+
--Palettes-Success-Success-250: var(--green-250-green);
|
|
99
|
+
--Palettes-Success-Success-300: var(--green-300-green);
|
|
100
|
+
--Palettes-Success-Success-350: var(--green-350-green);
|
|
101
|
+
--Palettes-Success-Success-400: var(--green-400-green);
|
|
102
|
+
--Palettes-Success-Success-450: var(--green-450-green);
|
|
103
|
+
--Palettes-Success-Success-50: var(--green-50-green);
|
|
104
|
+
--Palettes-Success-Success-500: var(--green-500-green);
|
|
105
|
+
--Palettes-Success-Success-550: var(--green-550-green);
|
|
106
|
+
--Palettes-Success-Success-600: var(--green-600-green);
|
|
107
|
+
--Palettes-Success-Success-650: var(--green-650-green);
|
|
108
|
+
--Palettes-Success-Success-700: var(--green-700-green);
|
|
109
|
+
--Palettes-Success-Success-750: var(--green-750-green);
|
|
110
|
+
--Palettes-Tertiary-Tertiary-100: var(--light-blue-100-light-blue);
|
|
111
|
+
--Palettes-Tertiary-Tertiary-150: var(--light-blue-150-light-blue);
|
|
112
|
+
--Palettes-Tertiary-Tertiary-200: var(--light-blue-200-light-blue);
|
|
113
|
+
--Palettes-Tertiary-Tertiary-250: var(--light-blue-250-light-blue);
|
|
114
|
+
--Palettes-Tertiary-Tertiary-300: var(--light-blue-300-light-blue);
|
|
115
|
+
--Palettes-Tertiary-Tertiary-350: var(--light-blue-350-light-blue);
|
|
116
|
+
--Palettes-Tertiary-Tertiary-400: var(--light-blue-400-light-blue);
|
|
117
|
+
--Palettes-Tertiary-Tertiary-450: var(--light-blue-450-light-blue);
|
|
118
|
+
--Palettes-Tertiary-Tertiary-50: var(--light-blue-50-light-blue);
|
|
119
|
+
--Palettes-Tertiary-Tertiary-500: var(--light-blue-500-light-blue);
|
|
120
|
+
--Palettes-Tertiary-Tertiary-550: var(--light-blue-550-light-blue);
|
|
121
|
+
--Palettes-Tertiary-Tertiary-600: var(--light-blue-600-light-blue);
|
|
122
|
+
--Palettes-Tertiary-Tertiary-650: var(--light-blue-650-light-blue);
|
|
123
|
+
--Palettes-Tertiary-Tertiary-700: var(--light-blue-700-light-blue);
|
|
124
|
+
--Palettes-Tertiary-Tertiary-750: var(--light-blue-750-light-blue);
|
|
125
|
+
--Palettes-Visited-Visited-100: var(--purple-100-purple);
|
|
126
|
+
--Palettes-Visited-Visited-150: var(--purple-150-purple);
|
|
127
|
+
--Palettes-Visited-Visited-200: var(--purple-200-purple);
|
|
128
|
+
--Palettes-Visited-Visited-250: var(--purple-250-purple);
|
|
129
|
+
--Palettes-Visited-Visited-300: var(--purple-300-purple);
|
|
130
|
+
--Palettes-Visited-Visited-350: var(--purple-350-purple);
|
|
131
|
+
--Palettes-Visited-Visited-400: var(--purple-400-purple);
|
|
132
|
+
--Palettes-Visited-Visited-450: var(--purple-450-purple);
|
|
133
|
+
--Palettes-Visited-Visited-50: var(--purple-50-purple);
|
|
134
|
+
--Palettes-Visited-Visited-500: var(--purple-500-purple);
|
|
135
|
+
--Palettes-Visited-Visited-550: var(--purple-550-purple);
|
|
136
|
+
--Palettes-Visited-Visited-600: var(--purple-600-purple);
|
|
137
|
+
--Palettes-Visited-Visited-650: var(--purple-650-purple);
|
|
138
|
+
--Palettes-Visited-Visited-700: var(--purple-700-purple);
|
|
139
|
+
--Palettes-Visited-Visited-750: var(--purple-750-purple);
|
|
140
|
+
}
|