-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path404.html
105 lines (97 loc) · 3.1 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
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Lights Out Game</title>
<meta name="theme-color" content="#cce587">
<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-icon2.png">
<meta name="twitter:image:src" content="http://www.lightsout.ir/images/og-icon2.png">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Lights Out">
<meta name="twitter:description" content="Lights Out, Linear Algebra Game ;-), The goal of the puzzle is to switch all the lights off, preferably in as few button presses as possible">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<style>
@font-face {
font-family: "julius";
src: url("https://www.lightsout.ir/fonts/JuliusSansOne-Regular.ttf");
}
body{
font-family: "julius";
margin: 0px;
padding: 0px;
}
.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>
</head>
<body>
<div id="particles-js"> </div>
<div class="siteWrapper" id="siteWrapper">
<div class="Error-page" >
<img src="https://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="https://www.lightsout.ir">Back To Game</a>
</div>
</div>
</div>
<script src="https://www.lightsout.ir/js/particles.min.js"></script>
<script src="https://www.lightsout.ir/js/app.js"></script>
</body>
</html>