Last active
March 6, 2024 17:21
-
-
Save noahpeltier/335bbd2fff287e93f6f64b50b5e69e4b 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
/* Change button primary color to green */ | |
.btn-primary { | |
background-color: #4CAF50; | |
border-color: #4CAF50; | |
} | |
.btn-primary:hover, | |
.btn-primary:focus { | |
background-color: #45a049; | |
border-color: #45a049; | |
} | |
/* Change sidebar navigation to black with white text */ | |
.sidebar { | |
background-color: #000; | |
color: #fff; | |
} | |
.sidebar a { | |
color: #fff; | |
} | |
.sidebar a:hover { | |
color: #ccc; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment