-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
85 lines (76 loc) · 1.24 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
body {
margin: 0;
padding: 0;
height: 100%;
}
.container {
width: 300px;
color: aliceblue;
background-color: #6743dd;
text-align: center;
padding: 8px;
}
.title {
font-size: 1rem;
font-weight: bold;
padding: 8px;
background-color: #00254d;
border-radius: 10px;
}
.textbox {
width: 100%;
font-size: 12px;
margin: 0;
padding: 0px 2px;
}
.textbox:focus {
outline: 0;
border-color: #66afe9;
}
.autoConnects {
margin: 5px 5px;
padding: 3px;
}
.autoConnect {
display: flex;
border-bottom-color: #00254d;
border-bottom-width: 1px;
border-bottom-style: solid;
border-radius: 0.8rem;
padding: 3px;
padding-bottom: 7px;
margin-bottom: 7px;
}
.autoConnect-title {
padding-left: 2px;
}
.autoConnect-controls img {
margin: 0 4px;
width: 18px;
height: 18px;
cursor: pointer;
}
.autoConnect-controls {
flex: auto;
text-align: right;
}
.timerContainer {
display: "flex";
justify-content: center;
align-items: center;
}
.timerValue {
font-size: 2rem;
padding-top: 1rem;
padding-bottom: 1rem;
font-weight: bold;
}
.autoConnects {
padding-top: 0.5rem;
padding-bottom: 0.5rem;
border: 2px solid #00254d92;
border-radius: 0.5rem;
font-size: 1rem;
font-weight: bold;
cursor: pointer;
}