-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathworkout.css
More file actions
59 lines (50 loc) · 953 Bytes
/
workout.css
File metadata and controls
59 lines (50 loc) · 953 Bytes
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
#workout-modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
display: flex;
align-items: center;
justify-content: center;
z-index: 2000;
}
.workout-modal-content {
background-color: white;
padding: 30px;
border-radius: var(--radius-lg);
width: 90%;
max-width: 500px;
max-height: 90vh;
overflow-y: auto;
}
.workout-modal-content h3 {
margin-bottom: 20px;
color: var(--primary-color);
}
.workout-modal-content .form-group {
margin-bottom: 20px;
}
.workout-modal-content label {
display: block;
margin-bottom: 8px;
font-weight: 600;
}
.workout-modal-content select {
width: 100%;
padding: 10px;
border: 1px solid #ddd;
border-radius: var(--radius);
}
.recommendations-list {
margin: 20px 0;
padding-left: 20px;
}
.recommendations-list li {
margin-bottom: 10px;
}
#workout-recommender-btn {
margin: 30px auto 0;
display: block;
}