From 27cb0950ab1da0d3687f736430d11c16b4fe94b2 Mon Sep 17 00:00:00 2001 From: Siklos Date: Sun, 25 Sep 2022 15:50:55 -0400 Subject: [PATCH] Add 'style.css' --- style.css | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 style.css diff --git a/style.css b/style.css new file mode 100644 index 0000000..ea70649 --- /dev/null +++ b/style.css @@ -0,0 +1,28 @@ +.tab.active { + border: 2px solid #f4dbd6 !important; + color: #f4dbd6 !important; +} +.tab.active:hover { + border: 2px solid #f4dbd6 !important; + background-color: #363a4f !important; +} +.tab{ + font-weight: 700 !important; + border-radius: 20px !important; + margin: 2px !important; + padding-bottom: 2px !important; + height: 40px !important; + border:2px solid #1e2030 !important; + background-color: #1e2030 !important; + transition-property: all; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} +.tab:hover { + border:2px solid #363a4f !important; + background-color: #363a4f !important; +} +.tabs-container{ + height: auto !important; + padding: 5px !important; +} \ No newline at end of file