Last active
July 30, 2018 08:25
-
-
Save lindseydiloreto/37332424e0edaef54cabc50c324b0fab to your computer and use it in GitHub Desktop.
Sample CSS for Control Panel (Craft 3)
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
/* Sidebar background color */ | |
#global-sidebar { | |
background: #333f4d; | |
} | |
/* Header background color */ | |
#main-container #main #header { | |
background: #ebedef; | |
} | |
/* H1 tags */ | |
h1 { | |
color: #29323d; | |
} | |
/* Standard button color */ | |
.btn.submit { | |
background: #da5a47; | |
} | |
/* Hover button color */ | |
.btn.submit:not(.disabled):not(.inactive):hover, | |
.btn.submit:not(.disabled):not(.inactive).hover { | |
background: #bf503f; | |
} | |
/* Active button color */ | |
.btn.submit:not(.disabled):not(.inactive):active, | |
.btn.submit:not(.disabled):not(.inactive).active { | |
background: #8c3b2e; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment