-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpopup.css
More file actions
66 lines (66 loc) · 1.18 KB
/
popup.css
File metadata and controls
66 lines (66 loc) · 1.18 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
61
62
63
64
65
66
body {
font-family: sans-serif;
width: 240px;
margin: 0;
}
.is-text {
border: none;
background: none;
text-decoration: underline;
cursor: pointer;
font-size: 0.85rem;
color: #454545;
}
.is-text:not(:last-child) {
margin: 0 .5rem 0;
}
.is-text:hover {
color: #000;
}
#footer {
text-align: center;
padding: .25rem 1rem;
}
#domain {
font-size: 1rem;
text-align: center;
border-bottom: 1px solid #e3e3e3;
padding: 0.75rem 1rem;
margin: 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
#main {
display: flex;
align-items: center;
justify-content: center;
padding: 3rem 0 2rem;
}
#toggle {
color: #ffffff;
background: #7bc962;
border-radius: 99px;
border: 4px solid #cae9c0;
box-sizing: content-box;
font-size: 1.2rem;
width: 80px;
height: 80px;
padding: 0;
text-align: center;
cursor: pointer;
}
#toggle:hover, #toggle:active {
background: #4e9c36;
}
#toggle:active {
border-color: #95d481;
}
#toggle.is-blocked {
color: #333;
background: #e3e3e3;
border-color: #efefef;
}
#toggle.is-blocked:hover, #toggle.is-blocked:active {
background: #dadada;
}