source: extensions/sobre/theme.css @ 5543

Last change on this file since 5543 was 5543, checked in by Gotcha, 14 years ago

First add
Copy the dark theme

File size: 1.4 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: #fff48e;
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 DIV.thumbnailCategory {
51        border: 1px solid gray;
52}
53
54.content UL.thumbnails SPAN.wrap2 {
55        border: 1px solid #aaaaaa;      /* thumbnails border color and style */
56        border-radius: 4px 4px; /* round corners with CSS3 compliant browsers */
57}
58
59.content UL.thumbnails SPAN.wrap2:hover,
60.content UL.thumbnailCategories DIV.thumbnailCategory:hover,
61.content UL.thumbnailCategories DIV.thumbnailCategory:hover A {
62        background-color: #faebd7;
63        border-color: yellow;   /* thumbnails border color when mouse cursor is over it */
64        color: black;
65}
66
67
68/* links */
69A, INPUT.rateButton {
70        color: #fff;
71        border: none;
72}
73
74A:hover {
75        color: #FFF48E;
76}
Note: See TracBrowser for help on using the repository browser.