forked from sushrut111/chrome-tab-reloader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.css
148 lines (123 loc) · 2.21 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
/* General */
#main-container {
display: flex;
flex-direction: column;
align-items: center;
font-family: 'Roboto', sans-serif;
}
#num-display {
text-align: center;
font-size: 1.2em;
}
#num-display p {
font-size: 1.5em;
}
#settings-container {
display: flex;
flex-direction: column;
align-items: center;
padding: 1em;
border: 1px solid #d3d3d3;
user-select: none;
}
#on-switch-container {
margin-top: 1em;
}
/* Unit Switch Button */
.unit-switch {
display: flex;
overflow: hidden;
margin: 1em 0 1em 0;
}
.unit-switch input {
position: absolute !important;
clip: rect(0, 0, 0, 0);
height: 1px;
width: 1px;
border: 0;
}
.unit-switch label {
background-color: #ffffff;
color: rgba(0, 0, 0, 0.6);
font-size: 1em;
text-align: center;
padding: 8px 16px;
border: 1px solid rgba(0, 0, 0, 0.2);
transition: all 0.1s ease-in-out;
}
.unit-switch input:checked + label {
background-color: #2196F3;
color: white;
box-shadow: none;
}
.unit-switch label:first-of-type {
border-radius: 4px 0 0 4px;
}
.unit-switch label:last-of-type {
border-radius: 0 4px 4px 0;
}
/* On/Off Switch */
.on-switch {
position: relative;
display: inline-block;
width: 60px;
height: 34px;
}
.on-switch input {
opacity: 0;
width: 0;
height: 0;
}
.toggle {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
transition: .4s;
border-radius: 35px;
}
.toggle:before {
position: absolute;
content: "";
height: 26px;
width: 26px;
left: 4px;
bottom: 4px;
background-color: white;
-webkit-transition: .4s;
transition: .4s;
border-radius: 50%;
}
input:checked + .toggle {
background-color: #2196F3;
}
input:focus + .toggle {
box-shadow: 0 0 1px #2196F3;
}
input:checked + .toggle:before {
-webkit-transform: translateX(26px);
-ms-transform: translateX(26px);
transform: translateX(26px);
}
#on-switch-container {
display: flex;
justify-content: space-around;
align-items: center;
}
#on-switch-label {
margin-left: 1em;
font-size: 1.5em;
}
/* Prevent interaction with settings while running */
.disabled {
pointer-events: none;
}
.disabled input {
opacity: 50%;
}
.disabled .unit-switch {
opacity: 50%;
}