forked from Wheels-of-Steel/wheels-of-steel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
122 lines (99 loc) · 1.66 KB
/
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
header{
background-color: #005087;
background-image: linear-gradient(#0081bc, #005087);
}
nav{
margin: 0 4rem;
}
a{
text-decoration: none;
color: rgb(0, 0, 0);
background-color: white;
}
header h1{
margin: 4rem 0 0 10rem;
padding-bottom: 4rem;
color: white;
}
a:hover{
color: #000000;
}
nav a{
display: flex;
align-items: center;
}
nav img{
width: 150px;
height: 150px;
}
nav p{
margin-left: 3rem;
font-size: 2rem;
}
main {
max-width: 1200px;
margin: 0 auto;
display: flex;
flex-direction: column;
}
.query{
display: flex;
margin: 4rem 0;
}
/* Search Box */
.search-box{
width: 40%;
box-shadow: 5px 5px 5px lightgrey;
padding-bottom: 60vh;
}
.map-box{
width: 50%;
margin-left: 3rem;
box-shadow: 5px 5px 5px lightgrey;
}
.input-group{
width: 80% !important;
border-left: solid 4px #e4a535 !important;
}
.fakeimg {
height: 200px;
background: #aaa;
}
body { margin: 0; padding: 0; }
#map { position: relative; top: 0; bottom: 0; width: 100%; height: 600px;}
.results{
display: flex;
flex-wrap: wrap;
gap: 2rem;
}
.result-box{
max-width: 25%;
margin: 1rem;
padding-bottom: 1rem;
border-bottom: solid 4px #0081bc;
color: #0081bc;
}
.stop-tag{
background-color: #0081bc;
color: white;
padding: 0.5rem;
}
.result-box img{
width: 100%;
}
.result-box p{
font-size: 1.3rem;
}
.download{
border-radius: 5px;
margin: 3rem auto;
}
.download-btn{
background-color: #0081bc;
color: white;
padding: 1rem 2rem;
}
.download-btn:hover{
background-color: #005087;
color: white;
}