Created
April 22, 2010 16:41
-
-
Save smerrill/375468 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
/* $Id$ */ | |
/** | |
* Styles and colors that the color module will modify. | |
*/ | |
body, | |
#block-system-main { | |
color: #3b3b3b; | |
} | |
#header { | |
background-color: #000000; | |
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#000000), to(#3d3d3d)); | |
background-image: -moz-linear-gradient(-90deg, #000000, #3d3d3d); | |
} | |
a { | |
color: #0073b6; | |
} | |
a:hover, | |
a:focus { | |
color: #018fe2; | |
} | |
a:active { | |
color: #23aeff; | |
} | |
.sidebar .block { | |
background: #f0f0f0; | |
background-image: -webkit-gradient(linear, 0% 0%, 0% 95%, from(#f7f7f7), to(#f0f0f0)); | |
background-image: -moz-linear-gradient(0% 0%, #f7f7f7 0%, #f0f0f0 95%); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment