-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbmi.css
More file actions
79 lines (70 loc) · 1.42 KB
/
Copy pathbmi.css
File metadata and controls
79 lines (70 loc) · 1.42 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
body {
background-image: url('images/banner.jpg');
background-size: cover;
background-repeat: no-repeat;
font-family: Roboto, sans-serif;
color: #fff;
text-align: center;
background-color: #121212;
}
.container {
width: 350px;
margin: 0 auto;
padding: 40px;
background-color: rgba(0, 0, 0, 0.8);
border-radius: 20px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}
h1 {
font-size: 32px;
margin-bottom: 30px;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
input[type="text"],
input[type="number"] {
width: 90%;
padding: 15px;
margin-bottom: 20px;
border: 1px solid #555;
border-radius: 10px;
background-color: #292b3d;
color: #fff;
text-align: center;
}
.gender {
display: flex;
justify-content: space-around;
margin-bottom: 10px;
align-items: center;
}
.gender label {
display: flex;
align-items: center;
}
.gender input[type="radio"] {
margin-right: 5px;
margin-top: 5px;
width: 20px;
height: 20px;
}
.gender input[type="radio"]:checked + .checkmark {
background-color: #779b59;
}
button {
background-color: #9bcd66;
color: #fff;
padding: 15px 30px;
border: none;
border-radius: 10px;
cursor: pointer;
transition: background-color 0.3s ease;
font-size: 18px;
}
button:hover {
background-color: #779b59;
}
.result {
font-size: 20px;
margin-top: 20px;
color: #779b59;
}