-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
155 lines (155 loc) · 3.13 KB
/
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
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
@import url(https://fonts.googleapis.com/css?family=Ubuntu:400,700);
body {
overflow: hidden;
font-family: 'Ubuntu', sans-serif;
}
#main-wall {
position: absolute;
width: 100%;
height: 100%;
background-color: #000000;
z-index: 50;
}
#loading-popup {
position: absolute;
width: 100%;
top: 30%;
z-index: 100;
text-align: center;
}
#loading-popup img {
margin-left: auto;
margin-right: auto;
-webkit-animation: spin 2s infinite linear;
}
@-webkit-keyframes spin {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
}
}
#loading-popup span {
display: block;
color: white;
}
#container-wall {
display: block;
margin: 50px;
width: 70%;
height: 80%;
perspective: 2000px;
}
.speaker {
display: none;
position: absolute;
max-height: 70%;
bottom: -10px;
right: 4%;
z-index: 100;
}
.nextSlide {
display: none;
position: absolute;
top: 5%;
right: 5%;
z-index: 100;
cursor: pointer;
font-size: 20px;
color: #AFDAF0;
}
.nextSlide:hover {
color: white;
}
.slide {
display: none;
width: 100%;
height: 100%;
padding: 40px;
transform: rotateY(20deg);
color: #F0F0F0;
font-size: 2.5vh;
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+36,646375+100 */
background: #000000;
/* Old browsers */
background: -moz-linear-gradient(top, #000000 36%, #646375 100%);
/* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(36%, #000000), color-stop(100%, #646375));
/* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #000000 36%, #646375 100%);
/* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #000000 36%, #646375 100%);
/* Opera 11.10+ */
background: -ms-linear-gradient(top, #000000 36%, #646375 100%);
/* IE10+ */
background: linear-gradient(to bottom, #000000 36%, #646375 100%);
/* W3C */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#646375', GradientType=0);
/* IE6-9 */
}
.slide h1 {
display: block;
text-align: center;
color: #F0F0F0;
font-size: 6vh;
font-weight: 700;
padding-bottom: 30px;
}
.slide h2 {
display: block;
text-align: center;
color: #F0F0F0;
font-size: 3.5vh;
font-weight: 700;
padding-bottom: 30px;
}
.slide p {
display: block;
font-size: 3.0vh;
line-height: 4.0vh;
}
.slide .logo {
height: 60%;
display: block;
position: relative;
margin-top: 10%;
margin-left: auto;
margin-right: auto;
}
.slide table {
width: 80%;
margin-left: auto;
margin-right: auto;
font-size: 3vh;
}
.slide table td {
vertical-align: middle;
padding-left: 5px;
padding-right: 5px;
}
.slide table td img {
width: 110px;
}
.slide.scrollable {
overflow-y: scroll;
}
.sub-container {
display: block;
position: absolute;
bottom: 0px;
margin-bottom: 10px;
width: 100%;
height: auto;
z-index: 1000;
text-align: center;
-webkit-text-stroke: 2px black;
color: white;
font-size: 7vh;
font-weight: bold;
-moz-user-select: none;
-ms-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
-webkit-touch-callout: none;
}