source: tags/release-1_6_2/template-common/default-layout.css @ 16859

Last change on this file since 16859 was 1397, checked in by chrisaga, 18 years ago

merge from trunk r1395:1396 (fix bug 410)

  • Property svn:keywords set to Author Date Id Revision
File size: 1.4 KB
Line 
1/* $Id: default-layout.css 1397 2006-06-24 12:30:27Z chrisaga $ */
2
3/* Set the width of the menubar for the galery */
4#menubar {
5  width: 18em;
6}
7#content {
8  margin-left: 20em;    /* = #menubar width + 2em */
9}
10/* Set minimum width of the page before getting a scrollbar */
11/* IE5 and IE6 don't get that */
12BODY {
13  min-width: 60em;      /* ~ 3* #menubar width */
14}
15BODY#thePopuphelpPage {
16  min-width: 0;
17}
18
19/* Set the width of the menubar for the admin section */
20BODY#theAdminPage #menubar {
21  width: 12.5em;
22}
23BODY#theAdminPage #content {
24  margin-left: 14.5em;  /* = #menubar width + 2em */
25}
26
27/* Set some sizes according to your maximum thumbnail width and height */
28#content UL.thumbnails SPAN,
29#content UL.thumbnails SPAN.wrap2 A,
30#content UL.thumbnails SPAN.wrap2 LABEL,
31#content DIV.thumbnailCategory DIV.illustration {
32  width: 140px;                 /* max thumbnail width + 2px */
33}
34#content UL.thumbnails SPAN.wrap2,
35#content DIV.thumbnailCategory DIV.description {
36  height: 140px;                /* max thumbnail height + 2px */
37}
38#content DIV.comment BLOCKQUOTE {
39  margin-left: 150px;           /*maximum thumbnail width + ~10px */
40}
41
42/* Category thumbnails on main page */
43#content UL.thumbnailCategories LI {
44  width: 49.9%;         /* 49.9% for 2 per line, 33.3% for 3 per line*/
45}
46
47/* Set defaults for thumbnails legend */
48#content UL.thumbnails SPAN.thumbLegend {
49  display: block;       /* display: none; if you don't want legend */
50  height: 4em;          /* legend height (don't set auto to be Gecko friendly)*/
51}
Note: See TracBrowser for help on using the repository browser.