forked from sylv1ah/zappy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
63 lines (57 loc) · 1.28 KB
/
popup.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
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
61
62
63
main {
width: 150px;
display: flex;
justify-content: center;
align-items: center;
}
button {
height: auto;
width: auto;
outline: none;
font-family: "futura-pt-n4", "futura-pt", Tahoma, Geneva, Verdana, Arial,
sans-serif;
border: none;
font-size: inherit;
color: inherit;
background: none;
cursor: pointer;
padding: 5px 10px;
display: inline-block;
margin: 3px 6px 9px 6px;
text-transform: uppercase;
letter-spacing: 1px;
font-weight: 700;
outline: none;
position: relative;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
color: #fff;
box-shadow: 0 6px var(--box-shadow-color);
-webkit-transition: none;
-moz-transition: none;
transition: none;
border-radius: 40px;
}
.disabled {
background: green;
--box-shadow-color: rgb(1, 89, 1);
}
.disabled:hover {
--box-shadow-color: rgb(1, 89, 1);
box-shadow: 0 4px var(--box-shadow-color);
top: 2px;
}
.enabled {
background: #cb4e4e;
--box-shadow-color: #ab3c3c;
}
.enabled:hover {
--box-shadow-color: #ab3c3c;
box-shadow: 0 4px var(--box-shadow-color);
top: 2px;
}
/* .clicked {
box-shadow: 0 0px var(--box-shadow-color) !important;
top: 6px !important;
} */