forked from Arquisoft/wiq_0
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Añadida barra de navegación y footer
- Loading branch information
Showing
10 changed files
with
292 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
footer{ | ||
margin: 3rem; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import React from 'react'; | ||
import { Link } from "react-router-dom"; | ||
import './Footer.css'; | ||
|
||
const Footer = () => { | ||
return( | ||
<footer> | ||
<h2>WIQ!</h2> | ||
<p>Copyright 2024 ® Grupo 1A de Arquitectura del Software</p> | ||
</footer> | ||
); | ||
} | ||
|
||
export default Footer; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
.logo{ | ||
font-family: oswald,sans-serif; | ||
width: 100%; | ||
font-size: 5rem; | ||
font-weight: 700; | ||
margin: 0; | ||
text-shadow: 4px 4px 0 #00ffc0; | ||
} | ||
|
||
nav{ | ||
width: 80vw; | ||
display: flex; | ||
flex-wrap: wrap; | ||
border: 3px solid #0F0F0F; | ||
border-radius: 1rem; | ||
padding: 1rem; | ||
margin: 1rem; | ||
-webkit-box-shadow: 10px 10px 6px 0px rgba(0,255,192,1); | ||
-moz-box-shadow: 10px 10px 6px 0px rgba(0,255,192,1); | ||
box-shadow: 10px 10px 5px 0px rgba(0,255,192,1); | ||
} | ||
|
||
nav ul{ | ||
display: flex; | ||
flex-direction: row; | ||
} | ||
|
||
nav li{ | ||
display: flex; | ||
flex-direction: row; | ||
height: 100%; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import React from 'react'; | ||
import { Link } from "react-router-dom"; | ||
import './Nav.css'; | ||
|
||
const Nav = () => { | ||
return( | ||
<nav> | ||
<h1 className="logo">WIQ!</h1> | ||
<ul> | ||
<li><Link to="/home">Home</Link></li> | ||
<li><Link to="/sobre">Sobre nosotros</Link></li> | ||
</ul> | ||
</nav> | ||
); | ||
} | ||
|
||
export default Nav; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,165 @@ | ||
.notFoundContainer{ | ||
align-self: center; | ||
grid-template-columns: 1fr; | ||
#notfound{ | ||
width: 90%; | ||
display: flex; | ||
justify-content: center; | ||
} | ||
|
||
.notFoundContainer h1, .notFoundContainer p{ | ||
font-family: montserrat, sans-serif; | ||
font-size: 5rem; | ||
font-weight: 900; | ||
text-align: center; | ||
|
||
#notfound .notfound-bg>div { | ||
overflow: hidden; | ||
position: absolute; | ||
top: 0; | ||
bottom: 0; | ||
width: 1px; | ||
background-color: #eee | ||
} | ||
.notfound-bg>div{ | ||
z-index: -1; | ||
} | ||
|
||
#notfound .notfound-bg>div:nth-child(1) { | ||
left: 20% | ||
} | ||
|
||
#notfound .notfound-bg>div:nth-child(2) { | ||
left: 40% | ||
} | ||
|
||
#notfound .notfound-bg>div:nth-child(3) { | ||
left: 60% | ||
} | ||
|
||
#notfound .notfound-bg>div:nth-child(4) { | ||
left: 80% | ||
} | ||
|
||
#notfound .notfound-bg>div:after { | ||
content: ''; | ||
position: absolute; | ||
top: 0; | ||
left: -.5px; | ||
transform: translateY(50%); | ||
height: 160px; | ||
width: 10rem; | ||
background-color: #00ffc0 | ||
} | ||
|
||
@keyframes drop { | ||
90% { | ||
height: 20px | ||
} | ||
|
||
100% { | ||
height: 160px; | ||
-webkit-transform: translateY(calc(100vh + 160px)); | ||
transform: translateY(calc(100vh + 160px)) | ||
} | ||
} | ||
|
||
#notfound .notfound-bg>div:nth-child(1):after { | ||
animation: drop 3s infinite linear; | ||
animation-delay: .2s | ||
} | ||
|
||
#notfound .notfound-bg>div:nth-child(2):after { | ||
animation: drop 2s infinite linear; | ||
animation-delay: .7s | ||
} | ||
|
||
#notfound .notfound-bg>div:nth-child(3):after { | ||
animation: drop 3s infinite linear; | ||
animation-delay: .9s | ||
} | ||
|
||
#notfound .notfound-bg>div:nth-child(4):after { | ||
animation: drop 2s infinite linear; | ||
animation-delay: 1.2s | ||
} | ||
|
||
.notFoundContainer h1{ | ||
font-size: 20vw; | ||
text-shadow: -4px -4px 0px #00FFC0; | ||
.notfound { | ||
max-width: 520px; | ||
width: 100%; | ||
text-align: center | ||
} | ||
|
||
.notfound .notfound-404 { | ||
height: 210px; | ||
line-height: 210px | ||
} | ||
|
||
.notfound .notfound-404 h1 { | ||
font-family: oswald,sans-serif; | ||
font-size: 188px; | ||
font-weight: 700; | ||
margin: 0; | ||
text-shadow: 4px 4px 0 #00ffc0; | ||
} | ||
|
||
.notfound h2 { | ||
font-family: oswald,sans-serif; | ||
font-size: 42px; | ||
font-weight: 700; | ||
margin: 0; | ||
text-transform: uppercase; | ||
letter-spacing: 1.6px | ||
} | ||
|
||
.notfound p { | ||
font-family: lato,sans-serif; | ||
color: #000; | ||
font-weight: 400; | ||
margin-top: 20px; | ||
margin-bottom: 25px | ||
} | ||
|
||
.notfound a { | ||
font-family: lato,sans-serif; | ||
padding: 10px 30px; | ||
display: inline-block; | ||
color: #000; | ||
font-weight: 400; | ||
text-transform: uppercase; | ||
-webkit-box-shadow: 0 0 0 2px #000,2px 2px 0 2px #00ffc0; | ||
box-shadow: 0 0 0 2px #000,2px 2px 0 2px #00ffc0; | ||
text-decoration: none; | ||
-webkit-transition: .2s all; | ||
transition: .2s all | ||
} | ||
|
||
.notFoundContainer p{ | ||
font-size: 5vw; | ||
color: #0F0F0F; | ||
} | ||
.notfound a:hover { | ||
background-color: #00ffc0; | ||
-webkit-box-shadow: 0 0 0 0 #000,0 0 0 2px #00ffc0; | ||
box-shadow: 0 0 0 0 #000,0 0 0 2px #00ffc0 | ||
} | ||
|
||
.notfound-social { | ||
margin-top: 35px | ||
} | ||
|
||
.notfound-social>a { | ||
width: 40px; | ||
height: 40px; | ||
line-height: 40px; | ||
padding: 0; | ||
margin: 0 5px | ||
} | ||
|
||
.notfound-social>a:hover { | ||
background-color: #00ffc0; | ||
-webkit-box-shadow: 0 0 0 0 #000,0 0 0 2px #00ffc0; | ||
box-shadow: 0 0 0 0 #000,0 0 0 2px #00ffc0 | ||
} | ||
|
||
@media only screen and (max-width: 480px) { | ||
.notfound .notfound-404 { | ||
height:122px; | ||
line-height: 122px | ||
} | ||
|
||
.notfound .notfound-404 h1 { | ||
font-size: 122px | ||
} | ||
|
||
.notfound h2 { | ||
font-size: 26px | ||
} | ||
} |
Oops, something went wrong.