-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
56 lines (47 loc) · 857 Bytes
/
styles.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
body{
margin:0;
padding: 0;
box-sizing: border-box;
background-image: url(./body-background.jpg);
background-size: cover;
font-family: 'Montserrat';
}
.main-container {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.status{
background-color: #eb4848;
border-radius: 15px;
display: flex;
flex-direction: column;
align-items: center;
width: 20rem;
margin-top: 250px;
padding:10px;
}
h1, h2, h4, span {
color:#f0ffff;
}
form {
display: flex;
justify-content: center;
width: 100%;
align-items: center;
margin-top: 20px;
}
.location {
width: 14%;
height: 2rem;
}
.icon {
width: 1rem;
height: 1.8rem;
}
footer {
display:flex;
flex-direction: row-reverse;
margin-bottom: 5px;
}