Skip to content

Commit

Permalink
better gradients
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Sep 12, 2013
1 parent a61c3d7 commit 8ea8eef
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions lib/Mojolicious/templates/mojobar.html.ep
Expand Up @@ -3,18 +3,8 @@
%= stylesheet scoped => 'scoped', begin
#mojobar {
background-color: #1a1a1a;
background: -webkit-gradient(
linear,
0% 0%,
0% 100%,
color-stop(0%, #2a2a2a),
color-stop(100%, #000)
);
background: -moz-linear-gradient(
top,
#2a2a2a 0%,
#000 100%
);
background: -webkit-linear-gradient(top, #2a2a2a 0%, #000 100%);
background: -moz-linear-gradient(top, #2a2a2a 0%, #000 100%);
background: linear-gradient(top, #2a2a2a 0%, #000 100%);
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.6);
height: 46px;
Expand Down

0 comments on commit 8ea8eef

Please sign in to comment.