-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
69 lines (69 loc) · 1.2 KB
/
style.css
File metadata and controls
69 lines (69 loc) · 1.2 KB
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
html {
margin: 0;
padding: 0;
width: 100%;
}
body {
background-color: #A5BFDD;
font-size: 12px;
font-family: Arial, Helvetica, sans-serif;
margin: 0;
padding: 0;
color: #000000;
width: 100%;
}
body h1 {
text-align: center;
color: #FFFFFF;
font-size: 28px;
text-shadow: 2px 2px 2px #333;
}
#worldchart_canvas {
width: 85%;
height: 580px;
margin: 0 auto;
position: relative;
z-index: 1;
}
#tags_container {
display: none;
background-color: #FFF;
width: 60%;
height: 550px;
top: 5em;
position: absolute;
z-index: 99;
opacity: 0.9;
filter:alpha(opacity=0.9);
left: 50%;
margin-left: -30%;
-moz-border-radius: 150px;
border-radius: 150px;
-moz-box-shadow: 10px 10px 5px #333;
-webkit-box-shadow: 10px 10px 5px #333;
box-shadow: 10px 10px 5px #333;
}
#tags_canvas {
width: 90%;
height: 100%;
left: 50%;
margin-left: -45%;
position: absolute;
}
#close_button_container {
position: absolute;
top: 0;
right: 0;
width: 16px;
height: 16px;
}
#close_button_container a, #close_button_container a:active, #close_button_container a:visited {
width: 100%;
height: 100%;
font-size: 2em;
text-decoration: none;
color: #000;
}
#close_button_container a:hover {
color: #FFF;
}