forked from shekit/alexa-sign-language-translator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
executable file
·240 lines (217 loc) · 4.09 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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
body{
font-family: "Helvetica Neue", "sans-serif";
margin: 0;
padding: 0;
}
#video{
transform: rotateY(180deg);
-webkit-transform:rotateY(180deg); /* Safari and Chrome */
-moz-transform:rotateY(180deg); /* Firefox */
position: absolute;
left: 32.5%;
top:5%;
z-index: 10;
background-color: black;
border: 8px solid black;
border-radius: 5px;
}
#status{
width: 300px;
height: 50px;
background: red;
position: absolute;
z-index: 30;
top: 0;
left: 50%;
transform: translateX(-50%);
border:7px solid black;
border-top: none;
text-align: center;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
}
#status p{
color: white;
font-weight: bold;
}
h1 {
font-family: 'Baloo Bhaina', "Helvetica Neue", "sans-serif";
font-size: 80px;
font-weight: bold;
line-height: 100%;
}
h1 .subtext {
font-family: "Helvetica Neue", "sans-serif";
font-size:14px;
font-weight: normal;
line-height: 16px;
}
.intro-steps {
font-size: 30px;
}
#add-word{
border:1px solid #333;
padding: 10px;
font-size: 12px;
}
.split-left {
text-align: center;
height: 100%;
left:0;
width: 39.75%;
position: fixed;
z-index: 1;
top: 0;
overflow-x: hidden;
padding-top: 20px;
padding-bottom: 20px;
border-right: 5px solid black;
background:tomato;
}
.split-left h1{
color: white;
}
.split-right {
height: 100%;
width: 59.75%;
position: fixed;
z-index: 1;
top: 0;
overflow-x: hidden;
padding-top: 20px;
right:0;
padding-bottom: 20px;
border-left: 5px solid black;
background: white;
}
/* If you want the content centered horizontally and vertically */
.centered {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
width:75%;
}
#info {
margin-bottom: 30px;
}
#loader,
#loader:before,
#loader:after {
background: #000000;
-webkit-animation: load1 1s infinite ease-in-out;
animation: load1 1s infinite ease-in-out;
width: 1em;
height: 4em;
}
#loader {
color: #000000;
text-indent: -9999em;
margin: 88px auto;
position: relative;
font-size: 11px;
-webkit-transform: translateZ(0);
-ms-transform: translateZ(0);
transform: translateZ(0);
-webkit-animation-delay: -0.16s;
animation-delay: -0.16s;
display: none;
}
#loader:before,
#loader:after {
position: absolute;
top: 0;
content: '';
}
#loader:before {
left: -1.5em;
-webkit-animation-delay: -0.32s;
animation-delay: -0.32s;
}
#loader:after {
left: 1.5em;
}
@-webkit-keyframes load1 {
0%,
80%,
100% {
box-shadow: 0 0;
height: 4em;
}
40% {
box-shadow: 0 -2em;
height: 5em;
}
}
@keyframes load1 {
0%,
80%,
100% {
box-shadow: 0 0;
height: 4em;
}
40% {
box-shadow: 0 -2em;
height: 5em;
}
}
/* The Modal (background) */
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
/* Modal Header */
.modal-header {
padding: 2px 16px;
background-color: deepskyblue;
color: white;
}
/* Modal Body */
.modal-body {padding: 2px 16px;}
/* Modal Footer */
.modal-footer {
padding: 2px 16px;
background-color: #5cb85c;
color: white;
}
/* Modal Content */
.modal-content {
position: relative;
background-color: #fefefe;
margin: auto;
padding: 0;
border: 1px solid #888;
width: 40%;
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
animation-name: animatetop;
animation-duration: 0.4s;
top: 10%;
text-align: center;
}
/* Add Animation */
@keyframes animatetop {
from {top: -300px; opacity: 0}
to {top: 10%; opacity: 1}
}
/* The Close Button */
#close-modal {
color: white;
float: right;
font-size: 28px;
font-weight: bold;
}
#close-modal:hover,
#close-modal:focus {
color: black;
text-decoration: none;
cursor: pointer;
}