-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathstyle.css
61 lines (50 loc) · 917 Bytes
/
style.css
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
61
body {
overflow:hidden;
background:#333333;
}
#main {
width:800px;
height:533px;
position: fixed;
top: 50%;
left: 50%;
margin-top: -266px;
margin-left: -400px;
background:transparent url(BumblebeeBookSplashScreen.jpg) center center no-repeat;
-webkit-box-shadow: #000 1px 3px 5px;
-moz-box-shadow: #000 1px 3px 5px;
box-shadow: #000 1px 3px 5px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
#main ul {
position:absolute;
width:300px;
margin:0px;
padding:0px;
top:200px;
left:70px;
font-size:9pt;
opacity:0.8;
}
#main ul li.pdf{
list-style-image:url('pdf.png');
list-style-position:inside;
}
#main ul li.epub{
list-style-image:url('epub.png');
list-style-position:inside;
}
#main ul li a{
text-decoration:none;
color:#333333;
}
#footer{
position:absolute;
width:100%;
bottom:3px;
text-align:center;
font-size:8pt;
color:#663333;
}