forked from dartmouth-cs52/git-map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
54 lines (43 loc) · 901 Bytes
/
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
html, body, #map {
height: 100%;
width: 100%;
background: rgb(50,50,60);
}
a, u {
text-decoration: none !important;
}
/* the below does a css3 round cut */
.circular {
border-radius: 100px;
-webkit-border-radius: 100px;
-moz-border-radius: 100px;
}
.circular img {
opacity: 0;
filter: alpha(opacity=0);
}
.info {
padding: 6px 10px;
font: 14px/16px Arial, Helvetica, sans-serif;
background: white;
background: rgba(255,255,255,0.8);
box-shadow: 0 0 15px rgba(0,0,0,0.2);
border-radius: 5px;
text-align: right;
}
.info h4 {
color: #777;
}
.error {
padding: 6px 10px;
font: 14px/16px Arial, Helvetica, sans-serif;
background: white;
background: rgba(255,255,255,0.8);
box-shadow: 0 0 15px rgba(0,0,0,0.2);
border-radius: 5px;
text-align: left;
}
.error h1 {
color: #777;
font-size: 2em;
}