-
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
Showing
10 changed files
with
140 additions
and
103 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
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
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 |
---|---|---|
@@ -1,126 +1,129 @@ | ||
.conteudo-login p { | ||
color: var(--color-principal); | ||
.conteudo-login p, | ||
a { | ||
color: var(--color-principal); | ||
} | ||
|
||
.conteudo-login a { | ||
font-size: 22px; | ||
color: var(--color-principal); | ||
cursor: pointer; | ||
font-size: 22px; | ||
cursor: pointer; | ||
} | ||
|
||
.conteudo-login { | ||
display: block; | ||
margin: 0 auto; | ||
max-width: 600px; | ||
text-align: center; | ||
background-color: var(--bg-input); | ||
padding: 120px 60px; | ||
border-radius: 6px; | ||
margin-top: 120px; | ||
margin-bottom: 60px; | ||
} | ||
|
||
#conta-apple, #conta-google, #conta-face { | ||
background-color: #121111; | ||
color: #fff; | ||
padding: 10px 0px; | ||
border-radius: 4px; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
} | ||
|
||
display: block; | ||
margin: 0 auto; | ||
max-width: 600px; | ||
text-align: center; | ||
background-color: var(--bg-input); | ||
padding: 120px 60px; | ||
border-radius: 6px; | ||
margin-top: 120px; | ||
margin-bottom: 60px; | ||
} | ||
|
||
#conta-apple, | ||
#conta-google, | ||
#conta-face { | ||
background-color: #121111; | ||
color: var(--color-principal); | ||
padding: 10px 0px; | ||
border-radius: 4px; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
} | ||
|
||
#conta-google { | ||
background-color: #d9d9d9; | ||
background-color: #d9d9d9; | ||
} | ||
|
||
#conta-google a { | ||
color: #000; | ||
color: #000; | ||
} | ||
|
||
#conta-face { | ||
background-color: #202449; | ||
background-color: #202449; | ||
} | ||
|
||
.contas { | ||
display: grid; | ||
align-items: center; | ||
gap: 10px; | ||
padding: 26px 0 16px 0; | ||
display: grid; | ||
align-items: center; | ||
gap: 10px; | ||
padding: 26px 0 16px 0; | ||
} | ||
|
||
.form-login { | ||
display: grid; | ||
gap: 12px; | ||
padding-bottom: 14px; | ||
display: grid; | ||
gap: 12px; | ||
padding-bottom: 14px; | ||
} | ||
|
||
|
||
.form-login label { | ||
color: #302B2B; | ||
display: block; | ||
color: #D9D9D9; | ||
text-align: left; | ||
margin-left: 60px; | ||
color: #302b2b; | ||
display: block; | ||
color: #d9d9d9; | ||
text-align: left; | ||
margin-left: 60px; | ||
} | ||
|
||
.form-conta input[type= email], [type= password] { | ||
width: 80%; | ||
.form-conta input[type="email"], | ||
[type="password"] { | ||
width: 80%; | ||
} | ||
|
||
.form-conta input { | ||
border: none; | ||
border-bottom: 1px solid #bbb1b1; | ||
background-color: #212820; | ||
padding: 6px 0; | ||
border: none; | ||
border-bottom: 1px solid #bbb1b1; | ||
background-color: #212820; | ||
padding: 6px 0; | ||
} | ||
|
||
.form-conta input:focus { | ||
outline: none; | ||
border-bottom: 1px solid #fff; | ||
color: #fff; | ||
outline: none; | ||
border-bottom: 1px solid #fff; | ||
color: var(--color-principal); | ||
} | ||
|
||
|
||
#senhaperdida { | ||
padding-bottom: 20px; | ||
text-align: left; | ||
margin-left: 60px; | ||
color: #E5E3E3; | ||
display: block; | ||
max-width: max-content; | ||
font-size: 22px; | ||
#senhaperdida { | ||
padding-bottom: 20px; | ||
text-align: left; | ||
margin-left: 60px; | ||
color: #e5e3e3; | ||
display: block; | ||
max-width: max-content; | ||
font-size: 22px; | ||
} | ||
|
||
#senhaperdida:hover { | ||
color: #bbb7b7; | ||
color: #bbb7b7; | ||
} | ||
|
||
#btn-l { | ||
padding: 6px 4px; | ||
background-color: #030403; | ||
color: #fff; | ||
border: none; | ||
border-radius: 4px; | ||
cursor: pointer; | ||
padding: 6px 4px; | ||
background-color: #030403; | ||
color: #fff; | ||
border: none; | ||
border-radius: 4px; | ||
cursor: pointer; | ||
} | ||
|
||
#btn-l:hover { | ||
background-color: #0c0f0c; | ||
background-color: #0c0f0c; | ||
} | ||
|
||
span { | ||
font-size: 28px; | ||
color: var(--color-principal); | ||
font-size: 28px; | ||
color: var(--color-principal); | ||
} | ||
|
||
@media (max-width:450px) { | ||
|
||
#conta-face a, #conta-apple a, #conta-google a { | ||
@media (max-width: 450px) { | ||
#conta-face a, | ||
#conta-apple a, | ||
#conta-google a { | ||
font-size: 16px; | ||
} | ||
} | ||
|
||
.form-login label, #senhaperdida { | ||
.form-login label, | ||
#senhaperdida { | ||
margin-left: 34px; | ||
} | ||
} | ||
} |
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
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
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
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
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
Oops, something went wrong.