source: documentation/trunk/tutorial_sample_files/custom/style-blue.css@ 18423

Last change on this file since 18423 was 18423, checked in by kjdon, 15 years ago

added teh sample files into svn. I got these files from the releases on sourceforge, jun2006 release with the october extra files.

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