scss styling and remove astro elements

This commit is contained in:
2025-02-22 15:37:39 -05:00
parent b8a34add56
commit 8dee9cdeff
7 changed files with 35 additions and 40 deletions

View File

@ -0,0 +1,27 @@
@use "../variables.scss";
@mixin styling {
display: flex;
justify-content: space-between;
align-items: center;
width: 100vw;
height: variables.$footer-Y;
background-color: var(--body-background-color)
p { padding: 0 20px 0 20px; }
section {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
button {
height: 100%;
padding: 0 20px 0 20px;
&:hover { background-color: var(--hf-button-hover-color) }
}
}
#toggle-term-mode { background-color: rgb(0,50,90) }
}