summaryrefslogtreecommitdiff
path: root/public/main.css
diff options
context:
space:
mode:
authorJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2023-08-18 19:38:57 +0100
committerJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2023-08-18 19:38:57 +0100
commit490447fc142ea0fdb0389a3964ce75a3f72b6ed3 (patch)
tree517399a4efe09cbda077925266799ef29af4fb87 /public/main.css
parent873263efd06201981f9047011079d07dba97745a (diff)
Pulls out .btn block
Diffstat (limited to 'public/main.css')
-rw-r--r--public/main.css25
1 files changed, 2 insertions, 23 deletions
diff --git a/public/main.css b/public/main.css
index c41c9cb..1f3cf13 100644
--- a/public/main.css
+++ b/public/main.css
@@ -1,3 +1,5 @@
+@import 'css/btn.css';
+
:root {
/*
* This colour palette should not be accessed directly. Instead, use *
@@ -206,29 +208,6 @@ p:not(:first) {
color: var(--special-text-highlight-color);
}
-.btn {
- color: var(--text-color);
- border: solid 2px var(--text-color);
- font-weight: 500;
- text-decoration: underline;
- padding-inline: 0.5rem;
- padding-block: 0.25rem;
- background-color: transparent;
- transition:
- background-color 300ms,
- text-decoration-color 300ms,
- transform 50ms;
-}
-
-.btn:hover {
- background-color: var(--background-highlight-color);
- text-decoration-color: transparent;
-}
-
-.btn:active {
- transform: scale(1.1, 1.1);
-}
-
td {
padding-block-start: var(--spacing-block-sm);
}