-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBMICalculator.css
55 lines (47 loc) · 1016 Bytes
/
BMICalculator.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
49
50
51
52
53
54
55
.container {
width: 575px;
height: 600px;
margin-left: auto;
margin-right: auto;
background: linear-gradient(to right, rgb(237, 160, 18), rgb(241, 177, 59), rgb(239, 189, 96), rgb(243, 200, 121));
text-align: center;
padding: 20px;
border-radius: 15px;
font-weight: bold;
font-family: cursive;
}
#height,
#weight {
border: none;
border-radius: 12px;
width: 150px;
height: 25px;
margin-top: 30px;
}
#weight-guide {
margin-left: 75px;
margin-top: 25px;
}
#results {
font-size: 35px;
margin-left: 90px;
margin-top: 20px;
color: black
}
button {
width: 150px;
height: 35px;
margin-left: 90px;
margin-top: 25px;
background: linear-gradient(to right, rgb(20, 19, 19), rgb(35, 34, 34), rgb(61, 60, 60), rgb(102, 100, 100));
padding: 1px 30px;
border-radius: 15px;
color: white;
text-decoration: none;
border: none;
font-size: 20px;
}
h1 {
padding-left: 15px;
padding-top: 25px;
}