-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
113 lines (96 loc) · 1.77 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
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
109
110
111
112
113
body {
font-family: 'Roboto', sans-serif;
background-color: #f0f4f8;
color: #333333;
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 30px auto;
padding: 30px;
background-color: #ffffff;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
border-radius: 15px;
overflow: hidden;
}
header {
text-align: center;
margin-bottom: 40px;
}
header h1 {
color: #4a90e2;
font-size: 36px;
margin-bottom: 10px;
font-weight: 700;
}
header p {
color: #7f8c8d;
font-size: 18px;
line-height: 1.6;
}
form {
margin-bottom: 30px;
display: grid;
gap: 20px;
}
label {
color: #2c3e50;
font-size: 16px;
font-weight: 500;
}
input, select, button {
width: 100%;
padding: 12px;
font-size: 16px;
border: 1px solid #ddd;
border-radius: 8px;
outline: none;
transition: all 0.3s ease-in-out;
}
input:focus, select:focus {
border-color: #4a90e2;
}
button {
background-color: #4a90e2;
color: white;
cursor: pointer;
font-weight: 600;
}
button:hover {
background-color: #357ab7;
}
button:active {
transform: translateY(2px);
}
.hidden {
display: none;
}
#exercise-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}
.exercise-card {
padding: 20px;
background-color: #ffffff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}
.exercise-card:hover {
box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
transform: translateY(-5px);
}
.progress-bar {
height: 12px;
background: #ddd;
border-radius: 5px;
margin-top: 15px;
}
#progress-fill {
height: 100%;
width: 0;
background: #4a90e2;
border-radius: 5px;
}