Skip to content
Open
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
33 changes: 33 additions & 0 deletions web/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Proyecto Git</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="master--form">
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@stomdj arreglar identado de 2 espacios en todo el archivo

<form action="">
<label class="text--sig-in" for="Titulo">Sign in</label>
<label class="text--comment">Stay updated on your professional world</label>
<input type="email" name="signin--email" placeholder="Email or Phone">
<input type="password" name="signin--password" placeholder="Password">
<a href="">Forgot password</a>
<button type="submit">Sign in</button>
<hr>
<button>
<img src="https://cdn.icon-icons.com/icons2/729/PNG/512/google_icon-icons.com_62736.png">
Sign in whit Google
</button>
<button>
<img src="https://cdn.icon-icons.com/icons2/1/PNG/256/social_apple_mac_65.png">
Sign in whit Apple
</button>
</form>
</div>
</div>
</body>
</html>
94 changes: 94 additions & 0 deletions web/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;700&family=Rosario:wght@300&display=swap');
* {
padding: 0;
margin: 0;
font-family: Century Gothic;
}
body {
background-color: rgb(247, 243, 243);
display: flex;
justify-content: center;
align-items: center;
}
.container {
margin-top: 70px;
width: 500px;
height: 900px;
position: relative;
}

.master--form {
border-radius: 20px;
position: absolute;
height: 500px;
width: 290px;
margin: 10px;
background-color: #fff;
/* Sombreado de caja */
box-shadow: 18px 25px 25px 10px rgba(0,0,0,0.29);
-webkit-box-shadow: 18px 25px 25px 10px rgba(0,0,0,0.29);
-moz-box-shadow: 18px 25px 25px 10px rgba(0,0,0,0.29);
}

form {
margin: 10px;
padding: 10px;
display: flex;
flex-direction: column;
justify-content: space-evenly;
}
input {
padding: 7px;
margin: 6px;
}
label {
/* padding: 10px; */
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@stomdj eliminar código que no se ocupa

margin: 20px;
}

a {
padding: 10px;
font-size: 10px;
text-decoration: none;
color: #0966c2;
}

.text--sig-in {
font-size: 30px;
text-align: center;
color: #0966c2;
font-family: 'Josefin Sans';
}

img {
height: 25px;
width: 25px;
align-items: flex-end;
}

button {
color: #fff;
padding: 10px;
border-radius: 8px;
border-style: none;
margin: 10px;
background-color: #0966c2;
text-align: center;
display: flex;
justify-content: space-around;
align-items: center;
cursor: pointer;
}

.text--comment {
font-size: 10px;
}

button:hover {
background-color: #0558aa;

}
button:active {
background-color: #0558aa;
transform: translateY(-2px);
}