Skip to content

Commit

Permalink
refined gray-white and white-gray variation css
Browse files Browse the repository at this point in the history
  • Loading branch information
marpa committed Aug 25, 2011
1 parent 9250049 commit 0dd02c8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
10 changes: 7 additions & 3 deletions colors/gray-white.css
Expand Up @@ -26,7 +26,7 @@ body {

#branding {
background-color: transparent;
border-top: 2px solid #fff;
border-top: 1px solid transparent;
}
#site-title a {
color: #003366;
Expand All @@ -37,7 +37,7 @@ body {
color: #CC9;
}
#site-description {
color: #CC9;
color: #000;
}
#branding #s {
background-color: #ddd;
Expand All @@ -52,7 +52,11 @@ body {
background: -moz-linear-gradient(#CCCCCC, #E6E6E6);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#CCCCCC), to(#E6E6E6)); /* older webkit syntax */
background: -webkit-linear-gradient(#CCCCCC, #E6E6E6);
border-bottom: 1px solid #222;
border-bottom: 1px solid #bbb;
-webkit-box-shadow: rgba(0, 0, 0, 0) 0px 1px 1px;
-moz-box-shadow: rgba(0, 0, 0, 0) 0px 1px 1px;
box-shadow: rgba(0, 0, 0, 0) 0px 1px 1px;

}

#access a {
Expand Down
7 changes: 5 additions & 2 deletions colors/white-gray.css
Expand Up @@ -37,7 +37,7 @@ body {
color: #CC9;
}
#site-description {
color: #CC9;
color: #000;
}
#branding #s {
background-color: #ddd;
Expand All @@ -52,7 +52,10 @@ body {
background: -moz-linear-gradient(#CCCCCC, #E6E6E6);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#CCCCCC), to(#E6E6E6)); /* older webkit syntax */
background: -webkit-linear-gradient(#CCCCCC, #E6E6E6);
border-bottom: 1px solid #222;
border-bottom: 1px solid #bbb;
-webkit-box-shadow: rgba(0, 0, 0, 0) 0px 1px 1px;
-moz-box-shadow: rgba(0, 0, 0, 0) 0px 1px 1px;
box-shadow: rgba(0, 0, 0, 0) 0px 1px 1px;
}

#access a {
Expand Down

0 comments on commit 0dd02c8

Please sign in to comment.