-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.css
100 lines (86 loc) · 1.54 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 {
width: 300px;
height: 240px;
margin: 0;
padding: 10px;
font-family: Arial, sans-serif;
background-color: #111;
color: #eee;
}
h1 {
font-size: 24px;
font-weight: bold;
margin-top: 0;
margin-bottom: 10px;
text-align: center;
}
p {
font-size: 14px;
margin-bottom: 10px;
text-align: justify;
}
select {
display: block;
width: 100%;
padding: 8px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 5px;
background-color: #fff;
color: #333;
font-size: 14px;
font-family: Arial, sans-serif;
}
option[selected] {
font-weight: bold;
}
select::-ms-expand {
display: none;
}
select:hover {
border-color: #999;
}
body.dark select {
background-color: #444;
color: #eee;
border-color: #666;
}
button {
display: block;
margin: 0 auto;
padding: 10px 20px;
border: none;
border-radius: 5px;
background-color: #1e88e5;
color: #fff;
font-size: 16px;
font-weight: bold;
cursor: pointer;
}
button:hover {
background-color: #1565c0;
}
img {
display: block;
margin: 0 auto;
margin-bottom: 10px;
width: 80px;
height: 80px;
}
.mean-score {
font-size: 18px;
font-weight: bold;
margin-bottom: 10px;
text-align: center;
}
body.dark {
background-color: #333;
color: #eee;
}
button.dark {
background-color: #1e88e5;
color: #fff;
}
button.dark:hover {
background-color: #1565c0;
}