forked from sepandhaghighi/lightsout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
98 lines (89 loc) · 2.62 KB
/
404.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
<html>
<head>
<meta charset="UTF-8">
<title>Lights Out Game</title>
<meta name="description" content="Lights Out Game By Sepand Haghighi"/>
<meta property="og:title" content="Lights Out" />
<meta property="og:site_name" content="http://www.lightsout.ir"/>
<meta property="og:description" content="Lights Out Game By Sepand Haghighi" />
<meta property="og:image" content="http://www.lightsout.ir/images/og-icon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
</head>
<style type="text/css">
@font-face {
font-family: "julius";
src: url("http://www.lightsout.ir/fonts/JuliusSansOne-Regular.ttf");
}
body{
font-family: "julius";
}
.return p{
font-size: 40px;
font-weight: 600;
}
.return a{
font-size: 30px;
text-decoration: none;
border: 4px solid red;
color: red;
padding: 4px;
cursor: pointer;
transition: 0.3s;
margin: auto;
}
.return a:hover{
opacity: 0.4;
}
.Error-page{
text-align:center;
margin: auto;
margin-top:20px;
}
img{
width: 550px;
height: 550px;
}
#particles-js{
position: absolute;
width: 100%;
height: 100%;
background-color: white;
background-image: url('');
background-size: cover;
background-repeat: no-repeat;
}
.siteWrapper {
position: fixed;
overflow: auto;
width: 100%;
height: 100%;
}
@media all and (max-width: 1024px) {
img{
width: 90%;
height: 55%;
}
}
@media all and (max-width: 1024px) and (orientation:landscape){
img{
width: 55%;
height: 90%;
}
}
</style>
<body >
<div id="particles-js"> </div>
<div class="siteWrapper" id="siteWrapper">
<div class="Error-page" >
<img src="http://www.lightsout.ir/images/404.png"/ alt="lightsout logo">
<br/>
<div class="return">
<p style="font-size:30px; text-decoration:None;">No Lights!!</p>
<a href="http://www.lightsout.ir">Back To Game</a>
</div>
</div>
</div>
<script src="http://www.lightsout.ir/js/particles.min.js"></script>
<script src="http://www.lightsout.ir/js/app.min.js"></script>
</body>
</html>