source: trunk/template/yoga/content.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: 3.4 KB
Line 
1/* $Id: /piwigo/trunk/template/yoga/content.css 6539 2008-10-09T23:14:43.701478Z rvelices  $ */
2.content {
3        margin-right: 1em;
4        margin-bottom: 1em; /* when it's longer than menu bar */
5}
6
7BODY#theCommentsPage .content,
8BODY#theUploadPage .content,
9BODY#theRegisterPage .content,
10BODY#theIdentificationPage .content,
11BODY#theProfilePage .content,
12BODY#theSearchPage .content,
13BODY#theAboutPage .content,
14BODY#thePopuphelpPage .content,
15BODY#thePasswordPage .content,
16BODY#theNotificationPage .content,
17BODY#theTagsPage .content,
18BODY#theNBMPage .content
19{
20        margin: 1em;
21}
22
23.content H2 { margin-bottom: 3px;} /*<- for IE otherwise calendar select is displaced to middle of page*/
24
25.content .navigationBar, .content .additional_info, .content .calendarBar {
26        margin: 8px 4px;
27        text-align: center;
28}
29
30.content .pageNumberSelected {
31        font-style: italic;
32        font-weight: bold;
33}
34
35.content .additional_info {
36        font-size: 110%;
37}
38
39
40/* actions */
41UL.categoryActions {
42        margin: 0 2px;
43        width: auto;
44        padding: 0;
45        text-indent: 0;
46        list-style: none;
47        text-align: center;
48}
49
50.content DIV.titrePage UL.categoryActions {
51        float: right;
52        text-align: center;
53}
54
55.content DIV.titrePage {
56        padding: 0 0 3px;
57}
58
59.content UL.categoryActions LI {
60        display: inline;
61}
62
63.content UL.categoryActions A IMG, UL.categoryActions A {
64        border: none;
65        margin-bottom: -5px;
66}
67
68/* begin chronology/calendar elements*/
69.content DIV.calendarViews {
70        display: block;
71        float: right;
72        margin: 2px 0 0;
73}
74
75SPAN.calItem, SPAN.calItemEmpty {
76        font-weight: bold;
77        margin: 0 1px;
78}
79
80SPAN.calItem A { border:0 }
81
82.content DIV.calendarCalBar {
83        margin: 10px 10px;
84        text-align: left;
85}
86
87SPAN.calCalHead {
88        font-weight: bold;
89        font-size: 110%;
90        margin: 0 2px;
91}
92
93SPAN.calCal { margin: 0 2px; }
94
95/* nice looking month calendar*/
96TABLE.calMonth {
97        border: none;
98        border-collapse: collapse;
99        margin-bottom: 10px;    /*<-IE ignores this */
100}
101
102TD.calDayCellFull, TD.calDayCellEmpty, TD.calDayCellBlank {
103        vertical-align: top;
104  font-weight: bold;
105  font-size: 18px;
106}
107
108TD.calDayHead {
109  font-weight: bold;
110  font-size: 12px;
111        text-align: center;
112}
113
114DIV.calImg {
115        overflow: hidden;
116        vertical-align: bottom;
117        z-index: 1;
118        position: relative; /*<- this required by IE*/
119}
120
121.calImg img {
122        position: relative;
123        border: 0;
124}
125
126.calBackDate {
127        padding-left: 4px;
128        padding-top: 0px;
129        z-index: 2;
130        position: absolute;
131        vertical-align: top;
132        color: #000;
133}
134
135.calForeDate {
136        padding-left: 5px;
137        padding-top: 1px;
138        z-index: 3;
139        position: absolute;
140        vertical-align: top;
141        color: #fff;
142}
143
144/* Category thumbnails on main page, CSS code inspired from MOD subcatify */
145.content UL.thumbnailCategories {
146        margin: 0;
147        padding: 0;
148        list-style: none;
149        overflow: hidden;
150        width: 100%;
151}
152
153.content UL.thumbnailCategories LI {
154        margin:0;
155        padding:0;
156        float:left;
157}
158
159.content DIV.thumbnailCategory {
160        display:block;
161        padding: 2px 0px 0px 2px;
162        margin: 5px;
163}
164
165.content DIV.thumbnailCategory DIV.description {
166        font-size: 90%;
167        overflow: auto;
168        /*width: inherit;*/
169}
170
171.content DIV.thumbnailCategory DIV.description H3 {
172        text-align: left;
173        background: transparent;
174        margin: 0;
175        padding: 0.1em;
176        font-size: 120%;
177}
178
179.content DIV.thumbnailCategory DIV.description P {
180        margin: 0;
181}
182
183.content DIV.thumbnailCategory DIV.illustration {
184        text-align: left;
185        margin: 2px 0 0 2px;
186        float: left;
187}
188
189
190/* User comments */
191DIV#comments {
192        padding-left: 5px;
193        padding-right: 5px;
194}
195
196DIV#comments DIV.description {
197        font-size: 100%;
198}
Note: See TracBrowser for help on using the repository browser.