source: trunk/template/yoga/theme/clear/theme.css @ 1832

Last change on this file since 1832 was 1832, checked in by vdigital, 17 years ago

Some css changes to reach CSS3 Conformity (even not official)
(New): mozilla family hacks are all in a not-ie.css
(New): HTTP Upload has been moved (enhanced visibility).

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.1 KB
Line 
1/* $Id: theme.css 1832 2007-02-17 10:38:21Z vdigital $ */
2
3/* text color */
4BODY, H1, H2, H3, DT,
5INPUT.rateButtonSelected /* <= why IE doesn't inherit this ? */ {
6  color:#696969;        /* dimgray */
7}
8
9/* backgrounds */
10BODY, H3, .throw {
11  background-color: #ffffff;    /* white */
12}
13
14H2, #menubar DT, #imageHeaderBar, #imageToolBar A:hover, .row1 {
15  background-color: #d3d3d3;
16}
17
18#menubar DL, #content, #imageToolBar, .header_notes, .content {
19  background-color: #eeeeee;
20}
21
22/* borders */
23#menubar DL, #content, #imageToolBar, 
24#comments DIV.comment BLOCKQUOTE {
25  border: 1px solid #d3d3d3;
26}
27
28#theImage IMG {
29  border-color: #d3d3d3;
30}
31
32#content UL.thumbnail IMG {
33    border: 1px solid #a0a0a0;
34}
35
36FIELDSET, INPUT, SELECT, TEXTAREA,
37#content DIV.comment  A.illustration IMG, #infos,
38#content DIV.thumbnailCategory {
39  border: 1px solid gray;
40}
41
42#comments DIV.comment BLOCKQUOTE {
43  border-left: 2px solid #696969;
44  background-color: #eee;
45}
46
47#content UL.thumbnails SPAN.wrap2 {
48  border: 1px solid #aaaaaa;    /* thumbnails border color and style */
49  border-radius: 4px 4px;       /* round corners with CSS3 compliant browsers */
50}
51
52#content UL.thumbnails SPAN.wrap2:hover,
53#content UL.thumbnailCategories DIV.thumbnailCategory:hover,
54#content UL.thumbnailCategories DIV.thumbnailCategory:hover A {
55  background-color: #faebd7;
56  border-color: yellow;         /* thumbnails border color when mouse cursor is over it */
57  color: black;
58}
59
60/* links */
61A, INPUT.rateButton {
62    color: #005e89;
63    background: transparent;
64}
65
66A:hover, INPUT.rateButton:hover {
67    color: #858460;
68}
69
70#imageToolBar A, #imageToolBar A:hover {
71    border-bottom: none;
72}
73
74A.navThumb, A.navThumb:hover {
75    border-bottom: none;
76}
77
78/* others */
79.pleaseNote {
80    background: #9c9c9c;
81    color: #ffff99;
82    padding: 1ex;
83    font-weight: bold;
84}
85
86/*calendar elements*/
87SPAN.calItemEmpty { color: silver; }
88
89SPAN.calItem, SPAN.calItemEmpty
90{
91  border: 1px solid silver;
92}
93
94/* nice looking month calendar*/
95TD.calDayCellEmpty, TD.calDayCellFull { border: 1px solid #7E7262;}
96
97TD.calDayCellEmpty { color: silver; }
98
99.calBackDate { color: #000; }
100.calForeDate { color: #fff; }
101.virtual_cat { background: #fff !important; }
Note: See TracBrowser for help on using the repository browser.