-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbmi.css
More file actions
141 lines (127 loc) · 2.58 KB
/
Copy pathbmi.css
File metadata and controls
141 lines (127 loc) · 2.58 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Quicksand', sans-serif;
}
body {
background: linear-gradient(to right, #0b0a0a, #292336, #181818);
color: white;
min-height: 100vh;
display: flex;
flex-direction: column;
}
.navbar {
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
background: rgba(24, 27, 39, 0.25);
border: 1px solid rgba(24, 27, 39, 0.3);
backdrop-filter: blur(10px);
padding: 10px 30px;
border-radius: 25px;
width: fit-content;
box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}
.navbar a {
color: white;
text-decoration: none;
font-weight: 600;
font-size: 16px;
padding: 8px 12px;
border-radius: 20px;
transition: color 0.3s ease, transform 0.2s ease;
}
.navbar a:hover {
color: #da9696;
transform: scale(1.08);
}
.navbar a.active {
background: linear-gradient(to right, #ff416c, #ff4e00);
color: white;
}
.navmain{
padding-top: 30px;
display: flex;
justify-content: center;
align-items: center;
}
.footer {
width: 100%;
background: rgba(24, 27, 39, 0.25);
border-top: 1px solid rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
box-shadow: 0 -2px 10px rgba(255, 255, 255, 0.02);
color: #ffffffb0;
display: flex;
flex-wrap: wrap;
justify-content: space-around;
align-items: center;
padding: 16px 20px;
margin-top: auto;
gap: 15px;
border-radius: 25px 25px 0 0;
}
.social-footer {
display: flex;
gap: 25px;
}
.social-footer a {
color: #ffffffcc;
font-size: 18px;
transition: color 0.3s ease, transform 0.2s ease;
}
.social-footer a:hover {
color: #da9696;
transform: scale(1.04);
}
.footer-text {
font-size: 15px;
color: #bbb;
}
.container{
margin-top: 20px;
display: flex;
justify-content: center;
}
.box {
padding: 40px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
gap: 25px;
background: rgba(41, 35, 54, 0.85);
border-radius: 35px;
box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
backdrop-filter: blur(10px);
width: fit-content;
max-width: 90vw;
}
.box p {
font-size: 36px;
font-weight: 500;
color: #e0dede;
text-align: center;
padding-bottom: 20px;
text-shadow: 0 0 6px rgba(255, 255, 255, 0.05);
}
.box input{
padding: 20px;
background-color: #d4d2da;
font-size: large;
font-weight: 300;
border: none;
border-radius: 10px;
}
.calculate{
padding: 14px 24px;
font-size: 20px;
border: none;
border-radius: 12px;
background: linear-gradient(to right, #412e5c, #0e2b5c);
color: white;
cursor: pointer;
transition: all 0.3s ease;
}