-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
71 lines (59 loc) · 1.03 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
@import url('https://fonts.googleapis.com/css2?family=IM+Fell+English+SC&family=Rampart+One&display=swap');
/* font-family: 'IM Fell English SC', serif;
font-family: 'Rampart One', cursive; */
*{
box-sizing: border-box;
}
body{
background-image: url(images.jpg);
padding: 0;
margin: 0;
font-family: 'IM Fell English SC', serif;
color:#fff;
font-size: 120%;
}
.container{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.container{
height: 60vh;
width: 30vw;
display: flex;
flex-direction: column;
text-align: center;
}
h1{
font-family: 'Rampart One', cursive;
}
.inputs{
width: 50%;
margin: 1rem auto;
padding: 7px;
border-radius: 10px;
}
.labels{
font-size: 1.5rem;
}
.button{
font-family: 'IM Fell English SC', serif;
width: 25%;
margin: 1rem auto;
padding: 5px;
border-radius: 15px;
background-color: #fff;
color: #000;
}
.button:hover{
background-color: #000;
color: #fff;
}
.bmi{
font-size: 1.5rem;
margin: 0px;
}
ul{
text-align: left;
}