Last active
December 28, 2021 14:15
-
-
Save NyaGarcia/fc48ae4c9d73ac22258e3c0801e4847b to your computer and use it in GitHub Desktop.
Adding some styles to the dashboard
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
h1 { | |
color: #5eccd6; | |
font-size: 50px; | |
font-weight: bolder; | |
} | |
h2 { | |
color: #698893; | |
margin-bottom: 50px; | |
} | |
a { | |
color: #5eccd6; | |
border-bottom: 2px solid transparent; | |
transition: 0.5s border-bottom; | |
} | |
mat-toolbar { | |
background-color: transparent; | |
display: flex; | |
justify-content: right; | |
} | |
.background { | |
align-items: center; | |
background-image: url("/assets/mountains.png"); | |
box-sizing: border-box; | |
display: flex; | |
flex-direction: column; | |
height: calc(100vh - 64px); | |
padding-top: 10%; | |
} | |
.btn { | |
background-color: #5eccd6; | |
border-radius: 20px; | |
color: #fff; | |
padding: 10px 30px; | |
text-decoration: none; | |
transition: 0.5s background-color; | |
} | |
a:hover { | |
border-bottom: 2px solid #5eccd6; | |
cursor: pointer; | |
} | |
.btn:hover { | |
background-color: #52b7c0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment