forked from imlucas/gulp-juice
-
Notifications
You must be signed in to change notification settings - Fork 1
/
test.html
71 lines (64 loc) · 1.5 KB
/
test.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>bootloader</title>
<style>
html {
font-size: 62.5%;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
margin: 0;
padding: 0;
}
.bootloader {
background: #6ba442;
color: #FFF;
position: absolute;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
.bootloader .message {
display: block;
margin-left: 40%;
margin-right: 40%;
text-align: center;
margin-top: 10%;
background: #FFFFFF;
overflow: hidden;
box-shadow: 0 8px 6px -6px #313030;
}
.bootloader h1, .bootloader span, .bootloader img{
padding: 0;
margin: 0;
display: block;
color: #313030;
font-family: 'PT Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.bootloader img {
width: 100px;
height: 100px;
float: left;
}
.bootloader h1 {
font-size: 24px;
padding-right: 10px;
padding-top: 30px;
}
.bootloader span {
font-size: 18px;
}
</style>
<link rel="icon" href="img/favicon.ico" type="image/x-icon">
</head>
<body>
<div class="bootloader">
<div class="message"><img src="img/spinner.gif" alt="loading..">
<h1>some app</h1><span>loading…</span>
</div>
</div>
</body>
<script src="bootloader.js"></script>
</html>