-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
58 lines (52 loc) · 982 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
57
58
body {
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
height: 100vh;
/* background-color: black; */
}
#map {
flex: 1;
}
.bottom-bar {
color: #fff;
padding: 3px;
position: fixed;
bottom: 0;
left: 0;
right: 0;
}
#order-details {
background-color: #fff;
border-top-left-radius: 20px;
border-bottom-left-radius: 20px;
border-top-right-radius: 20px;
border-bottom-right-radius: 20px;
overflow:hidden;
padding: 10px;
color: black;
font-family: 'Arial Rounded MT Bold';
font-size: 20px;
border-width: 5px;
border: black;
padding-left: 15px;
}
#time {
font-family: 'Arial Rounded MT Bold';
font-size: 40px;
padding-top: 10px;
}
#dist {
padding-bottom: 10px;
}
#circle {
position: absolute;
right: 50px;
bottom: 35px;
height: 50px;
width: 50px;
background-color: #55D471;
border-radius: 50%;
display: inline-block;
}