-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
59 lines (53 loc) · 1.16 KB
/
styles.css
File metadata and controls
59 lines (53 loc) · 1.16 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
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f4f4f4;
}
.container {
text-align: center;
background-color: white;
padding: 30px;
border-radius: 15px;
box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}
#exercise-display {
font-size: 2.5em;
margin-bottom: 20px;
color: #333;
}
#next-button {
padding: 12px 24px;
font-size: 1.2em;
background-color: #00796b;
color: white;
border: none;
border-radius: 8px;
cursor: pointer;
transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
#next-button:hover {
background-color: #004d40;
}
#restart-button {
display: none;
padding: 12px 24px;
font-size: 1.2em;
background-color: #e91e63;
color: white;
border: none;
border-radius: 50px;
cursor: pointer;
position: fixed;
bottom: 50px;
right: 50px;
box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease, background-color 0.3s ease;
}
#restart-button:hover {
background-color: #c2185b;
transform: scale(1.1);
}