Header gradient, add default text and link color variables

This commit is contained in:
Thomas Gelf 2014-02-25 10:06:52 +00:00
parent 912b3a6478
commit c6e96d1552
1 changed files with 8 additions and 0 deletions

View File

@ -9,6 +9,12 @@
#header {
background-color: #555;
background-image: -moz-linear-gradient(top, #777, #555);
background-image: -webkit-linear-gradient(top, #777, #555);
background-image: -o-linear-gradient(top, #777, #555);
background-image: -ms-linear-gradient(top, #777, #555);
background-image: linear-gradient(top, #777, #555);
color: #ddd;
color: #d0d0d0;
}
@ -31,6 +37,8 @@
}
}
@colorLinkDefault: #049baf;
@colorTextDefault: #222222;
@colorOk: #44bb77;
@colorWarning: #ffaa44;
@colorWarningHandled: #ffcc66;