-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
103 lines (99 loc) · 1.64 KB
/
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
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
body{
margin: 0;
padding: 0;
}
#div {
margin: 0;
width: 100%;
}
header{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 150px;
background-image: linear-gradient(121deg,#3023AE,#84C7A6) ;
}
.title{
position: absolute;
margin-top: 0;
margin-left: 7%;
font-size: 72px;
font-family: 'Anton', sans-serif;
color: #F89033;
}
ul{
list-style-type: none;
font-family: 'Arial';
}
nav li{
float: right;
margin-top: 2% ;
padding-right: 4%;
font-size: 48px;
font-weight: 600;
}
a{
color: #2C2091;
}
#content{
position: relative;
top: 150px;
min-height: 900px;
font-family: 'Arial';
font-size: 24px;
}
#searchbox{
position: absolute;
top: 3%;
left: 4%;
text-align: left;
background-color: white;
border-radius: 8px;
border: solid 5px #2C2091;
width: 860px;
height: 59px;
font-size: 24px;
}
#searchbutton{
position: absolute;
top: 3%;
left: 63%;
text-align: center;
border-radius: 8px;
border: solid 5px #2C2091;
background-color: #4A90E2;
color: white;
width: 132px;
height: 59px;
font-size: 24px;
font-weight: 600;
}
.map{
position: absolute;
margin-top: 10%;
margin-left: 4%;
min-width: 1200px;
min-height: 600px;
background-color: gray;
}
footer{
position: fixed;
bottom: 0;
left: 0;
height: 60px;
width: 100%;
background-color: #2C2091;
}
.copyright{
font-family: 'Arial';
color: white;
float: left;
margin-left: 4%;
font-size: 24px;
}
.about{
min-width: 80%;
margin-top: 5%;
margin-left: 5%;
}