-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathslide.css
More file actions
138 lines (107 loc) · 2.88 KB
/
slide.css
File metadata and controls
138 lines (107 loc) · 2.88 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/*
* Toolbar styles
*/
#toolbar {
position: fixed;
bottom: 0; left: 0;
padding: 5px;
background-color: rgba(255, 255, 255, 0.5);
-moz-border-radius-topright: 5px;
-webkit-border-top-right-radius: 5px;
}
.slideshow #toolbar { opacity: 0.1; }
.slideshow #toolbar:hover { opacity: 0.7; }
#toolbar li {
float: left;
margin-left: 5px;
text-indent: -9999px;
}
#toolbar li a {
display:block;
width: 24px; height: 24px;
background: url(icons.png) no-repeat 0 0;
}
#toolbar .slide-toggle a { background-position: -48px 0; }
#toolbar .slide-toggle a:hover { background-position: -48px -24px; }
.slideshow #toolbar .slide-toggle a { background-position: -72px 0; }
.slideshow #toolbar .slide-toggle a:hover { background-position: -72px -24px; }
#toolbar .slide-prev a { background-position: 0 0; }
#toolbar .slide-prev a:hover { background-position: 0 -24px; }
#toolbar .slide-next a { background-position: -24px 0; }
#toolbar .slide-next a:hover { background-position: -24px -24px; }
/*
* Generic slides styles
*/
.slideshow {
overflow: hidden;
}
/* hide all slideshow elements in body */
.slideshow-only { display: none; }
/* but show them when document is in slideshow mode */
.slideshow .slideshow-only { display: block; }
/* hide things that are not ment to be in the slideshow */
.slideshow .slideshow-exclude { display: none }
.slideshow .iframe.slide {
position: relative;
height: 900px;
}
.slideshow .overlay,
.slideshow .slide iframe {
position: absolute;
top: 0; bottom: 0;
left: 0; right: 0;
border: 0;
width: 100%; height: 100%;
overflow: hidden;
}
.slideshow .overlay a {
position: absolute;
top: 0; right: 0;
padding: 0.25em;
background: #FFFFCC;
-moz-border-radius-bottomleft: 0.25em;
-webkit-border-bottom-left-radius: 0.25em;
}
/*
* My slide-show styles
*/
.slideshow {
font-family: "Lucida Sans Unicode","Lucida Grande","Lucida Sans",Verdana,Arial,sans-serif;
font-size: 2em;
width: auto;
}
.slideshow .slide {
margin-top: 900px;
}
.slideshow h1 { font-size: 5em; }
.slideshow h2 {
font-size: 3em;
padding: 0.5em;
}
.slideshow p {
margin: 1em 0;
}
/* Title slide */
.slideshow #title {
padding-top: 1em;
}
.slideshow #title,
.slideshow .tagline {
width: 800px;
margin: 0 auto;
text-align: center;
}
.slideshow .tagline {
font-size: inherit;
margin-top: 0.5em;
}
.slideshow .content.slide + p {
font-size: 1.5em;
margin: 1.5em;
line-height: 2em;
text-transform: lowercase;
}
.slideshow code {
font-size: 2em;
color: #3377FF;
}