-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
100 lines (85 loc) · 1.29 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
body {
padding: 0 10px 10px;
width: 300px;
}
.bold {
font-weight: 600;
}
.heading {
display: flex;
align-items: center;
gap: 1em;
font-size: 0.8em;
}
.heading > img {
width: 40px;
height: 40px;
}
#description {
font-size: 1.1em;
color: #5e5e5e;
}
#board {
margin-bottom: 18px;
}
#board.warning {
border: solid;
border-radius: 10px;
border-width: 2px;
border-color: #de0426;
background: #de042620;
font-weight: 600;
}
#board > p,
#board > * > p {
padding: 0 10px;
font-size: 1.1em;
}
#board > * > ol > li {
margin-top: 8px;
padding: 4px 0;
font-size: 1.1em;
}
#board span,
#board label {
font-size: 1.1em;
}
button {
width: 100%;
color: #101010;
background-color: white;
border-width: 2px;
border-radius: 10px;
padding: 8px;
font-weight: bold;
cursor: pointer;
}
button:hover {
background-color: #101010;
color: white;
}
button:disabled {
cursor: not-allowed;
background-color: #f1f1f1;
color: #b5b5b5;
border: none;
}
#warning-message {
margin-top: 1em;
font-size: 1.5em;
color: #de0426;
font-weight: 600;
}
#progress {
margin-top: 1em;
width: 100%;
background-color: #e0e0e0;
}
#progress-bar {
width: 0%;
height: 20px;
background-color: #4caf50;
text-align: center;
line-height: 20px;
color: white;
}