-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
80 lines (71 loc) · 1.36 KB
/
style.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
body {
font-family: 'Arial', sans-serif;
text-align: center;
margin: 0;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#progress-container {
width: 85vw;
border: 1px solid #ccc;
position: relative;
margin: 20px auto;
padding: 5px;
}
#progress-bar {
height: 20px;
background-color: #4CAF50;
width: 0;
transition: width 0.3s ease;
position: relative;
}
#count-display {
display: none;
position: absolute;
top: -40px;
right: 0;
transform: translateX(50%);
background-color: #333;
color: #fff;
padding: 5px 10px;
border-radius: 5px;
white-space: nowrap;
}
#total-input {
display: none;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 50px;
padding: 5px;
border: 1px solid #ccc;
}
#progress-container:hover #count-display {
display: block;
}
#context-menu {
display : none;
position: absolute;
background-color: #fff;
border: 1px solid #aaa;
/* padding: 10px; */
}
.context-menu-item {
display: flex;
height: 40px;
align-items: center;
gap: 5px;
padding: 0 10px;
}
.context-menu-item:hover {
background-color: #ccc;
}
#bar-color-reset-btn {
border: none;
background: none;
cursor: pointer;
}