Skip to content

Commit

Permalink
green boxes
Browse files Browse the repository at this point in the history
  • Loading branch information
muehlber committed Sep 7, 2024
1 parent 254e768 commit 9ebae2f
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions assets/css/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,27 @@ a {
text-decoration:none;
}

header li {
background: #00af11;
background: -moz-linear-gradient(top, #00af11 0%, #008211 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f8f8f8), color-stop(100%,#dddddd));
background: -webkit-linear-gradient(top, #00af11 0%,#008211 100%);
background: -o-linear-gradient(top, #00af11 0%,#008211 100%);
background: -ms-linear-gradient(top, #00af11 0%,#008211 100%);
background: linear-gradient(to top, #00af11 0%,#008211 100%);
-webkit-box-shadow: inset 0px 1px 1px 0 rgba(233,2,38, 1);
box-shadow: inset 0px 1px 1px 0 rgba(233,2,38, 1);
}

header li:hover {
background: #C3001D;
background: -moz-linear-gradient(top, #C3001D 0%, #950119 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f8f8f8), color-stop(100%,#dddddd));
background: -webkit-linear-gradient(top, #C3001D 0%,#950119 100%);
background: -o-linear-gradient(top, #C3001D 0%,#950119 100%);
background: -ms-linear-gradient(top, #C3001D 0%,#950119 100%);
background: linear-gradient(to top, #C3001D 0%,#950119 100%);
}

.wrapper {
width:100%;
Expand Down

0 comments on commit 9ebae2f

Please sign in to comment.