source: extensions/sobre/theme.css @ 5544

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

Add a admin panel (thanks to P@tounet)
bug:1563

File size: 1.5 KB
Line 
1/* The header */
2#theHeader p {display:none;}
3
4/* text color */
5BODY, H1, H3,
6INPUT.rateButtonSelected /* <= why IE doesn't inherit this ? */ {
7        color:#d0d0d0;
8}
9
10H2, #menubar DT {
11        color: #fff48e;
12}
13
14
15/* backgrounds */
16
17BODY, H3, #imageHeaderBar, #imageToolBar A:hover {
18        background-color: #2f2f2f;
19}
20
21#menubar DL, .content, #imageToolBar, .header_notes {
22        background-color: #505050;
23}
24
25H2, #menubar DT {
26        background-image: url(images/tableh1_bg.png);
27}
28
29#imageHeaderBar H2 {
30        background-image: none;
31        background-color: transparent;
32        border: none;
33}
34
35#imageHeaderBar {
36        background-image: url(images/tableh2_bg.png);
37        background-repeat: repeat-x;
38        background-position: center;
39        border-top: 1px solid #000;
40}
41
42/* borders */
43#menubar DL, .content{
44        border: 1px solid #000;
45}
46
47H2, #menubar DT, #imageToolBar {
48        border-bottom: 1px solid #000;
49}
50
51FIELDSET, INPUT, SELECT, TEXTAREA,
52.content DIV.thumbnailCategory {
53        border: 1px solid gray;
54}
55
56.content UL.thumbnails SPAN.wrap2 {
57        border: 1px solid #aaaaaa;      /* thumbnails border color and style */
58        border-radius: 4px 4px; /* round corners with CSS3 compliant browsers */
59}
60
61.content UL.thumbnails SPAN.wrap2:hover,
62.content UL.thumbnailCategories DIV.thumbnailCategory:hover,
63.content UL.thumbnailCategories DIV.thumbnailCategory:hover A {
64        background-color: #faebd7;
65        border-color: yellow;   /* thumbnails border color when mouse cursor is over it */
66        color: black;
67}
68
69
70/* links */
71A, INPUT.rateButton {
72        color: #fff;
73        border: none;
74}
75
76A:hover {
77        color: #FFF48E;
78}
Note: See TracBrowser for help on using the repository browser.