Created
October 28, 2021 14:45
-
-
Save NyaGarcia/f84468562c06cc4b81279f502e411fd1 to your computer and use it in GitHub Desktop.
Adding styles to the login page
This file contains hidden or 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
a { | |
color: #838383; | |
margin-top: 30px; | |
text-decoration: none; | |
} | |
h1 { | |
color: #5eccd6; | |
font-weight: bolder; | |
margin-bottom: 20px; | |
} | |
h5 { | |
color: #838383; | |
} | |
button { | |
border-radius: 20px; | |
padding: 0 50px; | |
} | |
p { | |
margin-bottom: 20px; | |
text-align: center; | |
} | |
.background { | |
align-items: center; | |
display: flex; | |
height: 100%; | |
justify-content: center; | |
} | |
.login-container { | |
border-radius: 10px; | |
box-shadow: 0 0 20px 2px #e4e4e4; | |
display: flex; | |
width: 60%; | |
} | |
.text-container { | |
align-items: center; | |
background-color: #5eccd6; | |
border-radius: 10px 0 0 10px; | |
color: #fff; | |
display: flex; | |
flex-direction: column; | |
justify-content: center; | |
padding: 50px; | |
width: 30%; | |
} | |
.form-container { | |
align-items: center; | |
background-color: #fff; | |
border-radius: 0 10px 10px 0; | |
display: flex; | |
flex-direction: column; | |
justify-content: center; | |
padding: 80px; | |
width: 70%; | |
} | |
.text-container h1 { | |
color: #fff; | |
} | |
.text-container button { | |
background-color: transparent; | |
border: 1px solid #fff; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment