Skip to content

Instantly share code, notes, and snippets.

@noahpeltier
Last active March 6, 2024 17:21
Show Gist options
  • Save noahpeltier/335bbd2fff287e93f6f64b50b5e69e4b to your computer and use it in GitHub Desktop.
Save noahpeltier/335bbd2fff287e93f6f64b50b5e69e4b to your computer and use it in GitHub Desktop.
/* 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