source: documentViewer/css/docuviewer.css @ 533:ea70a45594c7

Last change on this file since 533:ea70a45594c7 was 533:ea70a45594c7, checked in by casties, 12 years ago

set base font and stuff.

File size: 3.8 KB
Line 
1
2body {
3    background-color: #ebebeb;
4    margin: 5px;
5    font-family: Verdana,Arial,sans-serif;
6    font-size: 12px;
7}
8
9a:link,
10a:visited {
11    color: black;
12    font-weight: bold;
13    text-decoration: none;
14}
15a:hover {
16    text-decoration: underline;
17}
18
19/*
20 * head
21 */
22div.page-head div.logo {
23    display: table-cell;
24    vertical-align: top;
25    padding: 5px;
26}
27div.page-head div.title-block {
28    display: table-cell;
29    vertical-align: top;
30}
31div.page-head div.title {
32    max-width: 50em;
33    border: 1px solid silver;
34    padding: 0.5em; 
35    background-color: white;
36}
37
38ul.view-switcher {
39    padding-left: 0;
40    margin-top: 4px;
41}
42ul.view-switcher li {
43    list-style-type: none;
44    display: inline;
45    background-color: #d0d0d0;
46    margin-right: 0;
47    border-bottom: 1px solid silver;
48    border-left: 1px solid silver;
49    border-right: 1px solid silver;
50    border-radius: 0 0 5px 5px;
51    padding: 5px;
52}
53ul.view-switcher li.sel {
54    background-color: white;
55}
56
57div.page-body {
58    display: table-row;
59}
60div.page-body div.col {
61    display: table-cell;
62    vertical-align: top;
63}
64
65/*
66 * TOC
67 */
68div.toc-container {
69    display:table-row;
70}
71
72div.toc-switcher {
73    display: table-cell;
74    width: 26.5px; /* for moz and webkit -- don't ask me */
75}
76div.toc-switcher ul {
77    position: absolute;
78    /* z-index: 20; */
79    transform: rotate(270deg);
80    transform-origin: top left;
81    -moz-transform: rotate(270deg);
82    -moz-transform-origin: top left;
83    -webkit-transform: rotate(270deg);
84    -webkit-transform-origin: top left;
85    -o-transform: rotate(270deg);
86    -o-transform-origin: top left;
87    left: 12px;
88    top: 486px;
89    padding: 0px;
90}
91div.toc-switcher li {
92    list-style-type: none;
93    display: inline;
94    background-color: #d0d0d0;
95    margin-bottom: 5px;
96    border-top: 1px solid silver;
97    border-left: 1px solid silver;
98    border-right: 1px solid silver;
99    border-radius: 5px 5px 0 0;
100    padding: 5px;
101}
102div.toc-switcher li.sel {
103    background-color: white;
104}
105
106div.tocbody {
107    /* z-index: 10; */
108    display: table-cell;
109    border: 1px solid silver;
110    padding: 0.5em; 
111    background-color: white;   
112}
113
114div.tocbody.text, 
115div.tocbody.figures {
116    max-width: 20em;
117    background-color: white;
118}
119
120div.tocbody.text .toc, 
121div.tocbody.figures .toc,
122div.tocbody.concordance .toc {
123    float:left;
124    clear:right; 
125}
126div.tocbody.text .toc.float.right, 
127div.tocbody.figures .toc.float.right,
128div.tocbody.concordance .toc.float.right {
129    float:right;
130}
131
132div.tocbody table.thumbs td {
133    text-align: center;
134}
135div.tocbody table.thumbs .thumb {
136    padding: 3px;
137}
138div.tocbody table.thumbs .thumbsel {
139    padding: 2px;
140    border: 1px solid blue;
141}
142div.tocbody table.thumbs .thumbcap {
143    color: black;
144}
145
146/*
147 * content
148 */
149div.col.main {
150    padding-left: 5px;
151    padding-right: 5px;
152}
153div.col.main div.ruler {
154    margin-top: 4px;
155}
156div.col.main span.ruler-main {
157    background-color: #d0d0d0;
158    border-left: 1px solid silver;
159    border-top: 1px solid silver;
160    border-right: 1px solid silver;
161    border-radius: 5px 5px 0 0;
162    padding: 4px;   
163}
164
165div.col.main div.content {
166    border: 1px solid silver;
167    padding: 1em; 
168    background-color: white;
169    font-size: 14px;
170    font-family: Junicode,Gentium,Georgia,serif;
171}
172div.col.main div.content a:link,
173div.col.main div.content a:visited {
174    font-weight: inherit;
175    color: #892B06;
176}
177span.hit.highlight {
178    background-color: lime;
179}
180
181/*
182 * buttons
183 */
184div.col.buttons div.options {
185    border: 1px solid silver;
186    padding: 0.5em; 
187    background-color: white;   
188}
189div.col.buttons h4 {
190    margin-top: 0;
191    margin-bottom: 0;
192}
193div.col.buttons ul {
194    list-style-type: none;
195    padding-left: 0;
196    margin-top: 0.5em;
197    margin-bottom: 0.5em;
198}
199
200/*
201 * search results
202 */
203div.col.results {
204    max-width: 20em;
205}
206
Note: See TracBrowser for help on using the repository browser.