This commit is contained in:
2022-09-05 16:29:51 +02:00
parent f19a5dfbe8
commit d80e6a58ad
4 changed files with 712 additions and 13 deletions

View File

@@ -1,4 +1,4 @@
@import url(Font_F25_Bank_Printer.css);
@import url("Font_F25_Bank_Printer.css");
a {
color: #17c3ea;
@@ -9,7 +9,7 @@ a:active {
}
body {
background-image: url(/Web-ThirdParty-Unknown/Assets/Media/Backgrounds/0.gif);
background-image: url("https://octospacc.gitlab.io/Web-ThirdParty-Unknown/Assets/Media/Backgrounds/0.gif");
background-size: cover;
margin: 0;
height: 100%;
@@ -57,12 +57,17 @@ body {
}
.Footer {
background-color: rgba(48,48,48, 0.7);
background-color: rgba(48,48,48, 0.8);
position: fixed;
bottom: 0px;
width: 100%;
height: 20px;
width: 100vw;
height: 24px;
text-align: center;
overflow-x: hidden;
overflow-x: scroll;
overflow-y: hidden;
white-space: nowrap;
z-index: 1;
}
.Footer > * {
vertical-align: sub;
}

View File

@@ -1,6 +1,6 @@
function RandomGIF() {
GifID = Math.floor((Math.random() * 25)/2);
GifURL = "/Web-ThirdParty-Unknown/Assets/Media/Backgrounds/" + GifID + ".gif";
GifURL = "https://octospacc.gitlab.io/Web-ThirdParty-Unknown/Assets/Media/Backgrounds/" + GifID + ".gif";
document.body.style.backgroundImage = "url(" + GifURL + ")";
}

692
public/Ecoji/index.html Normal file

File diff suppressed because one or more lines are too long

View File

@@ -21,14 +21,16 @@
<div class="Content" style="text-align: center;">
<h1>OctoSpacc Place</h1><br><br>
<p>
<h3>Still kinda empty :/</h3><br><br><br>
<h3>Will this place ever be filled up?</h3>
<h5>At the moment it is just a glorified hub...</h5><br><br><br>
</p>
<p>
<h4><a href="./FumoPrisms">🔺️ Fumo Prisms (!)</a></h4>
<h4><a href="https://octospacc.gitlab.io/FumoPrisms">🔺️ Fumo Prisms (!)</a></h4>
<h4><a href="./Ecoji">🦜 Ecoji v1 (mirror)</a></h4>
<br>
<h4><a href="https://octtspacc.gitlab.io/bachecoctt">🔖️ bachecoctt</a> (My WebPinBoard)</h4>
<br>
<h4><a href="https://sitoctt.octt.eu.org">[🇮🇹] sitoctt</a> (blog/personale)</h4>
<h4><a href="https://sitoctt.octt.eu.org">[🇮🇹] sitoctt</a> (blog/personale)</h4>
<br>
</p>
<div>
@@ -41,9 +43,9 @@
</div>
<script src="Assets/JS/CurrentAgeRenderIndex.js"></script>
<div class="Footer">
<a rel="me" href="https://mastodon.uno/@octo">-> Mastodon</a>
<span> </span>
<a rel="me" href="https://gitlab.com/octospacc">-> GitLab</a>
<a rel="me" href="https://mastodon.uno/@octo">-> Mastodon 🐘</a>
<span>&nbsp;</span>
<a rel="me" href="https://gitlab.com/octospacc">-> GitLab 🦊</a>
</div>
</body>
</html>