Skip to content

Commit

Permalink
hopefully header bg gradient and isotope logo
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Heitzke committed Feb 22, 2012
1 parent d998474 commit d5fa170
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 4 deletions.
17 changes: 14 additions & 3 deletions jenkins-isotope-style.css
@@ -1,7 +1,18 @@
#top-panel {
background: none; }
#top-panel td a img {
display: none; }
background: #aabeca;
background: -moz-linear-gradient(top, #aabeca 0%, #b0bbc4 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #aabeca), color-stop(100%, #b0bbc4));
background: -webkit-linear-gradient(top, #aabeca 0%, #b0bbc4 100%);
background: -o-linear-gradient(top, #aabeca 0%, #b0bbc4 100%);
background: -ms-linear-gradient(top, #aabeca 0%, #b0bbc4 100%);
background: linear-gradient(top, #aabeca 0%, #b0bbc4 100%); }
#top-panel td a {
background: url(http://http://isotope11.com/assets/isotope_logo.png) 0 0 no-repeat;
display: block;
height: 85px;
width: 276px; }
#top-panel td a img {
display: none; }

#side-panel {
background-color: #ddd; }
Expand Down
12 changes: 11 additions & 1 deletion jenkins-isotope-style.scss
@@ -1,7 +1,17 @@
#top-panel{
background: none;
background: #aabeca;
background: -moz-linear-gradient(top, #aabeca 0%, #b0bbc4 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#aabeca), color-stop(100%,#b0bbc4));
background: -webkit-linear-gradient(top, #aabeca 0%,#b0bbc4 100%);
background: -o-linear-gradient(top, #aabeca 0%,#b0bbc4 100%);
background: -ms-linear-gradient(top, #aabeca 0%,#b0bbc4 100%);
background: linear-gradient(top, #aabeca 0%,#b0bbc4 100%);
td {
a {
background:url(http://http://isotope11.com/assets/isotope_logo.png) 0 0 no-repeat;
display:block;
height: 85px;
width: 276px;
img {
display:none;
}
Expand Down

0 comments on commit d5fa170

Please sign in to comment.