From 3766442cc8074cbe1999a2f24db6193f3af4d696 Mon Sep 17 00:00:00 2001 From: emma Date: Sat, 24 Sep 2022 04:13:26 -0400 Subject: [PATCH] fish page initial commit --- assets/fish.css | 117 ++++++++++++++++++++++++++++++++++++++++++++++++ fish/index.html | 30 +++++++++++++ 2 files changed, 147 insertions(+) create mode 100644 assets/fish.css create mode 100644 fish/index.html diff --git a/assets/fish.css b/assets/fish.css new file mode 100644 index 0000000..eccf55a --- /dev/null +++ b/assets/fish.css @@ -0,0 +1,117 @@ +@font-face { + font-family: 'Ubuntu'; + src: url('https://tebibyte.media/assets/fonts/ubuntu.ttf'); + url('https://tebibyte.media/assets/fonts/ubuntu.woff2'); + url('https://tebibyte.media/assets/fonts/ubuntu.woff'); +} + +@font-face { + font-family: 'Ubuntu Mono Ligaturized'; + src: url('https://tebibyte.media/assets/fonts/UbuntuMonoLigaturized-Regular.ttf'); +} + +::selection { + color: #000B25; + background: #fafafa; +} + +::-moz-selection { + color: #000B25; + background: #fafafa; +} + +* { + box-sizing: border-box; + font-family: "Ubuntu"; + scrollbar-color: #008085 transparent; +} + +a { + color: #fafafa; + text-decoration: underline; +} + +body { + background: + url("https://64.media.tumblr.com/be641808e01bc5215801e8fb8e332cb5/tumblr_phjmayTtvd1qze3hdo1_r2_500.gifv") + center/100% no-repeat; + color: #fafafa; + gap: 1em; + height: max-content; + margin: 0; + display: flex; +} + +code { + font-family: 'Ubuntu Mono Ligaturized'; + word-break: break-all; +} + +main { + display: flex; + flex-direction: column; + gap: 1em; + margin: 1em 0; + width: 35em; +} + +.menu { + background: #143F5D; + padding: 0; + margin: 0; +} + +.menu button { + background: transparent; + border: transparent; + border-radius: 0; + color: #fafafa; + margin: 0; + padding: 0; + text-align: center; + +} + +.menu button:hover { + background: #000B25; + border: #000B25; +} + +section { + flex-basis: 100%; + flex-grow: 1; +} + +footer, section { + padding: 1em; + width: 100%; +} + +footer, section, .bar { + box-shadow: 7px 7px #000B25; + background: #008085; +} + +.bar { + display: flex; + flex-direction: column; + height: fit-content; + justify-content: flex-end; + margin: 1em 0 0 1em; + width: fit-content; +} + +/* + * This css is free software: you can redistribute and/or modify it under the + * terms of the GNU Affero General Public License as published by the Free + * Software Foundation, either version 3 of the License, or (at your option) any + * later version. + * + * This css is distributed in the hope that it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR + * A PARTICULAR PURPOSE. See the GNU Affero General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License along with + * This css. If not, see . + */ \ No newline at end of file diff --git a/fish/index.html b/fish/index.html new file mode 100644 index 0000000..2fdf28f --- /dev/null +++ b/fish/index.html @@ -0,0 +1,30 @@ + + + + Emma Tebibyte @ Tebibyte Media + + + + + + + + + +
+ +
+
+
+

Hello world

+
+ +
+ + \ No newline at end of file