-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuspass.css
71 lines (69 loc) · 1.32 KB
/
buspass.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=Josefin+Sans:wght@300;400;600&family=Manrope:wght@500&family=Roboto:wght@400;500&display=swap");
body {
height: 100vh;
overflow-x: hidden;
}
header {
display: flex;
align-items: center;
color: white;
background-color: rgb(106, 9, 162);
width: 100vw;
padding-left: 2%;
}
header > p {
margin-left: 5%;
}
.fa-bell {
margin-left: 50%;
}
.route {
background: linear-gradient(to right, rgb(110, 2, 252), rgb(133, 8, 145));
color: white;
font-family: "Roboto", sans-serif;
border-radius: 10px;
font-weight: 500;
font-size: 18px;
margin-top: 5%;
}
.map {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.timings {
display: flex;
justify-content: space-around;
}
.details {
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Adjust the values as needed */
border-radius: 10px;
margin-top: 10%;
height: 45vh;
padding: 5%;
}
ul {
list-style: none;
}
ul > li {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: -5%;
}
ul > li > p {
font-family: "Roboto", sans-serif;
}
.details > p {
font-family: "Roboto", sans-serif;
text-align: center;
}
.tcs_logo {
height: 10vh;
margin-top: 5%;
margin-left: 25%;
display: flex;
justify-content: center;
align-items: center;
}