blob: 9612d732c354139634e3d322f101001177f33dba (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
#controls {
position: absolute;
left: 0;
bottom:0;
right: 0;
height: 30px;
background-color: -moz-dialog;
}
#home-button {
margin: auto;
margin-top: 3px;
width: 24px;
height: 24px;
background: #eee url("images/desktop/home-black.png") center no-repeat;
border: 1px solid #888;
border-radius: 12px;
display: block;
}
#home-button::-moz-focus-inner {
padding: 0;
border: 0;
}
#home-button:hover {
background-image: url("images/desktop/home-white.png");
background-color: #ccc;
border-color: #555;
}
#home-button.active {
background-image: url("images/desktop/home-white.png");
background-color: #888;
border-color: black;
}
#rotate-button {
position: absolute;
top: 3px;
bottom: 3px;
right: 3px;
width: 24px;
height: 24px;
background: #eee url("images/desktop/rotate.png") center no-repeat;
border: 1px solid #888;
border-radius: 12px;
display: block;
}
#rotate-button:hover {
background-color: #ccc;
border-color: #555;
}
#rotate-button.active {
background-color: #888;
border-color: black;
}
|