forked from MukulCode/CodingClubIndia
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbmi1.css
More file actions
45 lines (45 loc) · 744 Bytes
/
bmi1.css
File metadata and controls
45 lines (45 loc) · 744 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
45
body{
margin:0;
padding:0;
/* text-align:center; */
font-family:sans-serif;
background-color: #a0d9ef;
/*background-image: url(bmiphoto.webp);*/
background-size: cover;
}
div{
width:500px;
/* height:300px; */
position:absolute;
top:20%;
left:30%;
background-color: rgb(46, 43, 43,.5);
padding:25px;
box-shadow:2px 2px 20px wheat;
}
h1{
color:white;
text-align:center;
}
label{
text-align: left;
color:white;
}
#result{
color:white;
}
#btn{
font-size: inherit;
color:white;
background-color: rgb(34, 158, 158);
padding:10px;
margin:auto;
border-radius:2px;
}
#btn:hover{
background-color: red;
cursor:pointer;
}
#info{
color:white;
}