summaryrefslogtreecommitdiff
path: root/sass/style.scss
diff options
context:
space:
mode:
authorseth <[email protected]>2024-10-08 11:49:47 -0400
committerGitHub <[email protected]>2024-10-08 11:49:47 -0400
commit20d62336a446bea6c5846805e8325b67cd59fe54 (patch)
tree46a92b1de1021eb0631b54f664ba0c2ddf6752c6 /sass/style.scss
parent07cb04200916169671b9c426fbfe9a24bb0fa79e (diff)
nice redesign (#145)
* nix: drop treefmt * nix: remove .envrc * nix: move `serve` to apps output * nice redesign * use local stylesheet * nix: fix build
Diffstat (limited to 'sass/style.scss')
-rw-r--r--sass/style.scss76
1 files changed, 76 insertions, 0 deletions
diff --git a/sass/style.scss b/sass/style.scss
new file mode 100644
index 0000000..49afce2
--- /dev/null
+++ b/sass/style.scss
@@ -0,0 +1,76 @@
+$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;
+}