-
Notifications
You must be signed in to change notification settings - Fork 120
/
index.html
177 lines (167 loc) · 4.22 KB
/
index.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Internet Health Report</title>
<meta
name="viewport"
content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=5"
/>
<meta
name="keywords"
content="Internet,Health,Report,Organization,Open Source, GSoC,Global,Network,Infrastructure"
/>
<meta
name="title"
content="Internet Health Report | Monitoring networks health"
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://ihr.iijlab.net/ihr/" />
<meta property="og:site_name" content="Internet Health Report" />
<meta
property="og:title"
content="Internet Health Report | Monitoring networks health"
/>
<meta
name="description"
content="The Internet Health Report monitors the conditions of networks that compose the Internet. This effort aims to provide network operators, policymakers, and other stakeholders, with a better understanding of the Internet's infrastructure and its evolution."
/>
</head>
<body>
<div id="app">
<div id="loading-wrapper">
<div class="blink-image">
<div class="loading">
<div class="imageLoading">
<h1>L<span> </span>ading...</h1>
</div>
</div>
</div>
</div>
</div>
<script type="module" src="/src/main.js"></script>
<style>
#loading-wrapper {
margin: 0;
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
/* Firefox old*/
@-moz-keyframes blink {
0% {
opacity: 1;
}
50% {
opacity: 0.1;
}
100% {
opacity: 1;
}
}
@-webkit-keyframes blink {
0% {
opacity: 1;
}
50% {
opacity: 0.1;
}
100% {
opacity: 1;
}
}
/* IE */
@-ms-keyframes blink {
0% {
opacity: 1;
}
50% {
opacity: 0.1;
}
100% {
opacity: 1;
}
}
/* Opera and prob css3 final iteration */
@keyframes blink {
0% {
opacity: 1;
}
50% {
opacity: 0.1;
}
100% {
opacity: 1;
}
}
.blink-image {
-moz-animation: blink normal 2s infinite ease-in-out; /* Firefox */
-webkit-animation: blink normal 2s infinite ease-in-out; /* Webkit */
-ms-animation: blink normal 2s infinite ease-in-out; /* IE */
animation: blink normal 2s infinite ease-in-out; /* Opera and prob css3 final iteration */
}
.loading .imageLoading h1 {
font-family: 'Montserrat', sans-serif;
font-size: 90px;
font-weight: 700;
margin: 0px;
color: #232323;
}
.loading .imageLoading h1>span {
display: inline-block;
width: 45px;
height: 45px;
background-image: url('https://avatars1.githubusercontent.com/u/40665700?s=200&v=4');
background-size: cover;
-webkit-transform: scale(1.4);
-ms-transform: scale(1.4);
transform: scale(1.4);
z-index: -1;
margin: 0px 15px 0px 15px;
}
@media screen and (max-width: 820px) {
.loading .imageLoading {
height: 85px;
}
.loading .imageLoading h1 {
font-size: 50px;
}
.loading .imageLoading h1>span {
width: 40px;
height: 40px;
margin: 0px 10px 0px 10px;
}
}
@media screen and (max-width: 580px) {
.loading .imageLoading {
height: 115px;
}
.loading .imageLoading h1 {
font-size: 37px;
}
.loading .imageLoading h1>span {
width: 20px;
height: 20px;
margin: 0px 8px 0px 8px;
}
}
@media screen and (max-width: 375px) {
.loading .imageLoading {
height: 115px;
}
.loading .imageLoading h1 {
font-size: 28px;
}
.loading .imageLoading h1>span {
width: 18px;
height: 18px;
margin: 0px 8px 0px 8px;
}
}
</style>
</body>
</html>