-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
97 lines (96 loc) · 2.6 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
<!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">
<title>Document</title>
</head>
<style>
body {
background-image: url('./assets/background.png'), linear-gradient(blue, #ea01ff);
background-position: center;
margin: 0;
font-family: 'Mulish', sans-serif;
color: white;
overflow-y: hidden;
min-height: 100vh;
}
a{
color: rgb(56, 199, 255);
text-decoration: none;
}
a:hover{
color: rgb(0, 255, 0);
}
.header{
background-color: rgba(0, 0, 0, 0.75);
font-weight: bold;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.header__logo{
height: 100px;
width: 100%;
object-fit:fill;
}
.header__menu{
width: 100%;
justify-content: space-evenly;
align-items: center;
display: inherit;
flex-direction: row;
padding: 0;
}
.header__menu li{
list-style: none;
padding-left: 10px;
}
.header__menu a{
text-decoration: none;
text-align: center;
}
.error{
width: 100%;
height: 75vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: transparent;
}
.error h1{
margin: 0px;
font-size: 200px;
}
.animated {
animation-duration: 8s;
animation-fill-mode: both;
animation-iteration-count: infinite;
}
@keyframes hinge {
0% {transform: rotate(0);transform-origin: top left;animation-timing-function: ease-in-out;}
20%, 60% {transform: rotate(80deg);transform-origin: top left;animation-timing-function: ease-in-out;}
40% {transform: rotate(60deg);transform-origin: top left;animation-timing-function: ease-in-out;}
80% {transform: rotate(60deg) translateY(0);transform-origin: top left;animation-timing-function: ease-in-out;}
}
.hinge {
margin: 20px;
animation-name: hinge;
}
</style>
<body>
<header class="header">
<ul class="header__menu">
<a href="https://701i.github.io/curso-practico-javascript/proyectoFinal/calculadoraRetiro.html"><li>Portafolio</li></a>
<a href="index.html"><img class="header__logo" src="assets/skullwolf 1.0.png" alt="Logo"></a>
<a href="#"><li>Blog</li></a>
</ul>
</header>
<section class="error">
<h3 class="animated hinge">Página en desarrollo o no encontrada 😥</h3>
<h1 class="animated hinge">404</h1>
</section>
</body>
</html>