From 759b077631f9562dfa71ce249fea4dfcae6108ca Mon Sep 17 00:00:00 2001 From: Fuwn Date: Tue, 12 Sep 2023 19:46:10 -0700 Subject: refactor(css): move directory --- colors.css | 28 ----------------- css/colors.css | 28 +++++++++++++++++ css/index.css | 76 ++++++++++++++++++++++++++++++++++++++++++++++ css/unifont-12.0.01.woff2 | Bin 0 -> 1605860 bytes index.css | 76 ---------------------------------------------- index.html | 4 +-- unifont-12.0.01.woff2 | Bin 1605860 -> 0 bytes 7 files changed, 106 insertions(+), 106 deletions(-) delete mode 100644 colors.css create mode 100644 css/colors.css create mode 100644 css/index.css create mode 100644 css/unifont-12.0.01.woff2 delete mode 100644 index.css delete mode 100644 unifont-12.0.01.woff2 diff --git a/colors.css b/colors.css deleted file mode 100644 index f6ebb4d..0000000 --- a/colors.css +++ /dev/null @@ -1,28 +0,0 @@ -/* CSS variables - Generated by 'wal' */ -:root { - --wallpaper: url("/home/fuwn/Downloads/ol0svyx4zgqa1.jpg"); - - /* Special */ - --background: #1b1219; - --foreground: #cfc6db; - --cursor: #cfc6db; - - /* Colors */ - --color0: #1b1219; - --color1: #6D5697; - --color2: #986B97; - --color3: #BF7C91; - --color4: #8D6EAD; - --color5: #BE9484; - --color6: #A386B6; - --color7: #cfc6db; - --color8: #908a99; - --color9: #6D5697; - --color10: #986B97; - --color11: #BF7C91; - --color12: #8D6EAD; - --color13: #BE9484; - --color14: #A386B6; - --color15: #cfc6db; -} diff --git a/css/colors.css b/css/colors.css new file mode 100644 index 0000000..f6ebb4d --- /dev/null +++ b/css/colors.css @@ -0,0 +1,28 @@ +/* CSS variables + Generated by 'wal' */ +:root { + --wallpaper: url("/home/fuwn/Downloads/ol0svyx4zgqa1.jpg"); + + /* Special */ + --background: #1b1219; + --foreground: #cfc6db; + --cursor: #cfc6db; + + /* Colors */ + --color0: #1b1219; + --color1: #6D5697; + --color2: #986B97; + --color3: #BF7C91; + --color4: #8D6EAD; + --color5: #BE9484; + --color6: #A386B6; + --color7: #cfc6db; + --color8: #908a99; + --color9: #6D5697; + --color10: #986B97; + --color11: #BF7C91; + --color12: #8D6EAD; + --color13: #BE9484; + --color14: #A386B6; + --color15: #cfc6db; +} diff --git a/css/index.css b/css/index.css new file mode 100644 index 0000000..081900c --- /dev/null +++ b/css/index.css @@ -0,0 +1,76 @@ +@font-face { + font-family: "unifont"; + src: url("unifont-12.0.01.woff2"); +} + +body { + font-family: "unifont"; + background-color: var(--background); + color: var(--foreground); + padding: 0; + margin: 0; + font-size: 1vw; +} + +.wrapper { + display: flex; + justify-content: center; + align-items: center; + height: 100vh; +} + +.content { + flex: 0 1 auto; + border: 1px solid var(--color1); + padding: 71.5px; +} + +@media screen and (max-width: 957px) { + .content { + padding: 50px; + } + + .waifu { + height: 316px !important; + } +} + +@media screen and (max-width: 749px) { + .content { + padding: 50px; + } + + .waifu { + display: none; + } +} + +.waifu { + flex: 0 2 0; + height: 416px; + border: 1px solid var(--color1); +} + +.media-links, +.schedule-links, +.school-links, +.code-links, +.weeb-links { + border-bottom: 1px solid var(--color1); + padding-bottom: 10px; + margin-bottom: 5px; +} + +img { + height: 100%; +} + +.weather { + border-bottom: 1px solid var(--color1); + padding-bottom: 5px; + margin-bottom: 10px; +} + +a { + color: var(--color2); +} diff --git a/css/unifont-12.0.01.woff2 b/css/unifont-12.0.01.woff2 new file mode 100644 index 0000000..d6e201a Binary files /dev/null and b/css/unifont-12.0.01.woff2 differ diff --git a/index.css b/index.css deleted file mode 100644 index 081900c..0000000 --- a/index.css +++ /dev/null @@ -1,76 +0,0 @@ -@font-face { - font-family: "unifont"; - src: url("unifont-12.0.01.woff2"); -} - -body { - font-family: "unifont"; - background-color: var(--background); - color: var(--foreground); - padding: 0; - margin: 0; - font-size: 1vw; -} - -.wrapper { - display: flex; - justify-content: center; - align-items: center; - height: 100vh; -} - -.content { - flex: 0 1 auto; - border: 1px solid var(--color1); - padding: 71.5px; -} - -@media screen and (max-width: 957px) { - .content { - padding: 50px; - } - - .waifu { - height: 316px !important; - } -} - -@media screen and (max-width: 749px) { - .content { - padding: 50px; - } - - .waifu { - display: none; - } -} - -.waifu { - flex: 0 2 0; - height: 416px; - border: 1px solid var(--color1); -} - -.media-links, -.schedule-links, -.school-links, -.code-links, -.weeb-links { - border-bottom: 1px solid var(--color1); - padding-bottom: 10px; - margin-bottom: 5px; -} - -img { - height: 100%; -} - -.weather { - border-bottom: 1px solid var(--color1); - padding-bottom: 5px; - margin-bottom: 10px; -} - -a { - color: var(--color2); -} diff --git a/index.html b/index.html index 405c823..4f2ff81 100644 --- a/index.html +++ b/index.html @@ -7,8 +7,8 @@ ~/ - - + + diff --git a/unifont-12.0.01.woff2 b/unifont-12.0.01.woff2 deleted file mode 100644 index d6e201a..0000000 Binary files a/unifont-12.0.01.woff2 and /dev/null differ -- cgit v1.2.3