-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.css
89 lines (74 loc) · 1.07 KB
/
main.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
*{
margin:0;
padding:0;
}
body{
background-color: #fff;
font-family: 'Droid Serif', serif;
}
#content{
width:100%;
margin: 0 auto;
}
#main{
width:100%;
}
.bgi{
position:absolute;
top:0px;
width:100%;
height:100%;
}
#main #titleOverlay{
width:100%;
height:100%;
color:#fff;
background-color: rgba(0, 0, 0, 0.2);
box-shadow: 0px 5px 5px #444;
}
#content-frame{
}
#title{
cursor: pointer;
}
#subtitle{
position: absolute;
bottom: 50px;
font-size: 3em;
text-align: center;
width: 100%;
}
#overlay{
position:absolute;
top:360px;
left:380px;
transform: skew(-20deg,20deg);
}
#grid{
overflow:hidden;
}
.grid_item{
width:150px;
height:150px;
float:left;
margin:15px;
}
h1{
font-weight: 200;
padding:15px;
text-align: center;
}
#map{
clear: both;
position: relative;
overflow:hidden;
width: 100%;
height: 590px;
}
#map iframe{
width: 100%;
height: 620px;
border: none;
position: absolute;
top:-30px;
}