forked from KaidiGuo/LBS-GroupWork
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
74 lines (68 loc) · 1.13 KB
/
index.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
html{
padding: 0px;
margin: 0px;
width: 100%;
height: 100%;
}
body{
padding: 0px;
margin: 0px;
width: 100%;
height: 100%;
}
.mainpart{
height: 82%;
width: 100%;
background-color: rgb(222, 231, 236);
/*background-color: green;*/
}
.bar{
text-align: center;
position: relative;
z-index: 100;
margin-top: 4%;
float: left;
width: 15%;
height: 90%;
background-color: rgb(0, 102, 153);
/*border: 1px solid black;*/
border-top-right-radius: 25px;
}
.search{
color: rgb(255, 255, 255);
}
.map{
position: relative;
z-index: 50;
float: left;
width: 70%;
height: 90%;
margin-top: 4%;
margin-left: -2%;
background-color: rgb(255, 255, 255);
border-top-right-radius: 25px;
}
.infor{
position: relative;
z-index: 30;
margin-top: 4%;
float: left;
width: 19%;
margin-left: -2%;
height: 90%;
background-color: rgb(143, 190, 229);
/*border: 1px solid black;*/
border-top-right-radius: 25px;
}
.footer{
text-align: center;
position: absolute;
bottom: 0px;
width: 100%;
background-color: rgb(222, 231, 236);
height: 7.5%;
}
.footer p{
font-family: Arial;
font-size: 50%;
}