1 | |
---|
2 | /* text color */ |
---|
3 | BODY, H1, H3, |
---|
4 | INPUT.rateButtonSelected /* <= why IE doesn't inherit this ? */ { |
---|
5 | color:#d0d0d0; |
---|
6 | } |
---|
7 | |
---|
8 | H2, #menubar DT { |
---|
9 | color: #ffff80; |
---|
10 | } |
---|
11 | |
---|
12 | |
---|
13 | /* backgrounds */ |
---|
14 | |
---|
15 | BODY, H3, #imageHeaderBar, #imageToolBar A:hover { |
---|
16 | background-color: #2f2f2f; |
---|
17 | } |
---|
18 | |
---|
19 | #menubar DL, .content, #imageToolBar, .header_notes { |
---|
20 | background-color: #505050; |
---|
21 | } |
---|
22 | |
---|
23 | H2, #menubar DT { |
---|
24 | background-image: url(images/tableh1_bg.png); |
---|
25 | } |
---|
26 | |
---|
27 | #imageHeaderBar H2 { |
---|
28 | background-image: none; |
---|
29 | background-color: transparent; |
---|
30 | border: none; |
---|
31 | } |
---|
32 | |
---|
33 | #imageHeaderBar { |
---|
34 | background-image: url(images/tableh2_bg.png); |
---|
35 | background-repeat: repeat-x; |
---|
36 | background-position: center; |
---|
37 | border-top: 1px solid #000; |
---|
38 | } |
---|
39 | |
---|
40 | /* borders */ |
---|
41 | #menubar DL, .content{ |
---|
42 | border: 1px solid #000; |
---|
43 | } |
---|
44 | |
---|
45 | H2, #menubar DT, #imageToolBar { |
---|
46 | border-bottom: 1px solid #000; |
---|
47 | } |
---|
48 | |
---|
49 | FIELDSET, INPUT, SELECT, TEXTAREA, |
---|
50 | .content .thumbnailCategory { |
---|
51 | border: 1px solid gray; |
---|
52 | } |
---|
53 | |
---|
54 | .thumbnails .wrap2 { |
---|
55 | border: 1px solid #aaaaaa; /* thumbnails border color and style */ |
---|
56 | } |
---|
57 | |
---|
58 | .thumbnails .wrap2:hover, |
---|
59 | .content .thumbnailCategories .thumbnailCategory:hover, |
---|
60 | .content .thumbnailCategories .thumbnailCategory:hover A { |
---|
61 | background-color: #faebd7; |
---|
62 | border-color: yellow; /* thumbnails border color when mouse cursor is over it */ |
---|
63 | color: black; |
---|
64 | } |
---|
65 | |
---|
66 | |
---|
67 | /* links */ |
---|
68 | A, INPUT.rateButton { |
---|
69 | color: #fff; |
---|
70 | } |
---|
71 | |
---|
72 | A:hover { |
---|
73 | color: #ffff80; |
---|
74 | } |
---|
75 | |
---|
76 | .pwg-icon { |
---|
77 | background-image: url(../default/s26/outline_ffffff.png); |
---|
78 | } |
---|
79 | |
---|
80 | A:hover .pwg-icon { |
---|
81 | background-image: url(../default/s26/outline_ffff80.png); |
---|
82 | } |
---|
83 | |
---|