From b678f8eeb5740a0bc2ea877aedaeff06ded86fd1 Mon Sep 17 00:00:00 2001 From: Marco Alexander Fischer Date: Sat, 8 Sep 2018 17:27:05 +0200 Subject: Changed Login-button :lipstick: --- assets/css/style.css | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) (limited to 'assets') diff --git a/assets/css/style.css b/assets/css/style.css index d71c2a8..3a8c583 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -83,6 +83,34 @@ body { font-size: 18px; } +.button-blue { + background: #16BFFD; /* fallback for bad browsers */ + background: linear-gradient(to right, #CB3066, #16BFFD); + color: white; + border-radius: 20px; + width: 160px; + height: 35px; + border: none; + font-family: Ubuntu-Bold; + + -moz-transition: all .1s ease-in; + -o-transition: all .1s ease-in; + -webkit-transition: all .1s ease-in; + transition: all .1s ease-in; +} + +.button-blue:hover { + background: #16BFFD; /* fallback for bad browsers */ + background: linear-gradient(to right, #CB3066, #16BFFD); + color: white; + border-radius: 20px; + width: 175px; + height: 35px; + border: none; + font-family: Ubuntu-Bold; + cursor: pointer; +} + @keyframes middle-to-top { from { margin-top: 50vh; -- cgit v1.2.3