-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
48 lines (44 loc) · 883 Bytes
/
styles.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
html {
background: #432E54;
color: #e8bcb9;
font-family: sans-serif;
}
.exercise {
margin-bottom: 1rem;
padding: 0.5rem;
border: 2px solid #ae445a;
border-radius: 5px;
background: #4B4376;
}
.inputs {
display: flex;
gap: 1rem;
margin-top: 0.5rem;
}
.inputs input {
width: 45%;
padding: 0.5rem;
font-size: 1rem;
border: 3px solid #ae445a;
border-radius: 4px;
background: #e8bcb9;
color: #ae445a;
outline: transparent;
}
button {
padding: 0.5rem 1rem;
font-size: 1rem;
color: white;
background: #4CAF50;
border: none;
border-radius: 4px;
cursor: pointer;
margin-top: 1rem;
}
button:hover {
background: #45a049;
}
input::placeholder {
color: #ae445a;
opacity: 1; /* For Firefox */
}