diff options
author | axtloss <axtlos@disroot.org> | 2024-12-24 19:25:48 +0100 |
---|---|---|
committer | axtloss <axtlos@disroot.org> | 2024-12-24 20:04:59 +0100 |
commit | e46cb88d3763a64e97557b2db2f9b74ae7627555 (patch) | |
tree | 9c00ad1e59f4fdc36e050d9329eb7cfdeb0588d2 /src/lib/styles/contact.scss | |
parent | c19fb8828e1dfdd4ce548269ff7cf08de96adf95 (diff) | |
download | website-e46cb88d3763a64e97557b2db2f9b74ae7627555.tar.gz website-e46cb88d3763a64e97557b2db2f9b74ae7627555.tar.bz2 |
new website dropped
Diffstat (limited to 'src/lib/styles/contact.scss')
-rw-r--r-- | src/lib/styles/contact.scss | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/src/lib/styles/contact.scss b/src/lib/styles/contact.scss deleted file mode 100644 index 910cac6..0000000 --- a/src/lib/styles/contact.scss +++ /dev/null @@ -1,38 +0,0 @@ -@use "sass:color"; -@use "sass:meta"; - -@mixin contact($color, $text-color: $color) { - cursor: pointer; - color: $text-color; - background-color: color.adjust($color, $alpha: -0.1); - padding: 7px 25px; - min-width: 70px; - max-width: 70vw; - overflow-wrap: break-word; - border-radius: 10px; - align-items: center; - justify-content: center; - box-shadow: 0 1px 4px 1px color.change(black, $alpha: 0.10), - 0 1px 10px 5px color.change(black, $alpha: 0.09), - 0 3px 16px 8px color.change(black, $alpha: 0.04), - 0 0 0 1px color.change(black, $alpha: 0.05); - transition: box-shadow 0.3s ease-in-out; - - &:hover { - box-shadow: 0 1px 4px 1px color.change($color, $alpha: 0.10), - 0 1px 10px 5px color.change($color, $alpha: 0.09), - 0 3px 16px 8px color.change($color, $alpha: 0.04), - 0 0 0 1px color.change($color, $alpha: 0.05); - } - & h3 { - text-align: center; - } - - & p { - user-select: none; - } - - & noscript { - text-overflow: ellipsis; - } -} |