source: trunk/template-common/default-layout.css @ 3283

Last change on this file since 3283 was 3283, checked in by plg, 15 years ago

complement to r3282, remove all $Id$ in source code.

  • Property svn:eol-style set to LF
File size: 1.1 KB
Line 
1
2/* Set the width of the menubar for the galery */
3#menubar {
4  width: 18em;
5}
6.content {
7  margin-left: 20em;  /* = #menubar width + 2em */
8}
9/* Set minimum width of the page before getting a scrollbar */
10/* IE5 and IE6 don't get that */
11BODY {
12  min-width: 60em;  /* ~ 3* #menubar width */
13}
14BODY#thePopuphelpPage {
15  min-width: 0;
16}
17
18/* Set some sizes according to your maximum thumbnail width and height */
19.content UL.thumbnails SPAN,
20.content UL.thumbnails SPAN.wrap2 A,
21.content UL.thumbnails LABEL,
22.content DIV.thumbnailCategory DIV.illustration {
23  width: 140px;      /* max thumbnail width + 2px */
24}
25.content UL.thumbnails SPAN.wrap2,
26.content DIV.thumbnailCategory DIV.description {
27  height: 140px;    /* max thumbnail height + 2px */
28}
29
30
31/* Category thumbnails on main page */
32.content UL.thumbnailCategories LI {
33  width: 49.7%;    /* 49.7% for 2 per line, 33.2% for 3 per line*/
34}
35
36/* Set defaults for thumbnails legend */
37.content UL.thumbnails SPAN.thumbLegend {
38  display: block;  /* display: none; if you don't want legend */
39  height: 4em;    /* legend height (don't set auto to be Gecko friendly)*/
40}
41
Note: See TracBrowser for help on using the repository browser.