forked from lyzidiamond/web-map-quickstart
-
Notifications
You must be signed in to change notification settings - Fork 6
/
big.css
65 lines (54 loc) · 764 Bytes
/
big.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
body {
font-family:'Helvetica';
letter-spacing:-5px;
background:#ddd;
background-size:100%;
color:#444;
margin:0;
padding:0;
font-weight:bold;
}
h1, h2, h3, p {
margin:0;
}
em, a {
font-style:normal;
color:#007a29;
}
strong {
font-style:normal;
color:#b88a00;
}
a {
background:#a891c4;
color:#fff;
text-decoration:none;
}
img {
width:100%;
}
div {
cursor:pointer;
cursor:hand;
position:absolute;
top:0px;
left:0px;
padding:75px;
line-height:97%;
}
div.center {
text-align:center;
}
div.imageText {
text-shadow:0px 0px 5px rgba(0,0,0,0.2);
}
notes {
display:none;
}
/* normally not good, but ok in context of full screen directional navigation */
:focus {
outline: 0;
}
code {
color: #888;
}