Skip to content

Instantly share code, notes, and snippets.

@lindseydiloreto
Last active July 30, 2018 08:25
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lindseydiloreto/37332424e0edaef54cabc50c324b0fab to your computer and use it in GitHub Desktop.
Save lindseydiloreto/37332424e0edaef54cabc50c324b0fab to your computer and use it in GitHub Desktop.
Sample CSS for Control Panel (Craft 3)
/* 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