forked from ohmpatel46/ISASpark
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patherror.html
79 lines (75 loc) · 2.83 KB
/
error.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
<!DOCTYPE html>
<html>
<head>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous"/>
<link href="https://unpkg.com/ionicons@4.5.10-0/dist/css/ionicons.min.css" rel="stylesheet"/>
<script src="https://code.jquery.com/jquery-3.6.0.js" integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js" integrity="sha256-T0Vest3yCU7pafRw9r+settMBX6JkKN06dqBnpQ8d30=" crossorigin="anonymous"></script>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW"
crossorigin="anonymous"
></script>
<style>
body{
background-color:#012848;
margin: 0;
width:100vw;
height:100vh;
}
.error-top{
padding:15px 15px;
padding-right: 25px;
}
.error-message{
flex: 1 1 auto;
color:white;
padding-bottom: 70px;
}
h1{
font-size:clamp(100px,5vw,200px);
}
h2{
font-size:clamp(50px,3vw,200px);
}
a{
font-size:clamp(40px,2vw,200px);
text-decoration: none;
background-color:#5AC1F8;
border-radius:20px;
margin-top: 20px;
padding:0px 20px;
color:#01213c;
font-weight: 500;
}
a:active{
text-decoration:none;
}
a:hover{
color:#01213c;
background-color:#39b5f7;
}
#spark-logo{
height:80px;
width:80px;
}
#spark-bot{
position: relative;
height:80px;
width:80px;
top: -7px;
}
</style>
</head>
<body class="d-flex flex-column justify-content-center">
<div class="error-top d-flex justify-content-between">
<img id="spark-logo" src="./assets/images/Spark_LOGO.svg"/>
<img id="spark-bot" src="./assets/images/Group 21.svg"/>
</div>
<div class="error-message d-flex flex-column justify-content-center align-items-center">
<h1>404</h1>
<h2>Looks like something's wrong</h2>
<a href="https://spark.isavit.co.in/">Go back to home</a>
</div>
</body>
</html>