forked from Lakshkaul786/CataScore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
64 lines (54 loc) · 1.03 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
body {
font-family: Arial, sans-serif;
background-color: #0D1117;
color: #fff;
padding: 20px;
text-align: center;
}
.container {
width: 300px;
margin: 0 auto;
}
h1 {
color: #fff;
}
.parameters {
margin-bottom: 20px;
}
.parameter {
margin-bottom: 10px;
}
.bar {
border-radius: 5px;
margin-right: 10px;
display: inline-block;
height: 5px;
width: 160px;
background-color: rgb(228, 82, 199);
}
button {
opacity: 80%;;
border-radius: 20px;
background-color: whitesmoke;
color: #000;
border: none;
padding: 10px 20px;
cursor: pointer;
}
button:hover {
transition: 1s;
opacity: 100%;
background-color: #ddd;
}
.score-bar {
margin-top: 20px;
height: 20px;
background-color: #fff;
border-radius: 20px;
overflow: hidden;
}
#score {
height: 100%;
background-color: #000;
transition: width 0.5s ease;
}