-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
45 lines (45 loc) · 923 Bytes
/
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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
height: 100vh;
background: linear-gradient(45deg,#0076ec,
#42a1ff);
}
.container{
width: 80vw;
background-color: #ffffff;
padding: 3em 1.8em;
position: absolute;
transform: translate(-50%, -50%);
top: 50%;
left: 50%;
border-radius: 0.6em;
box-shadow: 0 0.6em 2.5em rgba(0,7,70,0.2);
}
.container img{
width: 6.25em;
display: block;
margin: auto;
}
#location-details{
font-size: 1.75em;
text-align: center;
margin: 1em 0 1.7em 0;
color: #021d38;
font-weight: 500;
}
.container button{
display: block;
margin: auto;
background-color: #42a1ff;
color: #ffffff;
border: none;
font-size: 1.25em;
padding: 1em 2.5em;
border-radius: 0.25em;
cursor: pointer;
}