-
Notifications
You must be signed in to change notification settings - Fork 4
/
main.css
88 lines (72 loc) · 1.07 KB
/
main.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
.main-body{
display: flex;
flex-direction: column;
width: auto;
align-items: center;
height: auto;
background-color: #484848;
font-size: large;
font-weight: bolder;
}
.apos{
font-size: 25px;
font-weight: bolder;
color: white;
}
#form{
margin-left: 250px;
}
#heights{
display: flex;
flex-direction: row;
}
#feet{
width: 45px;
height: 30px;
border-radius: 7%;
box-shadow: 1px 1px 1px 1px black;
}
#inches{
width: 40px;
height: 30px;
border-radius: 7%;
box-shadow: 1px 1px 1px 1px black;
}
#weight{
width: 100px;
height: 30px;
border-radius: 7%;
box-shadow: 1px 1px 1px 1px black;
}
.my-submit{
border-radius: 7%;
box-shadow: 1px 1px 1px 1px black;
cursor: pointer;
align-items: center;
}
#first-title{
font-size: xx-large;
font-weight: bolder;
color: #FF5A5F;
}
#first-paragraph{
color: whitesmoke;
font-weight: bolder;
}
#second-body{
background-color: gray;
width: auto;
}
#heavy-title{
cursor: pointer;
}
#result{
font-size: 30px;
font-weight: bolder;
color:#FF5A5F;
}
#advice{
font-weight: bolder;
color:#FF5A5F;
font-size: 20px;
}