diff options
Diffstat (limited to 'module/web/static/css/default/style.less')
-rw-r--r-- | module/web/static/css/default/style.less | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/module/web/static/css/default/style.less b/module/web/static/css/default/style.less index 5c0b052db..157b3feb7 100644 --- a/module/web/static/css/default/style.less +++ b/module/web/static/css/default/style.less @@ -100,6 +100,38 @@ a:hover { height: @header-height;
}
+.btn-blue {
+ background-color: hsl(206, 49%, 35%) !important;
+ background-repeat: repeat-x;
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#5493c4), to(#2d5f84));
+ background-image: -moz-linear-gradient(top, #5493c4, #2d5f84);
+ background-image: -ms-linear-gradient(top, #5493c4, #2d5f84);
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5493c4), color-stop(100%, #2d5f84));
+ background-image: -webkit-linear-gradient(top, #5493c4, #2d5f84);
+ background-image: -o-linear-gradient(top, #5493c4, #2d5f84);
+ background-image: linear-gradient(#5493c4, #2d5f84);
+ border-color: #2d5f84 #2d5f84 hsl(206, 49%, 30%);
+ color: #fff !important;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.33);
+ -webkit-font-smoothing: antialiased;
+}
+
+.btn-yellow {
+ background-color: hsl(51, 99%, 55%) !important;
+ background-repeat: repeat-x;
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#feeb80), to(#fddb1a));
+ background-image: -moz-linear-gradient(top, #feeb80, #fddb1a);
+ background-image: -ms-linear-gradient(top, #feeb80, #fddb1a);
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #feeb80), color-stop(100%, #fddb1a));
+ background-image: -webkit-linear-gradient(top, #feeb80, #fddb1a);
+ background-image: -o-linear-gradient(top, #feeb80, #fddb1a);
+ background-image: linear-gradient(#feeb80, #fddb1a);
+ border-color: #fddb1a #fddb1a hsl(51, 99%, 50%);
+ color: #333 !important;
+ text-shadow: 0 1px 1px rgba(255, 255, 255, 0.33);
+ -webkit-font-smoothing: antialiased;
+}
+
/*
Header
*/
|