summaryrefslogtreecommitdiff
path: root/sass/components/_button.scss
diff options
context:
space:
mode:
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;
+ }
+}