Skip to content

Instantly share code, notes, and snippets.

@lindseydiloreto
Created January 7, 2015 18:17
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lindseydiloreto/50643ea5635b4e8aaa74 to your computer and use it in GitHub Desktop.
Save lindseydiloreto/50643ea5635b4e8aaa74 to your computer and use it in GitHub Desktop.
CP CSS - Starter Code
/* Header background color */
#header {
background: #333f4d;
}
/* Page background (including tabs) */
html, body,
#nav li a.sel {
background: #f1f2f3;
}
/* H1 tags */
h1 {
color: #da5a47;
}
/* Standard button color */
.btn.submit {
background: #da5a47;
}
/* Hover/active button color */
.btn.submit:not(.disabled):hover, .btn.submit:not(.disabled).hover,
.btn.submit:not(.disabled):active, .btn.submit:not(.disabled).active {
background: #bf503f;
}
/* Hide "Updates Available" icon */
/* (to prevent clients from auto-updating in Production environment) */
#header-actions .updates {
display: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment