fish page initial commit

This commit is contained in:
Emma Tebibyte 2022-09-24 04:13:26 -04:00
parent 218c687d62
commit 3766442cc8
2 changed files with 147 additions and 0 deletions

117
assets/fish.css Normal file
View File

@ -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 <https://www.gnu.org/licenses/agpl-3.0.en.html>.
*/

30
fish/index.html Normal file
View File

@ -0,0 +1,30 @@
<!DOCTYPE html>
<html>
<head>
<title>Emma Tebibyte @ Tebibyte Media</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">
<button>Back to my page</button><button>Gallery</button>
</div>
</div>
<main>
<section>
<p>Hello world</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>