From 06e91f0d6cdf9bfa5af2dacb4dad791f302a87fd Mon Sep 17 00:00:00 2001 From: Nazar Kanaev Date: Sat, 4 Jul 2020 16:20:44 +0100 Subject: [PATCH] button style --- template/index.html | 4 ++-- template/static/stylesheets/app.css | 14 +++++++++++++- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/template/index.html b/template/index.html index 36871a0..3f744fd 100644 --- a/template/index.html +++ b/template/index.html @@ -128,7 +128,7 @@ - +
@@ -186,7 +186,7 @@
- +
diff --git a/template/static/stylesheets/app.css b/template/static/stylesheets/app.css index 078cb6e..b8edbc0 100644 --- a/template/static/stylesheets/app.css +++ b/template/static/stylesheets/app.css @@ -11,7 +11,7 @@ body { } .form-control { - transition: none; + box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.07); } select.form-control { @@ -183,3 +183,15 @@ select.form-control:not([multiple]):not([size]) { top: 50%; z-index: 1; } + +.btn-default { + border: 1px solid #ced4da; + border-radius: .25rem; + box-shadow: 0 1px 2px rgba(0,0,0,0.1); + background: linear-gradient(#fff, #f5f7f9); +} + +.btn-default:active { + background: #f5f7f9; + box-shadow: none; +}