-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpres.css
More file actions
74 lines (64 loc) · 1.17 KB
/
pres.css
File metadata and controls
74 lines (64 loc) · 1.17 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
html, body {
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
}
.presentation {
display: none;
}
.presentation .header, .presentation .footer {
height: 40px;
padding: 10px;
position: absolute;
left 0;
}
.presentation .header { top: 0; }
.presentation .footer { bottom: 0; }
.contents {
position: absolute;
top: 50%;
left: 50%;
margin-top: -100px;
margin-left: -200px;
width: 400px;
height: 200px;
padding: 20px;
background-color: #e8e8e8;
border: solid 1px black;
}
.contents div {
cursor: pointer;
font-size: 25px;
}
.contents div:hover {
color: darkblue;
}
.presentation .slide {
position: absolute;
top: 0;
left: 0;
margin: 0;
padding: 40px 10px 40px 10px;
overflow: hidden;
display: none;
height: 100%;
width: 100%;
display: none;
}
/* title slide */
.presentation .slide.title {
vertical-align: middle;
text-align: center;
}
.presentation .slide.title h1 {
font-size: 80px;
color: darkblue;
}
.presentation .slide.title h2 {
color: gray;
font-size: 35px;
}
.presentation .slide.title .author {
font-style: italic;
}