-
Notifications
You must be signed in to change notification settings - Fork 0
/
new.css
67 lines (59 loc) · 1.27 KB
/
new.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
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
background-image: url("bmi.jpg");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
color: aliceblue;
}
.container {
box-shadow: 0px 0px 20px 10px rgb(234, 232, 235);
padding: 20px;
text-align: center;
border-radius: 10px;
background-color: white;
background-image: url("moon.jpg");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
h1 {
margin-bottom: 40px;
color: gold;
}
p{
color: rgb(245, 249, 249);
}
input {
border-radius: 5px;
margin-bottom: 20px;
text-align: center;
font-size: 20px;
width: 100%;
padding: 10px;
}
button {
width: 100%;
margin-top: 20px;
margin-bottom: 10px;
color: rgb(252, 250, 250);
background-color: blue;
font-size: 18px;
padding: 10px;
border-radius: 20px;
border: none;
}
.result {
margin-top: 20px;
margin-bottom: 10px;
font-size: 18px;
color: rgb(8, 9, 9);
background-color: #fff;
}
button:hover{
background-color: rgb(103, 102, 102);
}