source: extensions/floOs/theme/clear/theme.css @ 3334

Last change on this file since 3334 was 3334, checked in by flop25, 15 years ago

first commit

File size: 2.3 KB
Line 
1
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 {
19  background-color: #eeeeee;
20}
21#theHeader {
22  background-color: #d3d3d3;
23}
24/* borders */
25#menubar DL, .content, #imageToolBar, 
26#comments DIV.comment BLOCKQUOTE {
27  border: 1px solid #d3d3d3;
28}
29
30#theImage IMG {
31  border-color: #d3d3d3;
32}
33
34.content UL.thumbnail IMG {
35    border: 1px solid #a0a0a0;
36}
37
38FIELDSET, INPUT, SELECT, TEXTAREA,
39.content DIV.comment  A.illustration IMG,
40.content DIV.thumbnailCategory {
41  border: 1px solid gray;
42}
43
44#comments DIV.comment BLOCKQUOTE {
45  border-left: 2px solid #696969;
46  background-color: #eee;
47}
48
49.content UL.thumbnails SPAN.wrap2 {
50  border: 1px solid #aaaaaa;    /* thumbnails border color and style */
51  border-radius: 4px 4px;       /* round corners with CSS3 compliant browsers */
52}
53
54.content UL.thumbnails SPAN.wrap2:hover,
55.content UL.thumbnailCategories DIV.thumbnailCategory:hover,
56.content UL.thumbnailCategories DIV.thumbnailCategory:hover A {
57  background-color: #faebd7;
58  border-color: yellow;         /* thumbnails border color when mouse cursor is over it */
59  color: black;
60}
61
62/* links */
63A, INPUT.rateButton {
64    color: #005e89;
65    background: transparent;
66}
67
68A:hover, INPUT.rateButton:hover {
69    color: #858460;
70}
71
72#imageToolBar A, #imageToolBar A:hover {
73    border-bottom: none;
74}
75
76A.navThumb, A.navThumb:hover {
77    border-bottom: none;
78}
79
80/*calendar elements*/
81SPAN.calItem, SPAN.calItemEmpty
82{
83  border: 1px solid silver;
84}
85
86.virtual_cat { background: #fff !important; }
87#mbMenu #quicksearch > p { text-align: left; }
88form p { text-align: left; }
89#qsearchInput { color: #d3d3d3; }
90#qsearchInput:focus { color: #005e89; }
91
92UL.tabsheet LI.normal_tab { background-color: #d3d3d3; }
93UL.tabsheet LI.selected_tab { background-color: #eeeeee; }
94
95UL.tabsheet, UL.tabsheet LI {border-color: gray;}
96UL.tabsheet LI.normal_tab:hover { border-color: black; }
97
98/* menu */
99
100ul#Menu
101{
102        background-color: #D0D0D0;
103}
104ul#Menu li:hover
105{
106        background-color: #CCCCCC;
107}
Note: See TracBrowser for help on using the repository browser.