Skip to content

Commit

Permalink
🔥 Project
Browse files Browse the repository at this point in the history
  • Loading branch information
teffcode committed Oct 11, 2019
0 parents commit 9a6fe13
Show file tree
Hide file tree
Showing 15 changed files with 956 additions and 0 deletions.
Binary file added .DS_Store
Binary file not shown.
Binary file added assets/google-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/logo-platzi-video-BW2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/logo-platzi-video-colors.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/logo-platzi-video.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/play-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/plus-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/twitter-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/user-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
45 changes: 45 additions & 0 deletions iniciar-sesion/iniciar-sesion.html
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 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;
}
}
36 changes: 36 additions & 0 deletions 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>
128 changes: 128 additions & 0 deletions registro/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,128 @@
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;
}

.register {
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) */
}

.register__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: 600px;
padding: 60px 68px 40px;
width: 300px;
}

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

.register__container a {
color: white;
font-size: 16px;
text-align: center;
text-decoration: none;
}

.register__container 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) {
.register__container {
background-color: transparent;
border: none;
box-shadow: none;
padding: 0px;
width: 100%;
}

.footer {
align-items: flex-start;
flex-direction: column;
}
}
Loading

0 comments on commit 9a6fe13

Please sign in to comment.