forked from visiky/kasmine.blog
-
Notifications
You must be signed in to change notification settings - Fork 1
/
offline.html
executable file
·92 lines (76 loc) · 1.61 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
80
81
82
83
84
85
86
87
88
89
90
91
92
---
description: "Please check out your network :("
permalink: /offline.html
navcolor: "invert"
---
<html>
<style lang="">
body {
font-family: 'Montserrat', sans-serif;
background: #cafdc1;
padding-top: 25px;
}
body .col-centered {
margin: 0 auto;
float: none;
}
body .card {
background: url("{{site.imgurl}}/404-bg.jpg") no-repeat;
background-size: cover;
background-position: center;
background-color: #2b2b2b;
border-radius: 20px;
width:60%;
height: 750px;
position: relative;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
box-shadow: 0 25px 45px rgba(0, 0, 0, 0.5);
}
body .card .error {
font-size: 200px;
font-weight: 700;
color: rgba(231, 103, 97, 0.95);
position: relative;
margin-top: 148px;
}
body .card .bottom-part {
margin-bottom: 90px;
text-align: center;
}
body .card .bottom-part p {
color: #d9fdc1;
font-size: 20px;
font-weight: 400;
margin-bottom: 50px;
}
body .card .bottom-part a {
display: inline-block;
padding: 15px 50px;
background-color: #90b35e;
border-radius: 100px;
font-size: 20px;
color: #d9fdc1;
text-decoration: none;
}
@media (max-width: 767px) {
.error {
margin-top: 138px !important;
}
.bottom-part p {
font-size: 13px !important;
}
}
</style>
<body>
<div class="card col-centered">
<div class="error">OFFLINE</div>
<div class="bottom-part">
<p>{{page.description}}</p>
<a href="{{site.baseurl}}/">HOME</a>
</div>
</div>
</body>
</html>