-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpresenter.css
More file actions
113 lines (105 loc) · 2.31 KB
/
presenter.css
File metadata and controls
113 lines (105 loc) · 2.31 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<style>
#container {
position: relative;
width: 430px;
}
div#simpleview ul#nav {
display: block;
list-style: none;
position: relative; top: 100px; z-index: 20;
}
div#simpleview ul#nav li#prev {
float: left; margin: 0 0 0 -35px;
}
div#simpleview ul#nav li#next {
float: right; margin: 0 5px 0 0;
}
div#simpleview ul#nav li a {
display: block; width: 27px; height: 48px; text-indent: -9999px;
}
div#simpleview ul#nav li#prev a {
background: url('images/nav_left.png');
}
div#simpleview ul#nav li#prev a:hover {
background: url('images/on_nav_left.png');
}
div#simpleview ul#nav li#next a {
background: url('images/nav_right.png');
}
div#simpleview ul#nav li#next a:hover {
background: url('images/on_nav_right.png');
}
#header {
background: url('images/top-black.png') no-repeat;
width: 430px;
height: 35px;
text-align: center;
color: #eee;
font-family: verdana;
font-size: 12px;
font-weight: bold;
z-index: 20;
position: relative;
}
#slideimg {
position: relative;
top: -11px;
}
div#slidedesc {
top: -11px;
position: relative;
background-color: #171717;
color: #fff;
vertical-align: middle;
font-family: verdana, arial, sans-serif;
padding-top: 2px;
padding-bottom: 2px;
padding-left: 5px;
font-size: 11px;
}
table#tblhead {
border-collapse: 0;
border-spacing: 0;
padding: 0;
margin: 0;
width: 430px;
}
td#navleft {
width: 100px;
vertical-align: baseline;
text-align: left;
font-size: 11px;
color: #fff;
text-decoration: none;
font-family: verdana, arial, sans-serif;
padding: 0;
}
td#navcenter {
width: 230px;
height: 25px;
font-size: 11px;
vertical-align: middle;
color: #fff;
text-align: center;
text-decoration: none;
text-transform: uppercase;
font-weight: bold;
font-family: verdana, arial, sans-serif;
}
td#navleft img {
}
td#navright {
width: 100px;
vertical-align: baseline;
text-align: right;
font-size: 11px;
color: #fff;
text-decoration: none;
font-family: verdana, arial, sans-serif;
}
td#navleft a, td#navleft a:visited, td#navleft a:hover, td#navright a, td#navright a:visited, td#navright a:hover {
border: 0;
color: #fff;
text-decoration: none;
}
</style>