source: tags/2.0.8/template-common/default-layout.css @ 13022

Last change on this file since 13022 was 2489, checked in by rvelices, 16 years ago
  • removed and moved (from common to admin) some CSS rules
  • upgraded jQuery and accordion to latest version (and reorganised a bit their location)
  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 1.1 KB
Line 
1/* $Id: default-layout.css 2489 2008-08-28 01:26:26Z rvelices $ */
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 some sizes according to your maximum thumbnail width and height */
20.content UL.thumbnails SPAN,
21.content UL.thumbnails SPAN.wrap2 A,
22.content UL.thumbnails LABEL,
23.content DIV.thumbnailCategory DIV.illustration {
24  width: 140px;      /* max thumbnail width + 2px */
25}
26.content UL.thumbnails SPAN.wrap2,
27.content DIV.thumbnailCategory DIV.description {
28  height: 140px;    /* max thumbnail height + 2px */
29}
30
31
32/* Category thumbnails on main page */
33.content UL.thumbnailCategories LI {
34  width: 49.7%;    /* 49.7% for 2 per line, 33.2% for 3 per line*/
35}
36
37/* Set defaults for thumbnails legend */
38.content UL.thumbnails SPAN.thumbLegend {
39  display: block;  /* display: none; if you don't want legend */
40  height: 4em;    /* legend height (don't set auto to be Gecko friendly)*/
41}
42
Note: See TracBrowser for help on using the repository browser.