-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExerciseForm.css
More file actions
54 lines (46 loc) · 799 Bytes
/
ExerciseForm.css
File metadata and controls
54 lines (46 loc) · 799 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
.formRow {
padding-left: 250px;
}
body {
font-family: "Poppins", sans-serif;
}
.exercise-form {
min-height: 20vh;
display: flex;
justify-content: center;
align-items: center;
}
.exercise-form input,
.exercise-form button {
padding: 0.5rem;
font-size: 2rem;
border: none;
background: white;
}
.exercise-form button {
color: #05304d;
background: #f7fffe;
cursor: pointer;
transition: all 0.3s ease;
}
.exercise-form button:hover {
background: #05304d;
color: white;
}
.trash-btn {
background: #05304d;
color: white;
border: none;
padding: 1rem;
cursor: pointer;
font-size: 1rem;
}
.fa-trash {
pointer-events: none;
}
.fas.fa-plus-square{
left:0!important;
}
.fs-30{
font-size:30px!important;
}