Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sdf #40

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open

sdf #40

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- Font -->
<link href="https://fonts.googleapis.com/css?family=Muli&display=swap" rel="stylesheet">
<!-- Styles -->
<link rel="stylesheet" href="./styles.css">
<!-- Title -->
<title>Inicia Sesión</title>
</head>
<body>
<header class="header">
<img class="header__img" src="../assets/logo-platzi-video-BW2.png" alt="Platzi Video">
</header>
<section class="login">
<section class="login__container">
<h2>Inicia sesión</h2>
<form class="login__container--form">
<input class="input" type="text" placeholder="Correo">
<input class="input" type="password" placeholder="Contraseña">
<button class="button">Iniciar sesión</button>
<div class="login__container--remember-me">
<label>
<input type="checkbox" id="cbox1" value="first_checkbox">Recuérdame
</label>
<a href="/">Olvidé mi contraseña</a>
</div>
</form>
<section class="login__container--social-media">
<div><img src="../assets/google-icon.png"> Inicia sesión con Google</div>
<div><img src="../assets/twitter-icon.png"> Inicia sesión con Twitter</div>
</section>
<p class="login__container--register">No tienes ninguna cuenta <a href="">Regístrate</a></p>
</section>
</section>
<footer class="footer">
<a href="/">Terminos de uso</a>
<a href="/">Declaración de privacidad</a>
<a href="/">Centro de ayuda</a>
</footer>
</body>
</html>
165 changes: 165 additions & 0 deletions escuela-js/curso-frontend-developer/iniciar-sesion/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,165 @@
body {
margin: 0;
font-family: 'Muli', sans-serif;
}

.header {
align-items: center;
background-color: #21c08b;
color: white;
display: flex;
height: 100px;
justify-content: space-between;
top: 0px;
width: 100%;
}

.header__img {
margin-left: 30px;
width: 200px;
}

.login {
background-image: linear-gradient(#21c08b, #8f57fd);
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
padding: 0px 30px;
min-height: calc(100vh - 200px); /* El ancho será igual al tamaño de todo el height menos 200px (100px del header + 100px del footer) */
}

.login__container {
background-color: rgba(255,255,255,0.1);
border: 2px solid white;
border-radius: 40px;
box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
color: white;
display: flex;
flex-direction: column;
justify-content: space-around;
min-height: 700px;
padding: 60px 68px 40px;
width: 300px;
}

.login__container--form {
display: flex;
flex-direction: column;
}

.login__container--form label {
font-size: 14px;
}

.login__container--remember-me {
color: white;
display: flex;
justify-content: space-between;
margin-top: 10px;
}

.login__container--remember-me a {
color: white;
font-size: 14px;
text-decoration: none;
}

.login__container--remember-me a:hover {
text-decoration: underline;
}

.login__container--social-media > div {
align-items: center;
display: flex;
font-size: 14px;
margin-bottom: 10px;
}

.login__container--social-media > div > img {
margin-right: 10px;
width: 30px;
}

.login__container--register {
font-size: 14px;
}

.login__container--register a {
color: white;
font-weight: bold;
font-size: 16px;
text-decoration: none;
}

.login__container--register a:hover {
text-decoration: underline;
}

.footer {
align-items: center;
background-color: #8f57fd;
display: flex;
height: 100px;
width: 100%;
}

.footer a {
color: white;
cursor: pointer;
font-size: 14px;
padding-left: 30px;
text-decoration: none;
}

.footer a:hover {
text-decoration: underline;
}

.input {
background-color: transparent;
border-bottom: 2px solid white;
border-left: 0px;
border-right: 0px;
border-top: 0px;
color: white;
font-family: 'Muli', sans-serif;
font-size: 16px;
height: 50px;
margin-bottom: 20px;
outline: none;
padding: 0px 20px;
}

::placeholder {
color: white;
}

.button {
background-color: rgba(255, 255, 255, 0.3);
border: none;
border-radius: 25px;
color: white;
cursor: pointer;
font-size: 16px;
font-weight: bold;
font-family: 'Muli', sans-serif;
height: 50px;
letter-spacing: 1px;
margin: 10px 0px;
}

@media only screen and (max-width: 600px) {
.login__container {
background-color: transparent;
border: none;
box-shadow: none;
padding: 0px;
width: 100%;
}

.footer {
align-items: flex-start;
flex-direction: column;
}
}
28 changes: 28 additions & 0 deletions escuela-js/curso-frontend-developer/not-found/not-found.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- Font -->
<link href="https://fonts.googleapis.com/css?family=Muli&display=swap" rel="stylesheet">
<!-- Styles -->
<link rel="stylesheet" href="./styles.css">
<!-- Title -->
<title>Not Found</title>
</head>
<body>
<header class="header">
<img class="header__img" src="../assets/logo-platzi-video-BW2.png" alt="Platzi Video">
</header>
<section class="not-found">
<h2 class="not-found__title">404</h2>
<h3>Página no encontrada</h3>
</section>
<footer class="footer">
<a href="/">Terminos de uso</a>
<a href="/">Declaración de privacidad</a>
<a href="/">Centro de ayuda</a>
</footer>
</body>
</html>
112 changes: 112 additions & 0 deletions escuela-js/curso-frontend-developer/not-found/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
body {
margin: 0;
font-family: 'Muli', sans-serif;
}

.header {
align-items: center;
background-color: #21c08b;
color: white;
display: flex;
height: 100px;
justify-content: space-between;
top: 0px;
width: 100%;
}

.header__img {
margin-left: 30px;
width: 200px;
}

.not-found {
background-image: linear-gradient(#21c08b, #8f57fd);
display: flex;
align-items: center;
color: white;
flex-direction: column;
justify-content: center;
padding: 0px 30px;
min-height: calc(100vh - 200px); /* El ancho será igual al tamaño de todo el height menos 200px (100px del header + 100px del footer) */
}

.not-found__title {
font-size: 75px;
margin: 0px;
animation-name: pulse;
animation-duration: 1.5s;
}

@keyframes pulse {
0% {
transform: scale(1);
}

50% {
transform: scale(1.3);
}

100% {
transform: scale(1);
}
}

.footer {
align-items: center;
background-color: #8f57fd;
display: flex;
height: 100px;
width: 100%;
}

.footer a {
color: white;
cursor: pointer;
font-size: 14px;
padding-left: 30px;
text-decoration: none;
}

.footer a:hover {
text-decoration: underline;
}

.input {
background-color: transparent;
border-bottom: 2px solid white;
border-left: 0px;
border-right: 0px;
border-top: 0px;
color: white;
font-family: 'Muli', sans-serif;
font-size: 16px;
height: 50px;
margin-bottom: 20px;
outline: none;
padding: 0px 20px;
}

::placeholder {
color: white;
}

.button {
background-color: rgba(255, 255, 255, 0.3);
border: none;
border-radius: 25px;
color: white;
cursor: pointer;
font-size: 16px;
font-weight: bold;
font-family: 'Muli', sans-serif;
height: 50px;
letter-spacing: 1px;
margin: 10px 0px;
}

@media only screen and (max-width: 600px) {
.footer {
align-items: flex-start;
flex-direction: column;
}
}
36 changes: 36 additions & 0 deletions escuela-js/curso-frontend-developer/registro/registro.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- Font -->
<link href="https://fonts.googleapis.com/css?family=Muli&display=swap" rel="stylesheet">
<!-- Styles -->
<link rel="stylesheet" href="./styles.css">
<!-- Title -->
<title>Registro</title>
</head>
<body>
<header class="header">
<img class="header__img" src="../assets/logo-platzi-video-BW2.png" alt="Platzi Video">
</header>
<section class="register">
<section class="register__container">
<h2>Regístrate</h2>
<form class="register__container--form">
<input class="input" type="text" placeholder="Nombre">
<input class="input" type="text" placeholder="Correo">
<input class="input" type="password" placeholder="Contraseña">
<button class="button">Registrarme</button>
</form>
<a href="">Iniciar sesión</a>
</section>
</section>
<footer class="footer">
<a href="/">Terminos de uso</a>
<a href="/">Declaración de privacidad</a>
<a href="/">Centro de ayuda</a>
</footer>
</body>
</html>
Loading