Skip to content

Commit

Permalink
404 Files
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr-TechX authored Sep 11, 2024
1 parent 4254834 commit 88e0c63
Show file tree
Hide file tree
Showing 2 changed files with 136 additions and 0 deletions.
32 changes: 32 additions & 0 deletions Desarrollo/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!DOCTYPE html>
<html lang="en">

<head>
<link rel="stylesheet" href="error.css">
<meta charset="utf-8">
<title>EN DESARROLLO</title>
<meta name="description" content="Pagina en desarrollo">
<meta name="author" content="Ulises L Camacho">
<link rel="icon" type="image/ico" href="../icn.ico">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Montserrat:700,900" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="style.css" />
</head>

<body>

<div id="notfound">
<div class="notfound">
<div class="notfound-404">
<h1>404</h1>
<h2>En desarrollo</h2>
</div>
<a href="../index.html">INICIO</a>
</div>
</div>

</body><!-- This templates was made by Colorlib (https://colorlib.com) -->

</html>
104 changes: 104 additions & 0 deletions Desarrollo/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
* {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}

body {
padding: 0;
margin: 0;
}

#notfound {
position: relative;
height: 100vh;
background: #030005;
}

#notfound .notfound {
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}

.notfound {
max-width: 767px;
width: 100%;
line-height: 1.4;
text-align: center;
}

.notfound .notfound-404 {
position: relative;
height: 180px;
margin-bottom: 20px;
z-index: -1;
}

.notfound .notfound-404 h1 {
font-family: 'Montserrat', sans-serif;
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translate(-50% , -50%);
-ms-transform: translate(-50% , -50%);
transform: translate(-50% , -50%);
font-size: 224px;
font-weight: 900;
margin-top: 0px;
margin-bottom: 0px;
margin-left: -12px;
color: #030005;
text-transform: uppercase;
text-shadow: -1px -1px 0px #8400ff, 1px 1px 0px #ff005a;
letter-spacing: -20px;
}


.notfound .notfound-404 h2 {
font-family: 'Montserrat', sans-serif;
position: absolute;
left: 0;
right: 0;
top: 110px;
font-size: 42px;
font-weight: 700;
color: #fff;
text-transform: uppercase;
text-shadow: 0px 2px 0px #8400ff;
letter-spacing: 13px;
margin: 0;
}

.notfound a {
font-family: 'Montserrat', sans-serif;
display: inline-block;
text-transform: uppercase;
color: #ff005a;
text-decoration: none;
border: 2px solid;
background: transparent;
padding: 10px 40px;
font-size: 14px;
font-weight: 700;
-webkit-transition: 0.2s all;
transition: 0.2s all;
}

.notfound a:hover {
color: #8400ff;
}

@media only screen and (max-width: 767px) {
.notfound .notfound-404 h2 {
font-size: 24px;
}
}

@media only screen and (max-width: 480px) {
.notfound .notfound-404 h1 {
font-size: 182px;
}
}

0 comments on commit 88e0c63

Please # to comment.