-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path404.html
63 lines (62 loc) · 1.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="assets/konoha.png" type="image/x-icon" />
<title>STARTER | No User Found</title>
<style>
@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300&display=swap");
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: "Roboto", sans-serif;
}
.error-page {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
min-height: 100vh;
background: black;
padding: 2rem;
}
.error-page img {
display: flex;
justify-content: center;
align-items: center;
font-size: larger;
width: 300px;
height: 300px;
border-radius: 50%;
margin: 2rem 0;
color: #ffffff;
}
.error-page h1 {
color: palevioletred;
font-weight: 500;
letter-spacing: 1px;
line-height: 2rem;
text-align: center;
}
.error-page a {
color: palevioletred;
transition: all 0.3s ease;
}
.error-page a:hover {
color: white;
}
</style>
</head>
<body>
<div class="error-page">
<h1>No contributions found by given user !</h1>
<img src="../../assets/404.png" alt="Error Page, no user found !" />
<a href="https://konoha-developers.github.io/starter/">
Back to home page
</a>
</div>
</body>
</html>