diff options
author | lonkaars <loek@pipeframe.xyz> | 2024-04-12 13:24:23 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2024-04-12 13:24:23 +0200 |
commit | ce37824c5260dd370c61cf174ea80ca7deeb1058 (patch) | |
tree | c72f247e72c8279c93a662cdd46a440e825bdfbb /css/button.css | |
parent | c364c4b0273e76cb13571878d1a4a2853a392b9b (diff) |
more WIP transition
Diffstat (limited to 'css/button.css')
-rw-r--r-- | css/button.css | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/css/button.css b/css/button.css new file mode 100644 index 0000000..9efe41f --- /dev/null +++ b/css/button.css @@ -0,0 +1,22 @@ +.button { + 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; } + |