diff options
Diffstat (limited to 'dashboard/res/public/css/style.css')
-rw-r--r-- | dashboard/res/public/css/style.css | 29 |
1 files changed, 27 insertions, 2 deletions
diff --git a/dashboard/res/public/css/style.css b/dashboard/res/public/css/style.css index 3f47f37..e19d55c 100644 --- a/dashboard/res/public/css/style.css +++ b/dashboard/res/public/css/style.css @@ -43,8 +43,8 @@ padding: 20px; } -.myButton { - margin-right: 30px; +.myButton, .myButton3 { + margin-right: 20px; } .myButton { @@ -96,3 +96,28 @@ position:relative; top:1px; } + +.myButton3 { + box-shadow:inset 0px 1px 0px 0px #bbdaf7; + background:linear-gradient(to bottom, #79bbff 5%, #378de5 100%); + background-color:#79bbff; + border-radius:6px; + border:1px solid #84bbf3; + display:inline-block; + cursor:pointer; + color:#ffffff; + font-family:Arial; + font-size:15px; + font-weight:bold; + padding:6px 24px; + text-decoration:none; + text-shadow:0px 1px 0px #528ecc; +} +.myButton3:hover { + background:linear-gradient(to bottom, #378de5 5%, #79bbff 100%); + background-color:#378de5; +} +.myButton3:active { + position:relative; + top:1px; +} |