-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdesign-system.css
More file actions
60 lines (54 loc) · 2.46 KB
/
design-system.css
File metadata and controls
60 lines (54 loc) · 2.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
:is([class*='stk--background-scheme'],
[class*='stk--container-scheme'],
.stk--has-base-scheme,
.stk--has-background-scheme .stk-block-background,
.stk--has-container-scheme .stk-container:not(.stk--no-background)) p {
color: var(--stk-text-color);
}
:is([class*='stk--background-scheme'],
[class*='stk--container-scheme'],
.stk--has-base-scheme,
.stk--has-background-scheme .stk-block-background,
.stk--has-container-scheme .stk-container:not(.stk--no-background)) .wp-block-heading {
color: var(--stk-heading-color);
}
:is([class*='stk--background-scheme'],
[class*='stk--container-scheme'],
.stk--has-base-scheme,
.stk--has-background-scheme .stk-block-background,
.stk--has-container-scheme .stk-container:not(.stk--no-background)) a {
color: var(--stk-link-color, var(--theme-link-initial-color, unset));
}
:is([class*='stk--background-scheme'],
[class*='stk--container-scheme'],
.stk--has-base-scheme,
.stk--has-background-scheme .stk-block-background,
.stk--has-container-scheme .stk-container:not(.stk--no-background)) a:hover {
color: var(--stk-link-color-hover, var(--stk-link-color, var(--theme-link-hover-color, unset)));
}
:is([class*='stk--background-scheme'],
[class*='stk--container-scheme'],
.stk--has-base-scheme,
.stk--has-background-scheme .stk-block-background,
.stk--has-container-scheme .stk-container:not(.stk--no-background)) .wp-element-button {
background: var(--stk-button-background-color);
color: var(--stk-button-text-color);
padding: var(--stk-button-padding);
}
:is([class*='stk--background-scheme'],
[class*='stk--container-scheme'],
.stk--has-base-scheme,
.stk--has-background-scheme .stk-block-background,
.stk--has-container-scheme .stk-container:not(.stk--no-background)) .wp-element-button:hover {
background: var(--stk-button-background-color-hover, var(--stk-button-background-color));
color: var(--stk-button-text-color-hover, var(--stk-button-text-color));
}
:is([class*='stk--background-scheme'],
[class*='stk--container-scheme'],
.stk--has-base-scheme,
.stk--has-background-scheme .stk-block-background,
.stk--has-container-scheme .stk-container:not(.stk--no-background)) .is-style-outline .wp-element-button {
background:transparent;
color: var(--stk-button-background-color);
border-color: var(--stk-button-background-color);
}