This repository has been archived by the owner on Mar 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoffline.html
79 lines (72 loc) · 2.18 KB
/
offline.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
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="images/purplelogo.svg">
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
<title>Offline</title>
<style>
body {
background: #f7f8fb;
font-family: 'Raleway', sans-serif;
}
#container {
display: flex;
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
}
#content {
margin: auto;
text-align: center;
}
#title {
color: #707176;
font-size: 25px;
margin-bottom: 5px;
margin-top: 0;
}
#desc {
color: #9c9ea6;
margin: 0;
line-height: 25px;
}
#diamond {
border-radius: 8px;
background-color: #dbe1ec;
height: 35px;
width: 35px;
transform: rotate(45deg);
margin-left: auto;
margin-right: auto;
margin-bottom: 20px;
}
#logo {
position: fixed;
background-color: #cad0db;
right: 20px;
bottom: 20px;
width: 40px;
height: 40px;
mask: url(#logomask);
-webkit-mask-box-image: url(images/purplelogo.svg);
}
</style>
</head>
<body>
<div id="container">
<div id="content">
<div id="diamond"></div>
<p id="title">Offline for demonstration</p>
<p id="desc">Sandbox is currently being used for demonstration purposes.</br>Please check back later.<p>
</div>
</div>
<div id="logo"></div>
<svg height="0" width="0">
<mask id="logomask">
<image id="img" xlink:href="images/purplelogo.svg" x="0" y="0" height="40px" width="40px" />
</mask>
</svg>
</body>
</html>