-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyles.css
118 lines (105 loc) · 2.18 KB
/
styles.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
html, body, #map_canvas {
margin: 0;
padding: 0;
height: 100%;
}
html {
overflow: hidden
}
#header_bar {
height: 45px;
background-color:#333333;
}
#overhang_bar {
height: 15px;
background-color: #1d7713;
border-top: dotted #22ad29 2px;
}
#hidden_h1 {
display: none;
}
#map_canvas {
height: 100%;
}
#side_bar {
height: 100%;
width: 300px;
position: absolute;
top:0px;
left:0px;
background-color: #1d7713;
border-right: solid #666666 1px;
}
#header_img {
display: block;
position: absolute;
top: 0px;
left: 0px;
}
#app_panel {
margin: 5px 10px 5px 10px;
}
.app_panel_button {
font-family: Arial, Helvetica, sans-serif;
font-size:12px;
}
button.btnGreen {
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
color: #ffffff;
padding: 10px 20px;
background: -moz-linear-gradient(
top,
#06941b 0%,
#39b852);
background: -webkit-gradient(
linear, left top, left bottom,
from(#06941b),
to(#39b852));
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
border: 1px solid #5bb548;
-moz-box-shadow:
0px 1px 3px rgba(000,000,000,0.5),
inset 0px 0px 1px rgba(255,255,255,0.5);
-webkit-box-shadow:
0px 1px 3px rgba(000,000,000,0.5),
inset 0px 0px 1px rgba(255,255,255,0.5);
box-shadow:
0px 1px 3px rgba(000,000,000,0.5),
inset 0px 0px 1px rgba(255,255,255,0.5);
text-shadow:
0px -1px 0px rgba(000,000,000,0.7),
0px 1px 0px rgba(255,255,255,0.3);
}
button.btnGreenHover {
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
color: #ffffff;
padding: 10px 20px;
background: -moz-linear-gradient(
top,
#84eb93 0%,
#39b852);
background: -webkit-gradient(
linear, left top, left bottom,
from(#84eb93),
to(#39b852));
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
border: 1px solid #5bb548;
-moz-box-shadow:
0px 1px 3px rgba(000,000,000,0.5),
inset 0px 0px 1px rgba(255,255,255,0.5);
-webkit-box-shadow:
0px 1px 3px rgba(000,000,000,0.5),
inset 0px 0px 1px rgba(255,255,255,0.5);
box-shadow:
0px 1px 3px rgba(000,000,000,0.5),
inset 0px 0px 1px rgba(255,255,255,0.5);
text-shadow:
0px -1px 0px rgba(000,000,000,0.7),
0px 1px 0px rgba(255,255,255,0.3);
}