initial commit
This commit is contained in:
commit
0ba63b5535
16 changed files with 177 additions and 0 deletions
1
birb.world
Submodule
1
birb.world
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 7da0f73e72ab54ac15f6d7f6630cd78ea89e489e
|
16
bird.tacowolf.net/config.toml
Normal file
16
bird.tacowolf.net/config.toml
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
# The URL the site will be built for
|
||||||
|
base_url = "https://bird.tacowolf.net"
|
||||||
|
|
||||||
|
# Whether to automatically compile all Sass files in the sass directory
|
||||||
|
compile_sass = true
|
||||||
|
|
||||||
|
# Whether to build a search index to be used later on by a JavaScript library
|
||||||
|
build_search_index = true
|
||||||
|
|
||||||
|
[markdown]
|
||||||
|
# Whether to do syntax highlighting
|
||||||
|
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
|
||||||
|
highlight_code = true
|
||||||
|
|
||||||
|
[extra]
|
||||||
|
# Put all your custom variables here
|
11
birdcat.party/.gitlab-ci.yml
Normal file
11
birdcat.party/.gitlab-ci.yml
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
image: busybox
|
||||||
|
|
||||||
|
pages:
|
||||||
|
stage: deploy
|
||||||
|
script:
|
||||||
|
- echo "The site will be deployed to $CI_PAGES_URL"
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- public
|
||||||
|
rules:
|
||||||
|
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
BIN
birdcat.party/aeolus.leeohfox.smile.png
Normal file
BIN
birdcat.party/aeolus.leeohfox.smile.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 28 KiB |
BIN
birdcat.party/background.jpg
Normal file
BIN
birdcat.party/background.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 371 KiB |
BIN
birdcat.party/dancefloor.mp3
Normal file
BIN
birdcat.party/dancefloor.mp3
Normal file
Binary file not shown.
BIN
birdcat.party/dancefloor.ogg
Normal file
BIN
birdcat.party/dancefloor.ogg
Normal file
Binary file not shown.
103
birdcat.party/index.html
Normal file
103
birdcat.party/index.html
Normal file
|
@ -0,0 +1,103 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<title>🐦🐱 dot 🎉</title>
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
background-image: url("background.jpg");
|
||||||
|
background-size: cover;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
img {
|
||||||
|
z-index: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.party {
|
||||||
|
position: fixed;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
z-index: 2;
|
||||||
|
animation: rainbow-bg 10s linear;
|
||||||
|
animation-iteration-count: infinite;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dancefloor {
|
||||||
|
min-height: 100vh;
|
||||||
|
min-width: 100vw;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes rainbow-bg {
|
||||||
|
100%,
|
||||||
|
0% {
|
||||||
|
background-color: rgba(255, 0, 0, 0.3);
|
||||||
|
}
|
||||||
|
8% {
|
||||||
|
background-color: rgb(255, 127, 0, 0.3);
|
||||||
|
}
|
||||||
|
16% {
|
||||||
|
background-color: rgb(255, 255, 0, 0.3);
|
||||||
|
}
|
||||||
|
25% {
|
||||||
|
background-color: rgb(127, 255, 0, 0.3);
|
||||||
|
}
|
||||||
|
33% {
|
||||||
|
background-color: rgb(0, 255, 0, 0.3);
|
||||||
|
}
|
||||||
|
41% {
|
||||||
|
background-color: rgb(0, 255, 127, 0.3);
|
||||||
|
}
|
||||||
|
50% {
|
||||||
|
background-color: rgb(0, 255, 255, 0.3);
|
||||||
|
}
|
||||||
|
58% {
|
||||||
|
background-color: rgb(0, 127, 255, 0.3);
|
||||||
|
}
|
||||||
|
66% {
|
||||||
|
background-color: rgb(0, 0, 255, 0.3);
|
||||||
|
}
|
||||||
|
75% {
|
||||||
|
background-color: rgb(127, 0, 255, 0.3);
|
||||||
|
}
|
||||||
|
83% {
|
||||||
|
background-color: rgb(255, 0, 255, 0.3);
|
||||||
|
}
|
||||||
|
91% {
|
||||||
|
background-color: rgb(255, 0, 127, 0.3);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<script async src="https://umami.birdcat.cafe/script.js" data-website-id="c7721321-dfe8-4b77-9bfe-0f55efc295f4"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="party"></div>
|
||||||
|
<div class="dancefloor">
|
||||||
|
<div class="stage">
|
||||||
|
<a href="https://fursona.directory/@taco">
|
||||||
|
<img src="aeolus.leeohfox.smile.png" alt="aeolus smiling by" />
|
||||||
|
<br />
|
||||||
|
</a>
|
||||||
|
<audio autoplay controls id="deejay">
|
||||||
|
<source src="dancefloor.mp3" type="audio/mp3" />
|
||||||
|
<source src="dancefloor.ogg" type="audio/ogg" />
|
||||||
|
</audio>
|
||||||
|
<p>(artwork by <a href="https://www.furaffinity.net/user/leeohfox/">@leeohfox</a>)</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script>
|
||||||
|
document.getElementById("deejay").loop = true;
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
BIN
blobcat.business/blobcatbusiness.png
Normal file
BIN
blobcat.business/blobcatbusiness.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 13 KiB |
BIN
blobcat.business/blobcatdeficit.png
Normal file
BIN
blobcat.business/blobcatdeficit.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.9 KiB |
BIN
blobcat.business/deficit/blobcatdeficit.png
Normal file
BIN
blobcat.business/deficit/blobcatdeficit.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.9 KiB |
22
blobcat.business/deficit/index.html
Normal file
22
blobcat.business/deficit/index.html
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>:blobcatdeficit:</title>
|
||||||
|
<link rel="icon" type="image/x-icon" href="blobcatdeficit.png">
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
display: flex;
|
||||||
|
width: 100vw;
|
||||||
|
height: 100vh;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
background-color: #171717;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<img src="blobcatdeficit.png" alt="A scared yellow cat with glasses and a tie pointing towards a chart with a red line going down." />
|
||||||
|
</body>
|
||||||
|
</html>
|
BIN
blobcat.business/favicon.png
Normal file
BIN
blobcat.business/favicon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 13 KiB |
22
blobcat.business/index.html
Normal file
22
blobcat.business/index.html
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>:blobcatbusiness:</title>
|
||||||
|
<link rel="icon" type="image/x-icon" href="blobcatbusiness.png">
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
display: flex;
|
||||||
|
width: 100vw;
|
||||||
|
height: 100vh;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
background-color: #171717;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<img src="blobcatbusiness.png" alt="A smiling yellow cat wearing glasses and a tie pointing towards a chart with a green line going up." title=":blobcatbusiness:"/>
|
||||||
|
</body>
|
||||||
|
</html>
|
1
daniel.ga
Submodule
1
daniel.ga
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 273c4d02eef9be06f9245bbd0b55e754b7c1e84c
|
1
fursona.party
Submodule
1
fursona.party
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 16332dafa5710c678c8aaabea15f1c99510152fd
|
Loading…
Reference in a new issue