summaryrefslogtreecommitdiff
path: root/sass/components/_button.scss
diff options
context:
space:
mode:
authorArne Rief <arne.rief@gmail.com>2023-02-10 21:40:00 +0100
committerArne Rief <arne.rief@gmail.com>2023-02-11 14:53:10 +0100
commit5bab4502a098eb0e3b5a59b68bc9d8d23529ea55 (patch)
treeb8a737694d1217f7af9a6884720678a179cacbb0 /sass/components/_button.scss
Desktop version
Diffstat (limited to 'sass/components/_button.scss')
-rw-r--r--sass/components/_button.scss21
1 files changed, 21 insertions, 0 deletions
diff --git a/sass/components/_button.scss b/sass/components/_button.scss
new file mode 100644
index 0000000..2d5b50c
--- /dev/null
+++ b/sass/components/_button.scss
@@ -0,0 +1,21 @@
+@use "../abstracts/" as *;
+
+button {
+ color: $text-dark;
+ background-color: $text-special-light;
+ border: none;
+ border-radius: 10px;
+ font-style: inherit;
+ font-weight: bold;
+ padding: 0.7rem;
+ text-transform: uppercase;
+ width: 35%;
+
+ &:hover {
+ background-color: $text-special-dark;
+ }
+
+ &:active {
+ outline: 3px solid $text-dark;
+ }
+}