blob: 57dd07ef9b37311db69770f18f182e9e55792292 (
plain)
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
|
body {
margin:0;
padding:0;
overflow: hidden;
background: #FFF8DD url(body-bg.png) no-repeat fixed center 10px;
}
#dock {
position:absolute;
bottom:0;
left:0;
width:100%;
height:26px;
background:transparent url(dock-bg.gif) repeat-x 0 0;
z-index: 100000;
}
.dock_icon {
float:left;
width:102px;
height:21px;
margin-top:3px;
background: url(button-bg.gif);
text-align:center;
font-size: 14px;
color: #000;
line-height: 22px;
margin-right:10px;
margin-left:10px;
}
#theme {
float:right;
margin-top:3px;
margin-right:15px;
}
|