-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslideshow.css~
89 lines (75 loc) · 1.17 KB
/
slideshow.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
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
html {
overflow: hidden;
font-family: "arial", sans-serif;
font-size: 18px;
color: #333333;
}
body {
display: table;
position: static;
width: 100%;
height: 100%;
background-color: #27001f;
}
a:link {
}
a:visited {
}
a:hover {
text-shadow: 0px 0px 8px purple;
}
a:active {
}
.presentation {
display: table-cell;
vertical-align: middle;
position: relative;
width: 100%;
height: 100%;
}
.slides {
width: 80%;
height: 80%;
margin-left: auto;
margin-right: auto;
padding: 30px;
background-color: #fff;
}
.slide {
width: 75%;
height: 75%;
display: none;
opacity: 1;
-webkit-transition: opacity 10s ease-in-out;
-moz-transition: opacity 10s ease-in-out;
-o-transition: opacity 10s ease-in-out;
-ms-transition: opacity 10s ease-in-out;
transition: opacity 10s ease-in-out;
}
.note {
position: fixed;
width: 100%;
bottom: 0;
left: 0;
border: 2px solid black;
background-color: white;
opacity: .6;
display: none;
}
.menus {
position: fixed;
top: 0px;
left: 0px;
padding: 6px;
width: 10%;
}
.help, .controls {
opacity: .6;
position: relative;
width: 100%;
background-color: #fff;
display: none;
}
.border-testing {
border: 2px yellow dashed;
}