-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
116 lines (99 loc) · 2.13 KB
/
404.html
File metadata and controls
116 lines (99 loc) · 2.13 KB
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
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html>
<head>
<title>Malucos por Taco</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<style>
body {
background-color: #0A7189;
color: #fff;
font: 100% "Lato", sans-serif;
font-size: 1.8rem;
font-weight: 300;
}
a {
color: #75C6D9;
text-decoration: none;
}
h3 {
margin-bottom: 1%;
}
ul {
list-style: none;
margin: 0;
padding: 0;
line-height: 50px;
}
li a:hover {
color: #fff;
}
.center {
text-align: center;
}
/* Search Bar Styling */
form > * {
vertical-align: middle;
}
.srchBtn {
border: 0;
border-radius: 7px;
padding: 0 17px;
background: #e74c3c;
width: 99px;
border-bottom: 5px solid #c0392b;
color: #fff;
height: 65px;
font-size: 1.5rem;
cursor: pointer;
}
.srchBtn:active {
border-bottom: 0px solid #c0392b;
}
.srchBtn:focus {
outline: 0;
}
.srchFld {
border: 0;
border-radius: 7px;
padding: 0 17px;
max-width: 404px;
width: 40%;
border-bottom: 5px solid #bdc3c7;
height: 60px;
color: #7f8c8d;
font-size: 19px;
}
.srchFld:focus {
outline-color: rgba(255, 255, 255, 0);
}
/* 404 Styling */
.header {
font-size: 13rem;
font-weight: 700;
margin: 2% 0 2% 0;
text-shadow: 0px 3px 0px #7f8c8d;
}
/* Error Styling */
.error {
margin: -70px 0 2% 0;
font-size: 7.4rem;
text-shadow: 0px 3px 0px #7f8c8d;
font-weight: 100;
}
</style>
</head>
<body class="">
<section class="center">
<article>
<h1 class="header">404</h1>
<p class="error">ERROR</p>
</article>
<article>
<h3>Malucos por Taco</h3>
<ul>
<li><a href="/">Home</a></li>
</ul>
</article>
</section>
</body>
</html>