Created
January 17, 2022 11:01
-
-
Save Deanout/f5199a5f3f1adc0c29ddee493dd1d658 to your computer and use it in GitHub Desktop.
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
<style scoped> | |
.sm-title { | |
font-size: 2.5rem; | |
font-weight: bold; | |
text-align: center; | |
font-family: "Roboto", sans-serif; | |
} | |
.container { | |
width: 90%; | |
margin: 0 auto; | |
} | |
.sm-card { | |
width: 75%; | |
padding: 20px; | |
margin: 0 auto; | |
height: 25em; | |
border-radius: 10px; | |
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2); | |
} | |
.sign-up-form { | |
width: 100%; | |
} | |
.sign-up-form-email { | |
width: 55%; | |
padding: 10px; | |
margin: 0 auto; | |
border-radius: 5px; | |
border: 1px solid #ccc; | |
} | |
.sign-up-form-password { | |
width: 55%; | |
padding: 10px; | |
margin: 0 auto; | |
border-radius: 5px; | |
border: 1px solid #ccc; | |
} | |
.sign-up-form-submit { | |
width: 15%; | |
padding: 1em; | |
margin: 0 auto; | |
border-radius: 5px; | |
background-color: #1a77ce; | |
color: #fff; | |
border: none; | |
} | |
.sign-up-form-submit:hover { | |
background-color: #0d5c8a; | |
cursor: pointer; | |
} | |
.login-form { | |
width: 100%; | |
} | |
.login-form-email { | |
width: 55%; | |
padding: 10px; | |
margin: 0 auto; | |
border-radius: 5px; | |
border: 1px solid #ccc; | |
} | |
.login-form-password { | |
width: 55%; | |
padding: 10px; | |
margin: 0 auto; | |
border-radius: 5px; | |
border: 1px solid #ccc; | |
} | |
.login-form-submit { | |
width: 15%; | |
padding: 1em; | |
margin: 0 auto; | |
border-radius: 5px; | |
background-color: #1a77ce; | |
color: #fff; | |
border: none; | |
} | |
.login-form-submit:hover { | |
background-color: #0d5c8a; | |
cursor: pointer; | |
} | |
.logout-button { | |
width: 15%; | |
padding: 1em; | |
margin: 0 auto; | |
border-radius: 5px; | |
background-color: #1a77ce; | |
color: #fff; | |
border: none; | |
} | |
.logout-button:hover { | |
background-color: #0d5c8a; | |
cursor: pointer; | |
} | |
.table-headers { | |
background-color: #2b3b49; | |
color: #fff; | |
max-width: 90%; | |
margin: 0 auto; | |
} | |
.table-rows { | |
background-color: #f2f2f2; | |
margin: 0 auto; | |
} | |
.table-row { | |
word-break: break-all; | |
text-align: center; | |
padding: 10px; | |
} | |
.table-row-username { | |
width: 30%; | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment