-
Notifications
You must be signed in to change notification settings - Fork 0
/
loading2.html
133 lines (110 loc) · 2.5 KB
/
loading2.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
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
<html>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100;0,200;0,400;0,600;1,700&display=swap"
rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Arvo:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css"
integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous">
<style>
.header i:hover {
color: #00693c
}
.header i {
vertical-align: baseline;
color: black;
margin-right: 5px;
font-size: 12px;
}
i {
vertical-align: text-top;
}
body {
background-color: white;
display: flex;
justify-content: center;
background-image: url("assets/ticketwebpage.png");
background-size: cover;
background-position: center;
margin: 0;
}
.header {
position: relative;
top: 0;
z-index: 100;
background-color: lightgrey;
height: 50px;
width: 100%;
padding: 20;
color: black;
text-align: left;
font-weight: bold;
font-family: 'Urbanist', sans-serif;
/* display: none; */
}
.loading {
position: absolute;
display: flex;
width: 100%;
height: 100%;
background-color: #0b6f3d;
justify-content: center;
align-items: center;
}
.bgflash {
animation: 3s BGFlashAnimation linear infinite;
}
.logoflash {
animation: 3s LogoFlashAnimation linear infinite;
}
.text {
font-family: 'Arvo', serif;
color: lightgray;
text-align: center;
font-weight: bold;
margin-top: 10;
letter-spacing: 2;
/* display: none; */
}
@keyframes BGFlashAnimation {
0% {
opacity: .98;
}
50% {
opacity: 1
}
100% {
opacity: .98
}
}
@keyframes LogoFlashAnimation {
0% {
opacity: 0;
}
50% {
opacity: 1.0
}
100% {
opacity: 0
}
}
</style>
<body>
<div class='header'>
<a class='back' href='//morganiverson.github.io/ticketoffice'><i class="fas fa-home"></i></a>
Sample Loading Screen 2
</div>
<!-- LOADING DIV -->
<div class="bgflash loading">
<div class="logoflash">
<img src="https://dbukjj6eu5tsf.cloudfront.net/emueagles.com/images/responsive/main_logo.svg">
<div class="text">
LOADING...
</div>
</div>
</div>
</body>
</html>