source: trunk/themes/dark/theme.css @ 8269

Last change on this file since 8269 was 8269, checked in by rvelices, 13 years ago
  • more efficient css rules (according to pagespeed)
  • Property svn:eol-style set to LF
File size: 1.5 KB
Line 
1
2/* text color */
3BODY, H1, H3,
4INPUT.rateButtonSelected /* <= why IE doesn't inherit this ? */ {
5        color:#d0d0d0;
6}
7
8H2, #menubar DT {
9        color: #ffff80;
10}
11
12
13/* backgrounds */
14
15BODY, H3, #imageHeaderBar, #imageToolBar A:hover {
16        background-color: #2f2f2f;
17}
18
19#menubar DL, .content, #imageToolBar, .header_notes {
20        background-color: #505050;
21}
22
23H2, #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
45H2, #menubar DT, #imageToolBar {
46        border-bottom: 1px solid #000;
47}
48
49FIELDSET, INPUT, SELECT, TEXTAREA,
50.content .thumbnailCategory {
51        border: 1px solid gray;
52}
53
54UL.thumbnails SPAN.wrap2 {
55        border: 1px solid #aaaaaa;      /* thumbnails border color and style */
56}
57
58UL.thumbnails SPAN.wrap2:hover,
59.content UL.thumbnailCategories .thumbnailCategory:hover,
60.content UL.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 */
68A, INPUT.rateButton {
69        color: #fff;
70}
71
72A:hover {
73        color: #ffff80;
74}
75
76.pwg-icon {
77        background-image: url(../default/s26/outline_ffffff.png);
78}
79
80A:hover .pwg-icon {
81        background-image: url(../default/s26/outline_ffff80.png);
82}
83
Note: See TracBrowser for help on using the repository browser.