Skip to content

Commit

Permalink
bg color change
Browse files Browse the repository at this point in the history
  • Loading branch information
Chad Crissman committed Jan 6, 2011
1 parent 135c078 commit 130d6be
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions public/stylesheets/site.css
Expand Up @@ -6,10 +6,15 @@
font-style: normal;
}

/*
light gray #C4C4C9
dark gray #676975
*/

html {
background: #3F5EA6;
background: #3F5EA6 -moz-linear-gradient(#DDE7FF, #3F5EA6);
background: #3F5EA6 -webkit-gradient(linear, 0% 0%, 0% 100%, from(#DDE7FF), to(#3F5EA6));
background: #676975;
background: #676975 -moz-linear-gradient(#C4C4C9, #676975);
background: #676975 -webkit-gradient(linear, 0% 0%, 0% 100%, from(#C4C4C9), to(#676975));
}

body {
Expand Down Expand Up @@ -86,20 +91,20 @@ header[role="banner"] h2 {
padding: 40px 10px 0;
font-weight: bold;
color: #fff;
color: rgba(255, 255, 255, .6);
text-decoration: none;
text-align: center;
text-transform: capitalize;
background: transparent url(/images/seal.png) center center no-repeat;
position: absolute;
right: 40px;
bottom: 40px;
-moz-transition: color .2s ease;
-webkit-transition: color .2s ease;
-moz-transition: all .3s ease;
-webkit-transition: all .3s ease;
opacity: .7;
}

.fork-me:hover {
color: #fff;
opacity: 1;
}

.team-list header {
Expand Down

0 comments on commit 130d6be

Please sign in to comment.