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
3 changes: 3 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
</li>
<li>
<a href="./Andres-Cuellar/index.html">Andrés Cuéllar</a>
</li>
<li>
<a href="./sonOFAthena/index.html">Jose Ramirez</a>
</li>
</ul>
</body>
Expand Down
2 changes: 2 additions & 0 deletions sonOFAthena/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules/
Copy link
Contributor

Choose a reason for hiding this comment

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

@sonOFAthena esto esta bueno y lo podrias dejar al nivel raiz del proyecto

.vscode/
48 changes: 48 additions & 0 deletions sonOFAthena/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<!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">
<link rel="stylesheet" href="style.css"><link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous" />
<title>Login</title>
</head>
<body>
<div class="container">
<div class="form">
<h2>Sign in</h2>
<p class="text"> Stay updated on your professional world</p>
<div class="formGroup">
<i class="far fa-envelope"></i>
<input type="email" name="email" id="email" placeholder="Email">
</div>
<div class="formGroup">
<i class="fas fa-lock"></i>
<input type="password" name="password" id="password" placeholder="Password">
<div class="show"> show </div>
</div>
<div class="forgotten">
<h6>Forgot password?</h6>
</div>
<button class="btn">Sign in</button>
<hr> <!-- Horizontal Line -->
<div class="orDiv">Or</div>
<div class="actions">
<button class="btn2 btn-social">
<span class="icon">
<img src="https://cdn-icons.flaticon.com/png/512/2504/premium/2504739.png?token=exp=1656532770~hmac=bac105e2978fda1e2c40f8b279946cb8" alt="logo_de_google">
Sign in with Google
</span>
</button>
<button class="btn2 btn-social">
<span class="icon">
<img src="https://cdn-icons-png.flaticon.com/512/0/747.png" alt="logo_de_apple">
Sign in with Apple
</span>
</button>
</div>
</div>
</div>
</body>
</html>
48 changes: 48 additions & 0 deletions sonOFAthena/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions sonOFAthena/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.1"
}
}
174 changes: 174 additions & 0 deletions sonOFAthena/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,174 @@
/* * {
padding: 0;
margin: 0;
} */

body{
padding: 0;
margin: 0;
height: 100vh;
font-family: sans-serif;
box-sizing: border-box;
}

.container {
height: 100vh;
display: flex;
align-content: center;
justify-content: center;
align-items: center;
}

.form {
display: flex;
flex-direction: column;
width: 15%;
height: 44%;
padding: 30px;
background-color: white;
border-radius: 10px;
box-shadow: 0px 0px 20px black;
}

.form h2 {
margin-block-start: 0px;
margin-block-end: 0px;
}

.text {
font-size: small;
}

.orDiv {
width: 10%;
margin: 0 auto;
background-color: white;
/* Allow beetween hr allocation */
position: relative;
top: -16px;
justify-content: center;
font-size: 11px;
padding-left: 10px;
}

.formGroup {
width: 100%;
position: relative;

}

.formGroup input {
width: 100%;
padding: 10px;
margin-bottom: 10px;
border: 1px solid grey;
padding-left: 30px !important;
box-sizing: border-box;
}

.formGroup i {
position: absolute;
left: 0px;
top: 0px;
color: grey;
font-size: smaller;
margin: 10px !important;
}

input::placeholder {
position: relative;
}

input:focus{
border-color: red;
}

.forgotten h6{
display: flex;
margin: 0 auto;
padding-bottom: 10px;
cursor: pointer;
}

.forgotten h6:hover{
color: red;
}

.btn {
width: 100%;
padding: 10px;
background-color: rgb(24, 65, 179);
margin-top: 15px;
margin-bottom: 15px;
color: white;
border-radius: 20px;
border-style: none;
}


.btn:hover {
background-color: rgb(31, 91, 255);
color: whitesmoke;
}

.show {
position: absolute;
/* left: 85%; */
right: 3px;
top: 0px;
color: blue;
font-weight: bold;
font-size: 11px;
margin: 12px !important;
}

hr {
width: 100%;
overflow: visible;
}

/* Codigo de internet */
.actions{
/* margin-top: 20px; */
display: flex;
flex-direction: column;
gap: 10px;
}

.actions .btn2{
width: 100%;
/* padding: 15px 20px; */
font-size: 13px;
border: 0px;
background-color: #fff;
border-radius: 50px;
/* margin-top: 15px; */

padding: 10px;
/* margin-top: 15px;
margin-bottom: 15px; */
}

.actions .btn-social{
background-color: white;
cursor: pointer;
color: black;
border: 1px solid black;
}
.actions .btn-social:hover{
background-color: #0b0a38;
transition: .5s all ease;
color: white;
}
.actions .btn-social .icon {
display: flex;
/* vertical-align: middle; */
justify-content: center;
align-items: center;
}
.actions .btn-social .icon img{
width: 20px;
height: 20px;
object-fit: contain;
padding-right: 5px;
}