-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
35 lines (31 loc) · 868 Bytes
/
index.css
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
:root {
--ButtonFill-color: #fff;
--ButtonFill-fill: #000;
--ButtonFill-primary-color: #fff;
--ButtonFill-primary-fill: var(--g-primary);
}
/* sircus-components-button-fill
======================================== */
.Button--fill {
background-color: var(--ButtonFill-fill);
color: var(--ButtonFill-color);
}
.Button--fill:hover,
.Button--fill:focus,
.Button--fill:active,
.Button--fill.is-active {
background-color: transparent;
color: var(--ButtonFill-fill);
text-decoration: none;
}
.Button--fill.Button--primary {
background-color: var(--ButtonFill-primary-fill);
color: var(--ButtonFill-primary-color);
}
.Button--fill.Button--primary:hover,
.Button--fill.Button--primary:focus,
.Button--fill.Button--primary:active,
.Button--fill.Button--primary.is-active {
background-color: transparent;
color: var(--ButtonFill-primary-fill);
}