source: extensions/rv_gmaps/trunk/template/style.css @ 3447

Last change on this file since 3447 was 3447, checked in by rvelices, 15 years ago
  • added RV Map & Earth extension
  • Property svn:eol-style set to LF
File size: 2.1 KB
Line 
1
2HTML, BODY {
3        height: 100%;
4        max-height: 100%;
5        margin: 0;
6        padding: 0;
7        border: 0;
8}
9
10HTML {
11/* hide overflow:hidden from IE5/Mac */
12        overflow: hidden; /*get rid of scroll bars in IE */
13        /* */
14}
15
16BODY {
17        font-family: Verdana, Arial, Helvetica, sans-serif;
18        font-size: 12px;
19}
20
21
22#titlebar {
23        width: 100%;
24        height: 18px;
25        overflow: hidden;
26}
27
28
29#map {
30        overflow: auto;
31        position: absolute;
32        left: 0; width: 100%;
33        top: 18px; bottom: 0;
34}
35
36
37
38
39#titlebar .titlebar_links { float:right; }
40
41#titlebar .titlebar_title {
42  margin-left: 5px;
43  margin-right: 5px;
44}
45
46#titlebar .titlebar_title A {
47  font-size: 14px;
48  font-weight: bold;
49}
50
51#titlebar FORM {
52  display:inline;
53  margin:0;
54}
55
56#titlebar FORM INPUT {
57  border: 1px solid gray;
58  font-size:80%;
59}
60
61#titlebar FORM INPUT {
62  color: #404040;
63  background-color: #dddddd;
64}
65
66#titlebar FORM INPUT:focus {
67  color: black;
68  background-color: #ffffff;
69}
70
71#titlebar .titlebar_links A {
72  border: none;
73  text-decoration: none;
74}
75
76#titlebar .titlebar_links A SPAN {
77  text-decoration: underline;
78}
79
80#titlebar IMG {
81  border: none;
82  vertical-align: bottom;
83}
84
85
86#titlebar #dataLoadStatus {
87        min-width: 150px;
88        width: 150px;
89        margin-right: 10px;
90        margin-left: 5px;
91        font-weight: bold;
92}
93
94
95/* Info Window Structure is
96DIV.gmiw_header
97  SPAN#pwgImageCounters
98  A#gotoPrevImage
99  A#gotoNextImage
100  A#pwgImageBlowup
101DIV#pwgImageDetail
102  DIV.gmiw_imageTitle
103  DIV.gmiw_imageContent
104    DIV.gmiw_imageWrap
105      A IMG
106    DIV.gmiw_imageComment
107*/
108
109.gmiw_header A {
110        margin-left: 5px;
111        border: none;
112        text-decoration: none;
113}
114
115.gmiw_header IMG { vertical-align: bottom; }
116
117.gmiw_header A SPAN { text-decoration: underline; }
118
119.gmiw_header A#pwgImageBlowup {
120        margin-left: 15px;
121        font-weight: bold;
122}
123
124.gmiw_imageTitle {
125        font-size: 14px;
126        font-weight: bold;
127}
128
129.gmiw_imageContent {
130        min-width: 325px;
131        width: 325px;
132        min-height: 168px;
133        height: 168px;
134        overflow-y: auto;
135}
136
137.gmiw_imageWrap {
138        margin: 0 5px -3px 0; /* - for bottom something wrong with Geko and Opera ignored by IE6*/
139        float:left;
140        display:inline;
141}
142
143.gmiw_imageWrap A IMG { border-width: 1px; }
144
145.gmiw_imageComment {  display:inline; }
146
147
Note: See TracBrowser for help on using the repository browser.