-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b8aa479
commit d6fbbff
Showing
2 changed files
with
62 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="stylesheet" href="style.css"> | ||
<title>Document</title> | ||
</head> | ||
<body> | ||
<div class="container"> <!--Tela toda--> | ||
<div class="formulario"> | ||
|
||
<h1 class="formulario-texto">LOGIN</h1> | ||
|
||
<input type="text" name="usuario" id="usuario"> | ||
<input type="password" name="senha" id="senha"> | ||
|
||
<button>ENTRAR</button> | ||
|
||
<p>Não possui conta? <a href="#">Cadastre-se</a></p> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
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,38 @@ | ||
*{ | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
.container{ | ||
display: flex; | ||
justify-content: center; | ||
width: 100%; | ||
height: 100vh; | ||
} | ||
|
||
.formulario{ | ||
display: flex; | ||
flex-direction: column; | ||
margin-top: 8rem; | ||
background-color: beige; | ||
padding: 3.1rem; | ||
width: 18rem; | ||
height: 21rem; | ||
text-align: center; | ||
} | ||
|
||
.formulario-texto{ | ||
color: rgb(0, 0, 0); | ||
margin-bottom: 1.25rem; | ||
|
||
} | ||
|
||
input{ | ||
margin-bottom: 1.25rem; | ||
} | ||
|
||
button{ | ||
margin-bottom: 1.25rem; | ||
} | ||
|
||
p{} |