-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathc-button.css
More file actions
40 lines (34 loc) · 702 Bytes
/
c-button.css
File metadata and controls
40 lines (34 loc) · 702 Bytes
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
button {
color: black;
background-color: gray;
min-height: 40px;
display: flex;
align-items: center;
line-height: 1;
padding: 0 1.5rem;
border-radius: 0.25rem;
border: none;
font-size: 1rem;
}
button[size='small'] {
min-height: 32px;
padding: 0rem 1rem;
font-size: 0.75rem;
}
button[variant='accent'] {
color: white;
background: var(--blue-500);
&:active {
background-color: var(--blue-600);
}
}
button[variant='primary'] {
color: white;
background: var(--orange-500);
&:active {
background-color: var(--orange-600);
}
}
menu-toggle:not(:defined)>template[shadowrootmode]~* {
display: none;
}