diff options
author | Kyle Gunger <kgunger12@gmail.com> | 2021-10-15 21:01:22 -0400 |
---|---|---|
committer | Kyle Gunger <kgunger12@gmail.com> | 2021-10-15 21:01:22 -0400 |
commit | 6c4896d3aa9d618f024b54c8d51f25ca3f625744 (patch) | |
tree | a70ceb0b6d477141e7791b21cb6eaa79316529df /styles | |
parent | fcf01353f94b11b8ca6db8ead14d2ec89a0275f4 (diff) |
[Themes] Theme selection and small fixes
Diffstat (limited to 'styles')
-rw-r--r-- | styles/client/base.css | 1 | ||||
-rw-r--r-- | styles/home/base.css | 2 | ||||
-rw-r--r-- | styles/input.css | 2 |
3 files changed, 5 insertions, 0 deletions
diff --git a/styles/client/base.css b/styles/client/base.css index 635fc78..a0178fd 100644 --- a/styles/client/base.css +++ b/styles/client/base.css @@ -1,5 +1,6 @@ * { font-family: 'Montserrat', sans-serif; + transition-duration: 0.2s; } html, body { diff --git a/styles/home/base.css b/styles/home/base.css index 9cd2a2f..3c8e321 100644 --- a/styles/home/base.css +++ b/styles/home/base.css @@ -1,5 +1,6 @@ * { font-family: 'Montserrat', sans-serif; + transition-duration: 0.2s; } html, body { @@ -25,6 +26,7 @@ div.content { padding: 20px; background-color: var(--gui-bg-main); + color: var(--main-color); border-radius: 10px; display: flex; diff --git a/styles/input.css b/styles/input.css index 6f99fb5..8101ae2 100644 --- a/styles/input.css +++ b/styles/input.css @@ -223,6 +223,8 @@ div.input-select overflow-x: hidden; max-height: 8em; + + border-radius: 3px; } div.input-select > div |