-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
108 lines (90 loc) · 2.28 KB
/
style.css
File metadata and controls
108 lines (90 loc) · 2.28 KB
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
101
102
103
104
105
106
107
108
body {
padding: 0 10%;
}
.navigation-arrow {
position: fixed;
top: 50%;
transform: translateY(-50%);
font-size: 48px;
color: #333;
cursor: pointer;
z-index: 1000;
}
.prev-arrow {
left: 10px;
}
.next-arrow {
right: 10px;
}
.good-button, .ok-button, .bad-button, .download-button {
font-size: 24px;
padding: 10px 20px;
margin: 10px;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s, box-shadow 0.3s;
}
.ok-button {
background-color: #FFC107;
color: white;
}
.ok-button:hover {
background-color: #FFA000;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.good-button {
background-color: #4CAF50;
color: white;
}
.good-button:hover {
background-color: #45a049;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.bad-button {
background-color: #f44336;
color: white;
}
.bad-button:hover {
background-color: #e53935;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.good-button.pressed {
background-color: #2E7D32; /* Darker green */
box-shadow: inset 0 0 10px #000; /* More pronounced shadow */
transform: translateY(2px); /* Slight downward movement */
color: #fff; /* Ensure text color remains white */
font-weight: bold; /* Make text bold when pressed */
}
.bad-button.pressed {
background-color: #C62828; /* Darker red */
box-shadow: inset 0 0 10px #000; /* More pronounced shadow */
transform: translateY(2px); /* Slight downward movement */
color: #fff; /* Ensure text color remains white */
font-weight: bold; /* Make text bold when pressed */
}
.ok-button.pressed {
background-color: #FFA000; /* Darker orange */
box-shadow: inset 0 0 10px #000; /* More pronounced shadow */
transform: translateY(2px); /* Slight downward movement */
color: #fff; /* Ensure text color remains white */
font-weight: bold; /* Make text bold when pressed */
}
.download-button {
background-color: #2196F3;
color: white;
}
.download-button:hover {
background-color: #1976D2;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#progress {
position: fixed;
top: 10px;
right: 10px;
font-size: 24px;
font-weight: bold;
background-color: rgba(255, 255, 255, 0.8);
padding: 10px;
border-radius: 5px;
}