source: gsdl/trunk/web/styles/style-print.css@ 19106

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

moved the css files from images into styles

  • Property svn:keywords set to Author Date Id Revision
File size: 1.7 KB
Line 
1/* printer stylesheet for greenstone. */
2
3/* black text on white */
4body {
5 background: #ffffff;
6 color: #000000;
7}
8
9/* a:visited { color: #666633; } */
10
11a { border: 0; }
12
13img.link { border: 0; }
14
15/* for unesco/human info etc logos on home page */
16img.logo {
17 border: 0;
18 float: right;
19 margin-left: 10px;
20}
21
22/* this contains everything - all the other divs */
23#page {
24/* width: 537px; */
25 margin-left: 80px;
26 margin-right: 30px;
27}
28
29/* the collection image and home/help/prefs links at the top */
30#banner {
31 display: none;
32}
33
34/* blankiconbar */
35div.section p.bar {
36 text-align: center;
37}
38p.bar img {
39 text-align: center;
40 height: 17px;
41/* can't do this, it will stretch the "select a collection" text */
42/* width: 90%; */
43}
44div.navbar {
45 display: none;
46}
47p.navbar {
48 text-align: center;
49 font-family: arial;
50 font-size: 10pt;
51 font-weight: bold;
52}
53span.navlink {
54 vertical-align: top;
55 background-image: url("/images/bg_off.png");
56 padding: 0 10px;
57}
58span.navlink_sel {
59 vertical-align: top;
60 background-image: url("/images/bg_selected.png");
61 padding: 0 10px;
62}
63span.navlink:hover {
64 background-image: url("/images/bg_on.png");
65}
66
67span.navlink a {
68 color: blue; /* for debugging... set to black */
69 text-decoration: none;
70}
71
72div.queryform {
73 text-align: center;
74}
75span.textselect { white-space: nowrap; }
76
77
78div.section p {
79 text-align: justify;
80/* border: solid blue 2px; /* */
81}
82
83/* for a=d (document) */
84div.doc_buttons {
85 display: none;
86}
87
88/* for the home page - auto-generated _homeextra_ macro */
89table.collections {
90 width: 100%;
91 max-width: 800px;
92 text-align: center;
93 /* centres a block element for gecko and opera. (IE 5.5 needs parent
94 * text-align) */
95 margin-left:auto; margin-right:auto;
96}
97
Note: See TracBrowser for help on using the repository browser.