-
Notifications
You must be signed in to change notification settings - Fork 74
/
index.sample.html
104 lines (104 loc) · 2.56 KB
/
index.sample.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
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
<!DOCTYPE html>
<html lang="en" class="loading">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" >
<link rel="shortcut icon" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoBAMAAAB+0KVeAAAAGFBMVEUAAAA7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozsmr7C1AAAAB3RSTlMA8o3HRiCjAZ7XVAAAAFRJREFUKM9jGAUMDE6GwiroYkHi5eWFqqhirOnlQFAWgCLIVA4GCiiCjhBBERRBdYhgEYqgOUSwGEVQHCJYSEgQoZ2QRQgnEXI8wpsEAgQRdKOAAQCvriuz6lBMNwAAAABJRU5ErkJggg==" />
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title> Loading... </title>
<script>
window.config = {
organization: false,
order: 'UPDATED_AT',
title: 'Mirror',
user: 'LoeiFy',
repository: 'Recordum',
authors: 'LoeiFy',
ignores: '17,13',
host: '',
hash: '',
perpage: 5,
}
</script>
<style>
.loading,
.error,
.transition {
height: 100%;
}
.loading body,
.error body,
.transition body {
height: 100%;
}
#loader {
text-align: center;
position: fixed;
z-index: 3;
left: 0;
top: 0;
height: 100%;
width: 100%;
opacity: 0;
visibility: hidden;
-webkit-transition: all .3s ease;
transition: all .3s ease;
background-color: rgba(255, 255, 255, .95);
}
.loading #loader {
opacity: 1;
visibility: visible;
}
.loading #loader div {
display: inline-block;
width: 50px;
height: 50px;
vertical-align: middle;
-webkit-border-radius: 3px;
border-radius: 3px;
background-color: #fff;
-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .15);
box-shadow: 0 0 3px rgba(0, 0, 0, .15);
}
.loading #loader div:before {
content: '';
width: 26px;
height: 26px;
display: block;
margin: 8px auto 0;
-webkit-border-radius: 20px;
border-radius: 20px;
-webkit-animation: loading .5s linear forwards infinite;
animation: loading .5s linear forwards infinite;
border-top: 4px solid #0089fa;
border-right: 4px solid #ff002b;
border-bottom: 4px solid #ffa900;
border-left: 4px solid #00a753;
}
.loading #loader:after {
content: '';
display: inline-block;
height: 100%;
vertical-align: middle;
}
@keyframes loading { 100% { transform: rotate(360deg) } }
@-webkit-keyframes loading { 100% { -webkit-transform: rotate(360deg) } }
</style>
</head>
<body>
<div id="bar"></div>
<div class="page home">
<div>
<div id="user"></div>
<div id="posts"></div>
</div>
</div>
<div class="page single">
<div>
<div id="post"></div>
<div id="comments"></div>
</div>
</div>
<div id="loader"><div></div></div>
</body>
</html>