source: documented-example-collections/trunk/style-e/styles/style-blue.css@ 19045

Last change on this file since 19045 was 18738, checked in by oranfry, 15 years ago

the rest of the documented example collections

  • Property svn:executable set to *
File size: 3.5 KB
Line 
1/* bluish colour theme - Alternate stylesheet for greenstone.
2 Written by John McPherson, 2006. Feel free to copy/modify this for
3 any purpose.
4*/
5
6body.bgimage {
7 background: #80a0fb; /* light blue */
8 color: #000000;
9 height: 100%;
10}
11
12a:link { color: #006666; }
13
14a:hover { color: #000066; }
15
16a:visited { color: #666633; }
17
18img.link { border: 0; }
19
20/* for unesco/human info etc logos on home page */
21img.logo {
22 border: 0;
23 float: right;
24 margin-left: 10px;
25}
26
27div.v_list {
28 padding: 10px;
29 font-size: smaller;
30}
31/* specific columns, named in the format string */
32div.vlist_entry {
33 clear: both; /* comes after any previous floating divs */
34 border-bottom: 1px grey solid;
35 margin-top: 10px;
36 margin-bottom: 5px;
37}
38div.vlist_entry div {
39 width: 15%;
40 padding-left: 1%;
41 padding-right: 1%;
42 float: left;
43}
44
45div.vlist_entry div.descr { width: 45% }
46
47#banner {
48 margin: 0 0 5px 0;
49 padding: 0;
50 }
51
52/* this div contains the bannerlinks and bannerimage paragraphs */
53div.pageinfo {
54 float: right;
55 text-align: right;
56 width: 45%;
57}
58/* home, help, preferences links */
59p.bannerlinks {
60 font-family: arial;
61 font-size: 10pt;
62 font-weight: bold;
63}
64/* the image based on the page action */
65p.bannerimage {
66 display: none;
67}
68/* the image for the collection, shown in the banner */
69div.collectimage {
70 float: left;
71 text-align: left;
72 width: 45%;
73 margin: 0;
74 padding:0;
75}
76/* link for collection name - will have text if there is no image */
77div.collectimage a {
78 text-decoration: none;
79 color: #666666;
80}
81
82/* make sure this is shown under the other divs (which may be floating) */
83div.bannerextra {clear:both;}
84
85/* blankiconbar */
86div.section p.bar {
87 text-align: center;
88}
89
90div.navbar {
91 background: #39657b;
92 white-space: nowrap;
93 border-left: 1px solid white;
94 border-top: 1px solid white;
95 border-bottom: 1px solid black;
96 border-right: 1px solid black;
97 margin: 0px;
98 min-width: 400px; /* stop it wrapping in skinny windows */
99 font-size: 10pt;
100}
101
102div.divbar { /* for "select a collection" */
103 font-family: arial;
104 font-size: 10pt;
105 font-weight: bold;
106 text-align: top;
107 border: 0;
108}
109p.navbar { /* opt navbar text inside a divbar div */
110 text-align: center;
111 margin: 0px;
112}
113
114a.navlink {
115 padding: 0 10px;
116 background: #508090;
117 color: white;
118 text-decoration: none;
119}
120
121
122a.navlink:hover {
123 background: #6090a0;
124
125}
126
127a.navlink_sel { }
128
129a.navlink:visited {
130 color: white;
131}
132
133
134span.spaceextra {
135 padding: 0 ;
136 margin: 0 0 0 200px;
137
138}
139
140
141/* content inside the pages */
142/* this contains everything - all the other divs */
143div#page {}
144
145/* document content after nav bar */
146div.document {
147 border: 5px #cccccc solid;
148 padding: 5px;
149 background: #aae;
150 margin-top: 5px;
151}
152
153img.icon { border: 0; }
154
155div.queryform {
156 text-align: center;
157}
158span.textselect { white-space: nowrap; }
159
160div.section p {
161 text-align: justify;
162}
163
164div.h_list {
165 text-align: right;
166 padding: 5px;
167 background: #637d7d;
168}
169
170/* A-Z entries other than the current one */
171span.h_item a {
172 text-decoration: none;
173 color: #cccccc;
174}
175span.h_item a:hover {
176 text-decoration: none;
177 color: red;
178}
179
180/* for the home page - auto-generated _homeextra_ macro */
181table.collections {
182 width: 100%;
183 max-width: 800px;
184 text-align: center;
185 /* centres a block element for gecko and opera. (IE 5.5 needs parent
186 * text-align) */
187 margin-left:auto; margin-right:auto;
188}
189
Note: See TracBrowser for help on using the repository browser.