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

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

change: according to topic:15067, svn:keywords property was removed

  • Property svn:eol-style set to LF
File size: 1.2 KB
Line 
1/* $Id: /piwigo/trunk/template-common/default-layout.css 6329 2008-08-28T01:26:26.034575Z 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.