-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle5.css
More file actions
44 lines (37 loc) · 875 Bytes
/
Copy pathstyle5.css
File metadata and controls
44 lines (37 loc) · 875 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
#main {
margin-top: 200px;
display: flex;
justify-content: center;
align-items: center;
}
#calculator-form {
background-color: rgb(104, 104, 104);
padding: 40px;
text-align: center;
}
.container {
margin-bottom: 10px;
display: flex;
justify-content: center;
flex-direction: column;
font-family: Arial, Helvetica, sans-serif;
}
.container label, #calculate-button {
font-family: Arial, Helvetica, sans-serif;
}
#calculate-button {
padding: 6px 40px;
border-radius: 15px;
background-color: #16ce26;
color: rgb(255, 255, 255);
border: none;
font-weight: 700;
}
#calculate-button:hover {
background-color: #16ce26;
}
@media screen and (min-width: 768px) {
.container {
flex-direction: row;
}
}