-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle6.css
More file actions
60 lines (48 loc) · 1.01 KB
/
Copy pathstyle6.css
File metadata and controls
60 lines (48 loc) · 1.01 KB
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
#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: flex-start;
flex-direction: column;
}
.container label, #calculate-button {
font-family: Arial, Helvetica, sans-serif;
}
#calculate-button {
padding: 6px 50px;
border-radius: 15px;
background-color: #16ce26;
color: white;
border: none;
font-weight: 700;
}
#calculate-button:hover {
background-color: #16ce26;
}
.form-check {
margin: 0px 5px;
}
.label-container {
margin-right: 5px;
}
.input-container {
text-align: center;
}
@media screen and (min-width: 768px) {
.container {
flex-direction: row;
}
.input-container {
width: 30%;
}
}