summaryrefslogtreecommitdiff
path: root/sass/style.scss
diff options
context:
space:
mode:
authorseth <[email protected]>2024-10-09 10:59:13 -0400
committerGitHub <[email protected]>2024-10-09 10:59:13 -0400
commitd17bca56238e9ca326d60e58230d0d354f23bfe8 (patch)
tree12aee4c37a1490914e6307ce1b0023be2df93105 /sass/style.scss
parent7d6495399d5e1ba429a339de1c3a00f121e89305 (diff)
back to astro for hopefully the last time (#146)
Diffstat (limited to 'sass/style.scss')
-rw-r--r--sass/style.scss76
1 files changed, 0 insertions, 76 deletions
diff --git a/sass/style.scss b/sass/style.scss
deleted file mode 100644
index 49afce2..0000000
--- a/sass/style.scss
+++ /dev/null
@@ -1,76 +0,0 @@
-$base: #1e1e2e;
-$blue: #89b4fa;
-$surface: #313244;
-$text: #cdd6f4;
-
-a {
- color: $blue;
-}
-
-body {
- font-family: Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, monospace;
- 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: $surface;
- display: flex;
- 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 {
- font-size: 1.5rem;
- margin: 1rem;
- }
- }
-}
-
-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;
-}