-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
94 lines (84 loc) · 2.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Page not found</title>
<meta name="description" content="ECSIM (Electrochemistry Simulation Tools)">
<meta property="og:title" content="ECSIM">
<meta property="og:site_name" content="http://www.ecsim.site">
<meta property="og:description" content="ECSIM (Electrochemistry Simulation Tools)">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<style>
@font-face {
font-family: "baloo";
src: url("http://www.ecsim.site/fonts/Baloo.ttf");
}
body{
font-family: "baloo";
}
.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:5%;
}
img{
width: 400px;
height: 400px;
opacity: 0.7;
}
#particles-js{
position: relative;
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: 250px;
height: 250px;
}
}
</style>
</head>
<body>
<div id="particles-js">
<div class="siteWrapper">
<div class="Error-page" >
<img src="http://www.ecsim.site/images/ecsim_logo.png" alt="ECSIM LOGO">
<br/>
<div class="return">
<p style="font-size:30px; text-decoration:None;">Page Not Found</p>
<a href="http://www.ecsim.site">Back</a>
</div>
</div>
</div>
</div>
<script src="http://www.ecsim.site/js/particles.js"></script>
<script src="http://www.ecsim.site/js/app.js"></script>
</body>
</html>