diff options
| author | seth <[email protected]> | 2024-10-09 10:59:13 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-10-09 10:59:13 -0400 |
| commit | d17bca56238e9ca326d60e58230d0d354f23bfe8 (patch) | |
| tree | 12aee4c37a1490914e6307ce1b0023be2df93105 /src/styles/style.scss | |
| parent | 7d6495399d5e1ba429a339de1c3a00f121e89305 (diff) | |
back to astro for hopefully the last time (#146)
Diffstat (limited to 'src/styles/style.scss')
| -rw-r--r-- | src/styles/style.scss | 93 |
1 files changed, 93 insertions, 0 deletions
diff --git a/src/styles/style.scss b/src/styles/style.scss new file mode 100644 index 0000000..4d730e9 --- /dev/null +++ b/src/styles/style.scss @@ -0,0 +1,93 @@ +@import "@catppuccin/palette/scss/_mocha.scss"; + +a { + color: $blue; +} + +body { + font-family: + Noto Sans, + -apple-system, + BlinkMacSystemFont, + avenir next, + avenir, + segoe ui, + helvetica neue, + helvetica, + Cantarell, + Ubuntu, + roboto, + noto, + arial, + sans-serif; + color: $text; + background-color: $base; + max-width: 75%; + margin-left: auto; + margin-right: auto; + padding: 1.5rem; + + @media (min-width: 768px) { + max-width: 50%; + } +} + +nav { + align-items: center; + background-color: $surface0; + display: flex; + flex-wrap: wrap; + justify-content: center; + margin: auto; + padding: 0.5rem; + + a { + margin: 0.5rem; + } + + @media (min-width: 375px) { + a { + margin: 0.75rem; + } + } + + @media (min-width: 768px) { + a { + margin: 1rem; + } + } + + @media (min-width: 1024px) { + a { + font-size: 1.5rem; + } + } +} + +footer { + font-size: 0.6rem; + text-align: right; + + @media (min-width: 768px) { + font-size: 0.75rem; + } + + p { + margin: 0.25rem; + } +} + +.main-content { + padding: 1rem; +} + +.gif-buttons { + align-items: center; + display: flex; + flex-flow: row wrap; + justify-content: center; +} + +.gif-button { + padding: 0.25rem; +} |
