From 33683ebded97e41b9643f38306a4d0cd6d0c957e Mon Sep 17 00:00:00 2001 From: Ulysia Date: Mon, 14 Oct 2024 09:33:17 +0200 Subject: [PATCH] added customfooter scss --- quartz/components/CustomFooter.tsx | 2 +- quartz/components/styles/customfooter.scss | 50 ++++++++++++++++++++++ 2 files changed, 51 insertions(+), 1 deletion(-) create mode 100644 quartz/components/styles/customfooter.scss diff --git a/quartz/components/CustomFooter.tsx b/quartz/components/CustomFooter.tsx index 3f20c46..205502f 100644 --- a/quartz/components/CustomFooter.tsx +++ b/quartz/components/CustomFooter.tsx @@ -1,5 +1,5 @@ import { QuartzComponent, QuartzComponentConstructor, QuartzComponentProps } from "./types" -import style from "./styles/footer.scss" +import style from "./styles/customfooter.scss" import btnstyle from "./styles/buttons8831.scss" import FooterLinksConstructor from "./Footer_links" import Btn8831 from "./Btn8831" diff --git a/quartz/components/styles/customfooter.scss b/quartz/components/styles/customfooter.scss new file mode 100644 index 0000000..53d5e39 --- /dev/null +++ b/quartz/components/styles/customfooter.scss @@ -0,0 +1,50 @@ +footer { + text-align: left; + margin-bottom: 4rem; +// opacity: 0.7; + * { + opacity: 0.7; + } + + & ul { + list-style: none; + margin: 0; + padding: 0; + display: flex; + flex-direction: row; + gap: 1rem; + margin-top: -1rem; + } +} + +.rings { + display:flex; + flex-direction: column; +} +.ring { + display:flex; + flex-flow: row wrap; + justify-content: center; + align-items: center; +} + +.ringbtn { + font-size: 0.9rem !important; + border-radius: 16px !important; + border:none !important; + background-color: rgba(100,100,100, 0.3) !important; + padding: 0.4rem 0.8rem !important; + margin: 0.2rem 0.4rem !important; + text-decoration: none !important; + width: fit-content !important; + height: fit-content !important; + cursor:pointer !important; +} + +.ringbtn:hover{ + background-color: rgba(100,100,100, 0.5) !important; +} + +.ring svg { + display:none !important; +} \ No newline at end of file