Skip to content

Commit

Permalink
making the tags yellow instead of orange
Browse files Browse the repository at this point in the history
  • Loading branch information
boazsender committed Jan 26, 2012
1 parent ed0e6df commit ad06c16
Showing 1 changed file with 18 additions and 14 deletions.
32 changes: 18 additions & 14 deletions assets/css/style.css
Expand Up @@ -362,8 +362,6 @@ nav ul li {
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
border-width: 1px;
border-style: solid;
-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
}
#header h1 {
Expand Down Expand Up @@ -858,36 +856,42 @@ li.selected-search-item {
display: inline-block;
padding-right: 15px;

background-color: #0064CD;
background-color: #EEDC94;
background-repeat: repeat-x;
background-image: -khtml-gradient(linear, left top, left bottom, from(#fc7822), to(#ffa500));
background-image: -moz-linear-gradient(top, #fc7822, #ffa500);
background-image: -ms-linear-gradient(top, #fc7822, #ffa500);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fc7822), color-stop(100%, #ffa500));
background-image: -webkit-linear-gradient(top, #fc7822, #ffa500);
background-image: -o-linear-gradient(top, #fc7822, #ffa500);
background-image: linear-gradient(top, #fc7822, #ffa500);
background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1), to(#eedc94));
background-image: -moz-linear-gradient(top, #fceec1, #eedc94);
background-image: -ms-linear-gradient(top, #fceec1, #eedc94);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fceec1), color-stop(100%, #eedc94));
background-image: -webkit-linear-gradient(top, #fceec1, #eedc94);
background-image: -o-linear-gradient(top, #fceec1, #eedc94);
background-image: linear-gradient(top, #fceec1, #eedc94);
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
border-bottom: 1px solid #aaa;
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
border: 1px solid #333;
box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);

border-radius: 4px;
border: 1px solid #eb6711;
color: #444;
}

li.selected-search-item a {
display: inline-block;
background-color: white;
border: 1px solid #ccc;
border: 1px solid #333;
font-weight: normal;
width: 13px;
text-align: center;
margin-right: 10px;

border-radius: 10px;
box-shadow: inset 1px 1px 1px #C94500;
box-shadow: inset 1px 1px 1px #888;
padding: 0 0 0 2px;
font-size: 11px;
}

li.selected-search-item a:hover {
box-shadow: 2px 1px 2px #333 inset;
box-shadow: 2px 1px 2px #888 inset;
text-decoration: none;
}

Expand Down

0 comments on commit ad06c16

Please sign in to comment.