blob: 142e5e3e6dc0f88d913b9a21e79a9d3121c4b35a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
body{
background-color: #FFF;
background-image: url("/pattern1a.png");
background-repeat: repeat;
color: #000;
}
#panel li a.active{
background-color:#CEC;
}
#panel li a:hover:not(.active){
background-color:#DFD;
}
#panel,#footer{
background-color:#EEE;
background-image: url("/pattern1a.png");
background-repeat: repeat;
}
#content .block{
border: 1px solid #333;
}
a.highlighted{color:#EA0 !important;}
a:link{
color:#1194FF;
}
a:visited{
color:#20ACFF;
}
a:hover{
color:#3FBFFF;
}
a:active{
color:#CCCCFF;
}
blockquote{
border: 1px solid #333;
}
button,.fakebtn{
color:white;
background-color:#4A4;
}
button:hover,.fakebtn:hover{
background-color:#5B5;
}
button:active,.fakebtn:active{
background-color:#6C6;
}
button:disabled{
background-color:#999;
}
input[type="text"]{
color:#000;
border-bottom-color:#4A4;
}
textarea{
color:#000;
border-color:#4A4;
}
.widgetbg{background-color:rgba(204,204,204,0.6);}
.sliderb1{background-color:rgba(64,240,96,0.6);}
.sliderb2{background-color:#10C048;}
|