-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.css
70 lines (70 loc) · 1.2 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
64
65
66
67
68
69
70
body {
font-family: "Open Sans", sans-serif;
font-size: 14px;
margin: 0;
padding: 0;
width: 400px;
}
.wrapper {
padding: 10px 15px;
background-color: black;
}
.top_wrapper {
padding-top: 5px;
display: flex;
justify-content: space-around;
align-items: center;
background-color: #404040;
}
.logo {
width: 40px;
height: 40px;
}
.title_wrapper {
text-align: center;
}
.title {
font-family: "Menlo", monospace;
font-size: x-large;
font-weight: 700;
margin: 0;
color: white;
}
.sub_title {
color: #bfbfbf;
}
.middle_wrapper {
color: white;
font-size: medium;
font-weight: bold;
padding: 10px 0px;
display: flex;
justify-content: space-between;
}
.toggle_container {
margin:10px;
display: flex;
justify-content: space-between;
padding: 10px 20px;
}
.toggle_wrapper {
text-align: center;
}
.toggle_btn {
opacity: 1;
transition: opacity 0.2s ease-in-out;
color: #999999;
cursor: pointer;
}
.toggle_btn:hover {
opacity: 0.4;
}
.toggle_rocket {
color: #999999;
opacity: 1;
transition: opacity 0.2s ease-in-out;
}
.toggle_rocket:hover {
color: #999999;
opacity: 0.4;
}