forked from karatebuilderboy/Scratch-to-Phonegap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.css
52 lines (52 loc) · 784 Bytes
/
app.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
body {
background: #000;
margin: 0;
overflow: hidden;
}
.player {
position: absolute;
}
.splash,
.error {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #000;
display: table;
color: #fff;
}
.error {
display: none;
}
.splash > div,
.error > div {
display: table-cell;
height: 100%;
text-align: center;
vertical-align: middle;
}
.progress {
width: 80%;
height: 16px;
border: 1px solid #fff;
margin: 0 auto;
}
.progress-bar {
background: #fff;
width: 10%;
height: 100%;
}
h1 {
font: 300 72px Helvetica Neue, Helvetica, Arial, sans-serif;
margin: 0 0 16px;
}
p {
font: 300 24px/1.5 Helvetica Neue, Helvetica, Arial, sans-serif;
margin: 0;
color: rgba(255, 255, 255, .6);
}
.error a {
color: #fff;
}