aboutsummaryrefslogtreecommitdiff
path: root/styles/button.css
diff options
context:
space:
mode:
Diffstat (limited to 'styles/button.css')
-rw-r--r--styles/button.css25
1 files changed, 25 insertions, 0 deletions
diff --git a/styles/button.css b/styles/button.css
new file mode 100644
index 0000000..ff5ecec
--- /dev/null
+++ b/styles/button.css
@@ -0,0 +1,25 @@
+.button {
+ background-color: var(--fire-opal);
+ color: var(--fg) !important;
+
+ padding: 12px;
+ min-width: 200px;
+ text-align: center;
+ width: min-content;
+
+ display: block !important;
+ margin: 0 auto var(--page-margins) auto;
+
+ font-size: 1rem;
+ font-family: "Inter", sans-serif;
+ font-weight: 600;
+
+ border-radius: 8px;
+ border: 0;
+
+ cursor: pointer;
+}
+
+a.button { min-width: calc(200px - 2 * 12px); }
+a.button::after { display: none; }
+