-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
80 lines (53 loc) · 1.01 KB
/
style.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
body {
background: linear-gradient(135deg, orange, white);
display: flex;
justify-content: center;
align-items: center;
height: 98vh;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
#sub {
cursor: pointer;
}
form {
border: solid;
text-align: start;
margin-left: 15rem;
position: relative;
width: 100%;
padding: 12px;
}
form input {
height: 3rem;
width:auto;
position: relative;
font-size: 1.5em;
}
#sub {
margin-top: 15px;
margin-bottom: 15px;
background-color: orange;
border: none;
border-radius: 12px;
padding: 5px;
}
#height, #weight,#age {
border-radius: 15px;
border: solid;
}
#resultstyle {
border: solid;
width: 40%;
position: absolute;
top: 0;
right: 0;
height: 100%;
font-size: 24px;
background-color: lightblue;
}
#deinbmi {
font-size: 48px;
}
#result {
font-size: 56px;
}