From 57aae967816a96867d291a3b0d6a1c47fe00944e Mon Sep 17 00:00:00 2001 From: Tamius Han Date: Mon, 28 Mar 2022 23:57:34 +0200 Subject: [PATCH] Update button css --- src/csui/src/res-common/common.scss | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/csui/src/res-common/common.scss b/src/csui/src/res-common/common.scss index 09ef0b1..078653e 100644 --- a/src/csui/src/res-common/common.scss +++ b/src/csui/src/res-common/common.scss @@ -26,4 +26,22 @@ div, p, span { h1, h2, h3 { font-family: 'Overpass' !important; font-weight: 100 !important; + margin: 0; + padding: 0; +} + +.button { + background-color: rgba(11,11,11,0.5); + color: #aaa; + border: 1px solid transparent; + + &:hover { + color: #fff; + background-color: rgba(11,11,11,0.9); + border-bottom: 1px solid rgba($primary, 0.5); + } +} +.b3 { + margin: 0.25rem; + padding: 0.5rem 2rem; }