Compare commits

...

5 Commits
main ... fish

Author SHA1 Message Date
Emma Tebibyte ad1f5c0fc2 moar content 2022-09-25 03:38:26 -04:00
Emma Tebibyte 2531c7f9d0 uncomfy bg fix 2022-09-24 15:18:35 -04:00
Emma Tebibyte 3b0740de0d first step for bg fix 2022-09-24 15:13:41 -04:00
Emma Tebibyte dd9b3b272c fish page idk 2022-09-24 04:42:53 -04:00
Emma Tebibyte 3766442cc8 fish page initial commit 2022-09-24 04:13:26 -04:00
2 changed files with 210 additions and 0 deletions

146
assets/fish.css Normal file
View File

@ -0,0 +1,146 @@
@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")
no-repeat;
background-clip: border-box;
background-attachment: fixed;
background-size: cover;
color: #fafafa;
display: flex;
flex-wrap: wrap;
height: max-content;
margin: 0;
}
@media (orientation: landscape) {
body {
background:
url("https://64.media.tumblr.com/be641808e01bc5215801e8fb8e332cb5/tumblr_phjmayTtvd1qze3hdo1_r2_500.gifv")
no-repeat center/100%;
}
}
code {
font-family: 'Ubuntu Mono Ligaturized';
word-break: break-all;
}
h1, h2, h3, h4, h5, h6 {
padding-bottom: 0.5em;
margin: 0;
}
main {
display: flex;
flex-direction: column;
gap: 1em;
margin: 1em;
width: 35em;
}
p {
margin: 0;
}
.menu {
background: #143F5D;
padding: 0;
margin: 0;
white-space: nowrap;
}
.menu button {
background: transparent;
border: transparent;
border-radius: 0;
color: #fafafa;
margin: 0;
padding: 0.5em;
text-align: center;
}
.menu button:active {
background: #072840;
}
.menu button:hover {
background: #000B25;
border: #000B25;
}
.menu form {
display: inline;
}
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 <https://www.gnu.org/licenses/agpl-3.0.en.html>.
*/

64
fish/index.html Normal file
View File

@ -0,0 +1,64 @@
<!DOCTYPE html>
<html>
<head>
<title>Fish Abuse is Bad</title>
<link rel="stylesheet" href="../assets/fish.css">
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<meta charset="UTF-8">
<meta content="Emma Tebibyte" name="author" />
<meta content="Emma Tebibyte's personal web page." name="description" />
<meta content="width=device-width, initial-scale=1" name="viewport" />
<meta content="interest-cohort=()" http-equiv="Permissions-Policy" /> <!-- FUCK GOOGLE -->
</head>
<body>
<div class="bar">
<div class="menu">
<form action="../" method="post">
<button>Back to my page</button>
</form>
<form action="gallery" method="post">
<button>Gallery</button>
</form>
</div>
</div>
<main>
<section>
<h1>Fish Care</h1>
<p>
This page exists because the world is depressing. Goldfish are
given away to random people at county fairs because they're
"easy" to take care of. The same reasoning is what parents who
buy their children aquariums without researching at all use to
justify their decisions.
</p>
<p>
There's just one small problem.
</p>
</section>
<section>
<h2>
Section 1:
</h2>
<h3>
They're All Fucking Wrong
</h3>
<p>
When I was a kid, my parents bought me a betta. I named him Bob.
Bob lived in a bowl that probably contained about a tenth of a
gallon of water. He was being abused. I can say that because
admitting that you've done something wrong (especially to that
degree) is the important first step to understanding how to
properly care for your fish.
</p>
<p>
</section>
<footer>
<small>This site is licensed under the <a href="agpl-3.0.txt">
AGPLv3</a> or later. Its content is covered under the
<a href="legalcode.txt">CC BY-NC-SA</a> license.</small>
</footer>
</main>
</body>
</html>