New updates ig
179
assets/errors/403.html
Normal file
|
@ -0,0 +1,179 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>G2's Website | 403 - Forbidden</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta charset="UTF-8">
|
||||
<style>
|
||||
@import url('/assets/fonts/fonts.css');
|
||||
* {
|
||||
margin: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
::selection {
|
||||
color: #1e1e2e;
|
||||
background-color: #a6e3a1;
|
||||
}
|
||||
body {
|
||||
height: 100vh;
|
||||
width: 100vw;
|
||||
|
||||
display: flex;
|
||||
background-color: #111114;
|
||||
color: white;
|
||||
font-family: 'Roboto', 'Noto Sans', sans-serif;
|
||||
font-size: 16pt;
|
||||
overflow: hidden;
|
||||
}
|
||||
main {
|
||||
max-width: 100vw;
|
||||
max-height: 100vh;
|
||||
margin: auto;
|
||||
}
|
||||
h1 {
|
||||
font-size: 10em;
|
||||
text-align: center;
|
||||
}
|
||||
h3 {
|
||||
font-weight: 500;
|
||||
margin: 0 10px;
|
||||
text-align: center;
|
||||
}
|
||||
p {
|
||||
margin: auto;
|
||||
padding: 0 5px;
|
||||
text-align: center;
|
||||
max-width: 540px;
|
||||
opacity: 0;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
a {
|
||||
text-decoration: none;
|
||||
}
|
||||
a:link {
|
||||
color: DeepSkyBlue;
|
||||
}
|
||||
a:visited {
|
||||
color: #7289DA;
|
||||
}
|
||||
a:hover {
|
||||
color: DarkTurquoise;
|
||||
}
|
||||
hr {
|
||||
margin: 20px 10px;
|
||||
color: #f9e2af;
|
||||
}
|
||||
button {
|
||||
width: 75%;
|
||||
margin: 20px auto;
|
||||
position: relative;
|
||||
display: block;
|
||||
font-size: 18pt;
|
||||
font-weight: bold;
|
||||
padding: 10px 0;
|
||||
border-radius: 2em;
|
||||
border: 2px solid #74c7ec;
|
||||
|
||||
background-color: #74c7ec;
|
||||
color: #2C2F33;
|
||||
transition-duration: 500ms;
|
||||
cursor: pointer;
|
||||
}
|
||||
button:hover {
|
||||
background-color: transparent;
|
||||
color: #74c7ec;
|
||||
}
|
||||
button:hover::before, button:hover::after {
|
||||
content: '↜';
|
||||
position: absolute;
|
||||
left: 25%;
|
||||
animation-duration: 1s;
|
||||
animation-name: slideright;
|
||||
animation-fill-mode: forwards;
|
||||
}
|
||||
button:hover::after {
|
||||
left: unset;
|
||||
right: 25%;
|
||||
}
|
||||
button:active {
|
||||
background-color: #74c7ec55;
|
||||
color: #7dd8ff;
|
||||
}
|
||||
.text-box {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 4em;
|
||||
}
|
||||
|
||||
.slide-up {
|
||||
animation-duration: 1s;
|
||||
animation-name: slideup;
|
||||
animation-fill-mode: forwards;
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.fade-in {
|
||||
animation-duration: 1s;
|
||||
animation-name: fadein;
|
||||
animation-fill-mode: forwards;
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.cat {
|
||||
position: absolute;
|
||||
top: 31px;
|
||||
left: calc(50% - 1px);
|
||||
transform: translatex(-50%);
|
||||
}
|
||||
|
||||
#cookies {
|
||||
font-weight: bold;
|
||||
}
|
||||
@keyframes slideright {
|
||||
from {
|
||||
transform: translatex(100%);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
to {
|
||||
transform: translatey(0%);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
@keyframes slideup {
|
||||
from {
|
||||
transform: translatey(100%);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
to {
|
||||
transform: translatey(0%);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
@keyframes fadein {
|
||||
from {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<main class="fade-in">
|
||||
<div style="position:relative;display:flex;justify-content: center;">
|
||||
<h1>403</h1>
|
||||
</div>
|
||||
<hr>
|
||||
<h3 id="notFound">Forbidden. You do not have access to this page.</h3>
|
||||
<a href="/"><button>Home</button></a>
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
Before Width: | Height: | Size: 116 KiB After Width: | Height: | Size: 5.2 KiB |
BIN
assets/images/showcase_old2.webp
Normal file
After Width: | Height: | Size: 116 KiB |
|
@ -38,6 +38,25 @@ img.icon {
|
|||
height: 1em;
|
||||
}
|
||||
|
||||
.svg-diagram {
|
||||
color: black;
|
||||
}
|
||||
|
||||
figure {
|
||||
max-width: 100%;
|
||||
margin-bottom: 20px;
|
||||
display: block;
|
||||
overflow: scroll;
|
||||
}
|
||||
|
||||
figcaption {
|
||||
font-size: 15pt;
|
||||
font-style: italic;
|
||||
margin: auto;
|
||||
width: fit-content;
|
||||
display: block;
|
||||
}
|
||||
|
||||
@media(max-width: 700px) {
|
||||
section.img_grid {
|
||||
flex-direction: column;
|
||||
|
@ -48,3 +67,11 @@ img.icon {
|
|||
height: auto;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
.svg-diagram {
|
||||
color: #fffde6;
|
||||
filter: invert(1);
|
||||
}
|
||||
}
|
||||
|
|
74
assets/lib/scripts/music_bars.svg
Normal file
|
@ -0,0 +1,74 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="48"
|
||||
height="48"
|
||||
viewBox="0 0 48 48"
|
||||
version="1.1"
|
||||
id="svg1"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
|
||||
<style>
|
||||
#rect1 {
|
||||
transform-origin: 0% 95%;
|
||||
animation: 1s alternate infinite ease-in-out scale1;
|
||||
}
|
||||
|
||||
#rect2 {
|
||||
transform-origin: 0% 95%;
|
||||
animation: 1.05s alternate infinite ease-in-out scale2;
|
||||
animation-delay: -0.8s;
|
||||
}
|
||||
|
||||
#rect3 {
|
||||
transform-origin: 0% 95%;
|
||||
animation: 0.95s alternate infinite ease-in-out scale3;
|
||||
animation-delay: -0.1415926s;
|
||||
}
|
||||
|
||||
@keyframes scale1 {
|
||||
0% { scale: 1 0.3; }
|
||||
100% { scale: 1 1.2; }
|
||||
}
|
||||
|
||||
@keyframes scale2 {
|
||||
0% { scale: 1 1.6; }
|
||||
100% { scale: 1 0.8; }
|
||||
}
|
||||
|
||||
@keyframes scale3 {
|
||||
0% { scale: 1 1.1; }
|
||||
100% { scale: 1 0.6; }
|
||||
}
|
||||
</style>
|
||||
|
||||
<defs id="defs1" />
|
||||
<g id="layer1">
|
||||
<rect
|
||||
fill="currentColor"
|
||||
style="fill-opacity:1;stroke:none;stroke-width:2.18643;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
id="rect3"
|
||||
width="12.788949"
|
||||
height="33"
|
||||
x="32.844723"
|
||||
y="22.15" />
|
||||
<rect
|
||||
fill="currentColor"
|
||||
style="fill-opacity:1;stroke:none;stroke-width:2.51516;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
id="rect2"
|
||||
width="12.788949"
|
||||
height="33"
|
||||
x="17.605526"
|
||||
y="22.15" />
|
||||
<rect
|
||||
fill="currentColor"
|
||||
style="fill-opacity:1;stroke:none;stroke-width:1.85236;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
id="rect1"
|
||||
width="12.788949"
|
||||
height="33"
|
||||
x="2.3663273"
|
||||
y="22.15" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.8 KiB |
|
@ -5,31 +5,26 @@
|
|||
flex-direction: column;
|
||||
max-width: 300px;
|
||||
margin: auto;
|
||||
perspective: 800px;
|
||||
|
||||
.track_name {
|
||||
font-size: 1.2em;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.artist_name {
|
||||
font-size: 1em;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.album_name {
|
||||
font-size: 0.9em;
|
||||
color: #c1bfae;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
color: #9c9c9c;
|
||||
}
|
||||
|
||||
p {
|
||||
margin: 0;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
p#musicStatus {
|
||||
|
@ -44,11 +39,44 @@
|
|||
background-color: grey;
|
||||
}
|
||||
|
||||
img {
|
||||
img#mainArtwork {
|
||||
max-width: 100%;
|
||||
max-height: 100%;
|
||||
object-fit: contain;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
div.artwork_container {
|
||||
display: flex;
|
||||
margin: 20px;
|
||||
border-radius: 10px;
|
||||
height: 260px;
|
||||
width: 260px;
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
.floaty {
|
||||
animation:
|
||||
2s alternate infinite ease-in-out scale,
|
||||
3s alternate infinite ease-in-out rotate;
|
||||
}
|
||||
|
||||
div#playingBars {
|
||||
margin: 0;
|
||||
border-radius: 0;
|
||||
mask: url(music_bars.svg) no-repeat center;
|
||||
background-color: #ffffff;
|
||||
height: auto;
|
||||
padding: 0;
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes scale {
|
||||
0% { scale: 1; }
|
||||
100% { scale: 1.03; }
|
||||
}
|
||||
|
||||
@keyframes rotate {
|
||||
0% { transform: rotate3d(-1, 1, -1, 3deg); }
|
||||
100% { transform: rotate3d(1, 1, 1, 3deg); }
|
||||
}
|
||||
|
|
|
@ -1,35 +1,36 @@
|
|||
async function getData(url) {
|
||||
try {
|
||||
const response = await fetch(url);
|
||||
if (!response.ok) {
|
||||
throw new Error(`Response status: ${response.status}`);
|
||||
}
|
||||
|
||||
const json = await response.json();
|
||||
return json
|
||||
} catch (error) {
|
||||
console.error(error.message);
|
||||
}
|
||||
}
|
||||
|
||||
const USERNAME = "G2";
|
||||
const LUCENE_ESCAPE = /([\!\*\+\-\=\<\>\&\|\(\)\[\]\{\}\^\~\?\:\\/"])/g;
|
||||
|
||||
let artworkTile = document.getElementById("mainArtwork");
|
||||
let albumTitle = document.getElementById("albumTitle");
|
||||
let albumArtist = document.getElementById("albumArtist");
|
||||
let track = document.getElementById("track");
|
||||
let status = document.getElementById("musicStatus");
|
||||
let artworkTile = null;
|
||||
let artworkPlaceholder = null;
|
||||
let albumTitle = null;
|
||||
let albumArtist = null;
|
||||
let track = null;
|
||||
let status = null;
|
||||
let animatedBars = null;
|
||||
let prev_mbid = null;
|
||||
|
||||
async function main() {
|
||||
function initMusicTile() {
|
||||
artworkTile = document.getElementById("mainArtwork");
|
||||
artworkPlaceholder = document.getElementById("mainArtworkPlaceholder");
|
||||
albumTitle = document.getElementById("albumTitle");
|
||||
albumArtist = document.getElementById("albumArtist");
|
||||
track = document.getElementById("track");
|
||||
status = document.getElementById("musicStatus");
|
||||
animatedBars = document.getElementById("playingBars");
|
||||
prev_mbid = null;
|
||||
}
|
||||
|
||||
async function startMusicTile() {
|
||||
// Get my currently playing song!
|
||||
let statusTmp = "Currently playing:";
|
||||
let playing = true;
|
||||
let songInfo = await getData("https://api.listenbrainz.org/1/user/" + USERNAME + "/playing-now")
|
||||
if (songInfo["payload"]["count"] == 0) {
|
||||
// If no current song, get last played
|
||||
songInfo = await getData("https://api.listenbrainz.org/1/user/" + USERNAME + "/listens?count=1")
|
||||
statusTmp = "Last played song:";
|
||||
playing = false;
|
||||
}
|
||||
|
||||
if (prev_mbid != null && prev_mbid == JSON.stringify(songInfo)) {
|
||||
|
@ -49,24 +50,20 @@ async function main() {
|
|||
let artistSearchName = encodeURIComponent(artistName.replace(LUCENE_ESCAPE, "\\$1"));
|
||||
let trackSearchName = encodeURIComponent(trackName.replace(LUCENE_ESCAPE, "\\$1"));
|
||||
|
||||
console.log("https://musicbrainz.org/ws/2/recording/?query=" + trackSearchName + " AND artist:%22" + artistSearchName + "%22&fmt=json");
|
||||
let searchedReleases = await getData(
|
||||
"https://musicbrainz.org/ws/2/recording/?query=" + trackSearchName + " AND artist:%22" + artistSearchName + "%22&fmt=json"
|
||||
);
|
||||
|
||||
console.log(searchedReleases);
|
||||
|
||||
if (searchedReleases["count"] >= 1) {
|
||||
if (searchedReleases["recordings"][0]["releases"][0]) {
|
||||
|
||||
}
|
||||
releaseMBID = searchedReleases["recordings"][0]["releases"][0]["id"];
|
||||
console.log("Found MBID by search " + releaseMBID);
|
||||
}
|
||||
}
|
||||
|
||||
let albumName = "Unknown Album";
|
||||
let artworkSrc = "https://placehold.co/260/2220/FFFDE6?text=?&font=roboto";
|
||||
let artworkSrc = "";
|
||||
if (releaseMBID != null) {
|
||||
// Get release information (like album title)
|
||||
let releaseInfo = await getData("https://musicbrainz.org/ws/2/release/" + releaseMBID + "?fmt=json&inc=release-groups");
|
||||
|
@ -75,26 +72,84 @@ async function main() {
|
|||
let releaseGroupMBID = releaseInfo["release-group"]["id"];
|
||||
|
||||
// Grab the image from the release ID
|
||||
let coverArtGroup = await fetch("https://coverartarchive.org/release-group/" + releaseGroupMBID + "/front-500");
|
||||
if (coverArtGroup.status == 200) {
|
||||
let coverArtGroup = await getImage("https://coverartarchive.org/release-group/" + releaseGroupMBID + "/front-500");
|
||||
if (coverArtGroup != null && coverArtGroup.status == 200) {
|
||||
artworkSrc = coverArtGroup.url
|
||||
} else {
|
||||
let coverArtTrack = await fetch("https://coverartarchive.org/release/" + releaseMBID + "/front-500");
|
||||
if (coverArtTrack.status == 200) {
|
||||
let coverArtTrack = await getImage("https://coverartarchive.org/release/" + releaseMBID + "/front-500");
|
||||
if (coverArtGroup != null && coverArtTrack.status == 200) {
|
||||
artworkSrc = coverArtTrack.url;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
console.log("%s %s by %s (%s)", statusTmp, trackName, artistName, albumName);
|
||||
|
||||
// Fill in the data
|
||||
status.textContent = statusTmp;
|
||||
if (playing == true) {
|
||||
animatedBars.style.display = "block";
|
||||
animatedBars.style.position = "";
|
||||
} else {
|
||||
animatedBars.style.display = "none";
|
||||
animatedBars.style.position = "absolute";
|
||||
}
|
||||
|
||||
albumArtist.textContent = artistName;
|
||||
|
||||
track.textContent = trackName;
|
||||
track.title = trackName;
|
||||
|
||||
albumTitle.textContent = albumName;
|
||||
|
||||
artworkTile.src = artworkSrc;
|
||||
if (artworkSrc == "") {
|
||||
artworkPlaceholder.style.display = "block";
|
||||
artworkTile.style.display = "none";
|
||||
} else {
|
||||
artworkPlaceholder.style.display = "none";
|
||||
artworkTile.style.display = "block";
|
||||
|
||||
if (playing == true && artworkSrc != "") {
|
||||
artworkTile.className = "floaty";
|
||||
} else {
|
||||
artworkTile.className = "";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
main().catch(console.log);
|
||||
setInterval(main, 10000);
|
||||
async function getData(url) {
|
||||
try {
|
||||
const response = await fetch(url);
|
||||
if (!response.ok) {
|
||||
throw new Error(`Response status: ${response.status}`);
|
||||
}
|
||||
|
||||
const json = await response.json();
|
||||
return json
|
||||
} catch (error) {
|
||||
console.error(error.message);
|
||||
}
|
||||
}
|
||||
|
||||
async function getImage(url) {
|
||||
try {
|
||||
const response = await fetch(url);
|
||||
return response
|
||||
} catch (error) {
|
||||
console.error(error.message);
|
||||
return null
|
||||
}
|
||||
}
|
||||
|
||||
function hideElement(element) {
|
||||
|
||||
}
|
||||
|
||||
function startMusicTileInterval() {
|
||||
initMusicTile();
|
||||
startMusicTile().catch(console.log);
|
||||
setInterval(startMusicTile, 10000);
|
||||
}
|
||||
|
||||
window.addEventListener('load', async function () {
|
||||
startMusicTileInterval();
|
||||
})
|
||||
|
|
|
@ -272,8 +272,17 @@ main h3 {
|
|||
}
|
||||
|
||||
main h4 {
|
||||
font-family: "Montserrat", sans-serif;
|
||||
font-size: 1.3em;
|
||||
font-weight: bold;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
main h5 {
|
||||
font-family: "Montserrat", sans-serif;
|
||||
font-size: 1.2em;
|
||||
font-weight: normal;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
main p, .type-text p {
|
||||
|
@ -294,18 +303,16 @@ ul, ol {
|
|||
hyphens: auto;
|
||||
hyphenate-character: '-';
|
||||
margin-left: 40px;
|
||||
|
||||
/*
|
||||
li {
|
||||
margin-left: 40px;
|
||||
}
|
||||
*/
|
||||
}
|
||||
|
||||
p + ul, p + ol {
|
||||
margin-top: -20px;
|
||||
}
|
||||
|
||||
li > ul {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
main .tags {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
|
@ -404,6 +411,16 @@ nav.paginator .prev {
|
|||
left: 10px;
|
||||
}
|
||||
|
||||
.MathJax {
|
||||
font-size: 14pt;
|
||||
}
|
||||
|
||||
center .MathJax {
|
||||
margin-bottom: 15px;
|
||||
font-size: 16pt;
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* --- Mobile/Small Screens --- */
|
||||
@media(max-width: 700px) {
|
||||
header {
|
||||
|
|
11
index.html
|
@ -25,6 +25,7 @@ A place for personal projects and things. Enjoy!">
|
|||
|
||||
<!-- Music Tile -->
|
||||
<link rel="stylesheet" href="/assets/lib/scripts/music_status.css">
|
||||
<script src="/assets/lib/scripts/music_status.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
|
@ -156,13 +157,20 @@ A place for personal projects and things. Enjoy!">
|
|||
<section>
|
||||
<div class="music_tile">
|
||||
<p id="musicStatus">Currently listening to:</p>
|
||||
<div style="display:grid;grid-template-columns: 80% 20%;">
|
||||
<p class="track_name" id="track">???</p>
|
||||
<div id="playingBars"></div>
|
||||
</div>
|
||||
<hr>
|
||||
<div style="display:flex;flex-direction:column;">
|
||||
<p class="artist_name" id="albumArtist">???</p>
|
||||
<p class="album_name" id="albumTitle">???</p>
|
||||
</div>
|
||||
<img id="mainArtwork" src="https://placehold.co/260/2220/FFFDE6?text=?&font=roboto"/>
|
||||
<div class="artwork_container">
|
||||
<p id="mainArtworkPlaceholder"
|
||||
style="font-size:4em;margin:auto;width:fit-content;font-family:'Montserrat';font-weight:bold;">?</p>
|
||||
<img id="mainArtwork" src="" style="display:none;"/>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
@ -177,5 +185,4 @@ A place for personal projects and things. Enjoy!">
|
|||
</p>
|
||||
</footer>
|
||||
</body>
|
||||
<script src="/assets/lib/scripts/music_status.js"></script>
|
||||
</html>
|
||||
|
|
142
random/art/3d_melon.svg
Normal file
|
@ -0,0 +1,142 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="512"
|
||||
height="512"
|
||||
viewBox="0 0 512 512"
|
||||
version="1.1"
|
||||
id="svg1"
|
||||
xml:space="preserve"
|
||||
inkscape:export-filename="melon.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96"
|
||||
inkscape:version="1.3 (0e150ed6c4, 2023-07-21)"
|
||||
sodipodi:docname="3d_melon.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
|
||||
id="namedview1"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:document-units="px"
|
||||
inkscape:zoom="2"
|
||||
inkscape:cx="285.5"
|
||||
inkscape:cy="273.5"
|
||||
inkscape:window-width="2560"
|
||||
inkscape:window-height="1354"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer1" /><defs
|
||||
id="defs1" /><g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"><circle
|
||||
style="display:inline;fill:#25640a;fill-opacity:1;stroke-width:1.16853"
|
||||
id="path1"
|
||||
cx="147.70811"
|
||||
cy="330.54169"
|
||||
r="220.37135"
|
||||
transform="rotate(-20.922824)" /><g
|
||||
id="g9"
|
||||
inkscape:label="Stripes"
|
||||
transform="rotate(-20.922824,256,255.97661)"><g
|
||||
id="g8"
|
||||
inkscape:label="StripeR"><path
|
||||
fill="#5c913b"
|
||||
d="m 256.00772,476.13646 c 27.74314,1.34239 56.06727,-3.03504 83.46393,-14.00554 C 447.02188,419.06434 499.33064,291.81766 456.30815,177.92055 422.78514,89.172237 341.24478,34.978742 256.00502,35.634526 Z"
|
||||
id="path1-3-1-6"
|
||||
style="fill:#43972a;fill-opacity:1;stroke-width:12.1152" /><path
|
||||
fill="#5c913b"
|
||||
d="m 256.00763,476.13646 c 26.83406,1.34239 54.23006,-3.03504 80.729,-14.00554 C 440.76267,419.06434 491.35738,291.81766 449.74464,177.92055 417.32012,89.172237 338.45165,34.978741 256.00502,35.634525 Z"
|
||||
id="path1-3-1-8-1"
|
||||
style="fill:#25640a;fill-opacity:1;stroke-width:11.9151" /><path
|
||||
fill="#5c913b"
|
||||
d="m 256.00753,476.13646 c 25.77963,1.34239 52.09912,-3.03504 77.5568,-14.00554 C 433.50273,419.06434 482.10935,291.81766 442.13176,177.92055 410.98134,89.172234 335.21196,34.978738 256.00502,35.634522 Z"
|
||||
id="path1-3-1"
|
||||
style="fill:#43972a;fill-opacity:1;stroke-width:11.6787" /><path
|
||||
fill="#5c913b"
|
||||
d="m 256.00738,476.13646 c 24.23854,1.34239 48.98467,-3.03504 72.92051,-14.00554 C 422.89204,419.06434 468.59299,291.81766 431.00523,177.92055 401.71696,89.172238 330.47702,34.978742 256.00502,35.634526 Z"
|
||||
id="path1-3-1-8"
|
||||
style="fill:#25640a;fill-opacity:1;stroke-width:11.3242" /></g><g
|
||||
id="g8-7"
|
||||
inkscape:label="StripeL"
|
||||
transform="matrix(-1,0,0,1,512.00267,-0.04678669)"><path
|
||||
fill="#5c913b"
|
||||
d="m 256.00772,476.13647 c 27.74314,1.34239 56.06727,-3.03504 83.46393,-14.00554 C 447.02189,419.06435 499.33065,291.81767 456.30816,177.92056 422.78515,89.172244 341.24478,34.978749 256.00502,35.634533 Z"
|
||||
id="path1-3-1-6-6"
|
||||
style="fill:#43972a;fill-opacity:1;stroke-width:12.1152" /><path
|
||||
fill="#5c913b"
|
||||
d="m 256.00763,476.13647 c 26.83406,1.34239 54.23006,-3.03504 80.729,-14.00554 C 440.76268,419.06435 491.35739,291.81767 449.74465,177.92056 417.32013,89.172244 338.45165,34.978748 256.00502,35.634532 Z"
|
||||
id="path1-3-1-8-1-5"
|
||||
style="fill:#25640a;fill-opacity:1;stroke-width:11.9151" /><path
|
||||
fill="#5c913b"
|
||||
d="m 256.00753,476.13647 c 25.77963,1.34239 52.09912,-3.03504 77.5568,-14.00554 C 433.50274,419.06435 482.10936,291.81767 442.13177,177.92056 410.98134,89.172241 335.21196,34.978745 256.00502,35.634529 Z"
|
||||
id="path1-3-1-69"
|
||||
style="fill:#43972a;fill-opacity:1;stroke-width:11.6787" /><path
|
||||
fill="#5c913b"
|
||||
d="m 256.00738,476.13647 c 24.23854,1.34239 48.98467,-3.03504 72.92051,-14.00554 C 422.89205,419.06435 468.593,291.81767 431.00524,177.92056 401.71696,89.172245 330.47702,34.978749 256.00502,35.634533 Z"
|
||||
id="path1-3-1-8-3"
|
||||
style="fill:#25640a;fill-opacity:1;stroke-width:11.3242" /><path
|
||||
fill="#5c913b"
|
||||
d="m 255.99635,476.13647 c 22.88325,1.34239 46.24571,-3.03504 68.84318,-14.00554 C 413.54971,419.06435 456.69531,291.81767 421.20926,177.92056 393.55863,89.172241 326.30205,34.978745 255.99412,35.634529 Z"
|
||||
id="path1-3-1-69-5"
|
||||
style="fill:#43972a;fill-opacity:1;stroke-width:11.003" /><path
|
||||
fill="#5c913b"
|
||||
d="m 255.99616,476.13647 c 20.94754,1.34239 42.33375,-3.03504 63.01969,-14.00554 81.20609,-43.06658 120.70196,-170.31326 88.2177,-284.21037 C 381.92191,89.172245 320.35463,34.978749 255.99412,35.634533 Z"
|
||||
id="path1-3-1-8-3-4"
|
||||
style="fill:#25640a;fill-opacity:1;stroke-width:10.5274" /><path
|
||||
fill="#5c913b"
|
||||
d="m 255.99592,476.13647 c 18.49534,1.34239 37.37801,-3.03504 55.64238,-14.00554 C 383.33814,419.06435 418.21051,291.81767 389.52895,177.92056 367.18039,89.172239 312.82038,34.978743 255.99412,35.634527 Z"
|
||||
id="path1-3-1-69-5-3"
|
||||
style="fill:#43972a;fill-opacity:1;stroke-width:9.89195" /><path
|
||||
fill="#5c913b"
|
||||
d="m 255.99568,476.13647 c 16.02053,1.34239 32.37656,-3.03504 48.19703,-14.00554 62.10587,-43.06658 92.31204,-170.31326 67.46831,-284.21037 C 352.30284,89.172243 305.2166,34.978747 255.99412,35.634531 Z"
|
||||
id="path1-3-1-8-3-4-0"
|
||||
style="fill:#25640a;fill-opacity:1;stroke-width:9.20647" /><path
|
||||
fill="#5c913b"
|
||||
d="m 255.99537,476.13648 c 12.89122,1.34239 26.05241,-3.03504 38.78263,-14.00554 49.97464,-43.06658 74.28062,-170.31326 54.28963,-284.21038 C 333.49072,89.17224 295.60191,34.97874 255.99412,35.63453 Z"
|
||||
id="path1-3-1-69-5-3-8"
|
||||
style="fill:#43972a;fill-opacity:1;stroke-width:8.25844" /></g></g><g
|
||||
id="g2"
|
||||
transform="matrix(-7.351465,-9.4555005,6.790868,-7.3667674,308.17126,533.40546)"
|
||||
inkscape:label="Inside"><path
|
||||
fill="#5c913b"
|
||||
d="M 2.472,6.572 C 1.528,8.698 1,11.038 1,13.5 1,23.165 9.059,31 19,31 26.746,31 33.33,26.233 35.868,19.56 Z"
|
||||
id="path1-3" /><path
|
||||
fill="#ffe8b6"
|
||||
d="M 4.332,7.295 C 3.479,9.197 3,11.293 3,13.5 c 0,8.591 7.164,15.556 16,15.556 6.904,0 12.77,-4.26 15.013,-10.218 z"
|
||||
id="path2-56" /><path
|
||||
fill="#dd2e44"
|
||||
d="M 6.191,8.019 C 5.43,9.697 5,11.548 5,13.5 c 0,7.518 6.268,13.611 14,13.611 6.062,0 11.21,-3.753 13.156,-8.995 z"
|
||||
id="path3" /><path
|
||||
d="m 9.916,14.277 c -0.307,0.46 -0.741,0.708 -0.971,0.555 -0.23,-0.153 -0.168,-0.649 0.139,-1.109 0.307,-0.46 0.741,-0.708 0.971,-0.555 0.23,0.153 0.168,0.649 -0.139,1.109 z m 6,1 c -0.307,0.46 -0.741,0.708 -0.971,0.555 -0.23,-0.153 -0.168,-0.649 0.139,-1.109 0.307,-0.46 0.741,-0.708 0.971,-0.555 0.23,0.153 0.168,0.649 -0.139,1.109 z m 5.082,4.678 c 0.05,0.551 -0.132,1.016 -0.406,1.041 -0.275,0.025 -0.538,-0.4 -0.588,-0.951 -0.051,-0.551 0.132,-1.016 0.406,-1.04 0.275,-0.026 0.538,0.398 0.588,0.95 z m -9,-2 c 0.05,0.551 -0.132,1.016 -0.406,1.041 -0.275,0.025 -0.538,-0.4 -0.588,-0.951 -0.05,-0.551 0.132,-1.016 0.406,-1.04 0.276,-0.026 0.538,0.398 0.588,0.95 z m 3.901,5.346 c -0.333,0.441 -0.78,0.663 -1,0.497 -0.221,-0.166 -0.129,-0.658 0.205,-1.099 0.333,-0.441 0.781,-0.663 1,-0.497 0.221,0.166 0.13,0.657 -0.205,1.099 z m 8.036,0.454 c 0.273,0.481 0.299,0.979 0.06,1.115 -0.241,0.137 -0.656,-0.143 -0.929,-0.624 -0.273,-0.48 -0.299,-0.979 -0.059,-1.115 0.241,-0.138 0.655,0.141 0.928,0.624 z m -7.017,-5.028 c 0.303,0.463 0.362,0.958 0.131,1.109 -0.231,0.152 -0.663,-0.1 -0.966,-0.562 -0.303,-0.462 -0.361,-0.958 -0.131,-1.108 0.231,-0.154 0.663,0.097 0.966,0.561 z m 8.981,1.574 c -0.333,0.441 -0.78,0.663 -1.001,0.497 -0.221,-0.166 -0.129,-0.658 0.205,-1.099 0.333,-0.442 0.78,-0.663 1,-0.497 0.222,0.166 0.131,0.657 -0.204,1.099 z"
|
||||
id="path4" /><path
|
||||
fill="#5c913b"
|
||||
d="M 2.472,6.572 C 1.528,8.698 1,11.038 1,13.5 1,23.165 9.059,31 19,31 26.746,31 33.33,26.233 35.868,19.56 Z"
|
||||
id="path1-3-7"
|
||||
transform="matrix(0.80585364,0.49919857,0.49919855,-0.28356361,-2.8004023,7.2005306)" /><path
|
||||
fill="#ffe8b6"
|
||||
d="M 4.332,7.295 C 3.479,9.197 3,11.293 3,13.5 c 0,8.591 7.164,15.556 16,15.556 6.904,0 12.77,-4.26 15.013,-10.218 z"
|
||||
id="path2-56-0"
|
||||
transform="matrix(0.80585364,0.49919857,0.49919855,-0.28356361,-2.8004023,7.2005306)" /><path
|
||||
fill="#dd2e44"
|
||||
d="M 6.191,8.019 C 5.43,9.697 5,11.548 5,13.5 c 0,7.518 6.268,13.611 14,13.611 6.062,0 11.21,-3.753 13.156,-8.995 z"
|
||||
id="path3-9"
|
||||
transform="matrix(0.80585364,0.49919857,0.49919855,-0.28356361,-2.8004023,7.2005306)" /><path
|
||||
d="m 9.916,14.277 c -0.307,0.46 -0.741,0.708 -0.971,0.555 -0.23,-0.153 -0.168,-0.649 0.139,-1.109 0.307,-0.46 0.741,-0.708 0.971,-0.555 0.23,0.153 0.168,0.649 -0.139,1.109 z m 6,1 c -0.307,0.46 -0.741,0.708 -0.971,0.555 -0.23,-0.153 -0.168,-0.649 0.139,-1.109 0.307,-0.46 0.741,-0.708 0.971,-0.555 0.23,0.153 0.168,0.649 -0.139,1.109 z m 5.082,4.678 c 0.05,0.551 -0.132,1.016 -0.406,1.041 -0.275,0.025 -0.538,-0.4 -0.588,-0.951 -0.051,-0.551 0.132,-1.016 0.406,-1.04 0.275,-0.026 0.538,0.398 0.588,0.95 z m -9,-2 c 0.05,0.551 -0.132,1.016 -0.406,1.041 -0.275,0.025 -0.538,-0.4 -0.588,-0.951 -0.05,-0.551 0.132,-1.016 0.406,-1.04 0.276,-0.026 0.538,0.398 0.588,0.95 z m 3.901,5.346 c -0.333,0.441 -0.78,0.663 -1,0.497 -0.221,-0.166 -0.129,-0.658 0.205,-1.099 0.333,-0.441 0.781,-0.663 1,-0.497 0.221,0.166 0.13,0.657 -0.205,1.099 z m 8.036,0.454 c 0.273,0.481 0.299,0.979 0.06,1.115 -0.241,0.137 -0.656,-0.143 -0.929,-0.624 -0.273,-0.48 -0.299,-0.979 -0.059,-1.115 0.241,-0.138 0.655,0.141 0.928,0.624 z m -7.017,-5.028 c 0.303,0.463 0.362,0.958 0.131,1.109 -0.231,0.152 -0.663,-0.1 -0.966,-0.562 -0.303,-0.462 -0.361,-0.958 -0.131,-1.108 0.231,-0.154 0.663,0.097 0.966,0.561 z m 8.981,1.574 c -0.333,0.441 -0.78,0.663 -1.001,0.497 -0.221,-0.166 -0.129,-0.658 0.205,-1.099 0.333,-0.442 0.78,-0.663 1,-0.497 0.222,0.166 0.131,0.657 -0.204,1.099 z"
|
||||
id="path4-3"
|
||||
transform="matrix(0.80585364,0.49919857,0.49919855,-0.28356361,-2.8004023,7.2005306)" /><path
|
||||
fill="#5c913b"
|
||||
d="m 334.61808,461.62087 c -9.5037,5.0706 -21.25907,4.87846 -35.03515,-1.59961 C 245.50258,434.59047 181.23875,322.93045 156.04612,210.6247 136.41611,123.11635 146.40452,61.278452 177.31135,50.164244 Z"
|
||||
id="path1-3-7-7"
|
||||
style="fill:#232323;fill-opacity:0.339523;stroke-width:7.51967"
|
||||
inkscape:label="Shadow"
|
||||
transform="matrix(-0.06223636,0.07988251,-0.05737101,-0.06210708,49.781466,8.5107594)" /></g></g></svg>
|
After Width: | Height: | Size: 11 KiB |
BIN
random/art/GreenOnion.png
Normal file
After Width: | Height: | Size: 232 KiB |
BIN
random/art/Little Space Software-Expanded.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
random/art/arduino-cutout.png
Normal file
After Width: | Height: | Size: 4.3 MiB |
117
random/art/corn_rocket.svg
Normal file
After Width: | Height: | Size: 114 KiB |
91
random/art/index.html
Executable file
|
@ -0,0 +1,91 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title></title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<style>
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
main {
|
||||
height: 100vh;
|
||||
overflow-y: scroll;
|
||||
}
|
||||
|
||||
section {
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
scroll-snap-align: start;
|
||||
}
|
||||
|
||||
img, object {
|
||||
max-width: 1024px;
|
||||
width: 100%;
|
||||
margin: auto;
|
||||
display: block;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<main>
|
||||
<section style="padding: 50px 0;background: #fee67f;">
|
||||
<img src="./GreenOnion.png">
|
||||
</section>
|
||||
|
||||
<section style="background: linear-gradient(-30deg,#00d2ff 0%,#3a47d5 100%);">
|
||||
<object data="./kate.svg"></object>
|
||||
</section>
|
||||
|
||||
<section style="background: linear-gradient(0deg,#94def3 50%,#407685 100%);">
|
||||
<img src="./pastel-cities-sunset-tall.png" style="width:100%;max-width:unset;image-rendering:pixelated;">
|
||||
</section>
|
||||
|
||||
<section style="background: linear-gradient(70deg, #8094def3 0%, #80407685 100%), url('noise.svg');">
|
||||
<object data="./scoop_chase_bubblegum_crisis.svg"></object>
|
||||
</section>
|
||||
|
||||
<section style="background: linear-gradient(90deg, #010101 0%, black 100%), url('noise.svg');">
|
||||
<img src="./solar_eclipse-lossy.webp">
|
||||
</section>
|
||||
|
||||
<section style="background: linear-gradient(70deg, #55ffff80 0%, #ffff7f80 100%), url('noise.svg');">
|
||||
<object data="./text-gleam.svg"></object>
|
||||
</section>
|
||||
|
||||
<section style="background-color: #ff8ba2">
|
||||
<object data="./sqp_icon2.svg"></object>
|
||||
</section>
|
||||
|
||||
<section style="background-color: #323295">
|
||||
<object data="./corn_rocket.svg"></object>
|
||||
</section>
|
||||
|
||||
<section style="background-color: #ffaa7f">
|
||||
<object data="./3d_melon.svg"></object>
|
||||
</section>
|
||||
|
||||
<section style="background-color: #a4ffb6">
|
||||
<img src="./arduino-cutout.png">
|
||||
</section>
|
||||
|
||||
<section style="padding: 100px 0;background-color: #aaaaff">
|
||||
<object data="./little_busters_cat.svg"></object>
|
||||
</section>
|
||||
|
||||
<section style="background-color: #69bafb">
|
||||
<object data="./Little Space Software-Expanded.png" style="image-rendering:pixelated;max-height:80vh;max-width:80%;aspect-ratio:1;"></object>
|
||||
</section>
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
2057
random/art/kate.svg
Normal file
After Width: | Height: | Size: 199 KiB |
145
random/art/little_busters_cat.svg
Normal file
|
@ -0,0 +1,145 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="286"
|
||||
height="64"
|
||||
viewBox="0 0 75.670755 16.933328"
|
||||
version="1.1"
|
||||
id="svg1"
|
||||
xml:space="preserve"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
||||
sodipodi:docname="little_busters_cat.svg"
|
||||
inkscape:export-filename="logo_thing.png"
|
||||
inkscape:export-xdpi="1024"
|
||||
inkscape:export-ydpi="1024"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
|
||||
id="namedview1"
|
||||
pagecolor="#717171"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:deskcolor="#545454"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:zoom="11.313709"
|
||||
inkscape:cx="224.02027"
|
||||
inkscape:cy="31.289475"
|
||||
inkscape:window-width="2560"
|
||||
inkscape:window-height="1360"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g10" /><defs
|
||||
id="defs1"><linearGradient
|
||||
id="linearGradient11"
|
||||
inkscape:collect="always"><stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop11" /><stop
|
||||
style="stop-color:#7e7e7e;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop12" /></linearGradient><linearGradient
|
||||
id="linearGradient3"
|
||||
inkscape:collect="always"><stop
|
||||
style="stop-color:#eb6944;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3" /><stop
|
||||
style="stop-color:#f8af1d;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4" /></linearGradient><linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3"
|
||||
id="linearGradient4"
|
||||
x1="4.6626601"
|
||||
y1="9.5700912"
|
||||
x2="4.6626601"
|
||||
y2="2.84026"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.6343968,-0.30990479,0.30990479,1.6343968,25.527109,-0.7024418)" /><linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient11"
|
||||
id="linearGradient13"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.73976381,0,0,0.44690044,10.890481,7.1738006)"
|
||||
x1="31.740213"
|
||||
y1="12.830999"
|
||||
x2="41.632244"
|
||||
y2="12.831003" /></defs><g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
style="display:inline"><rect
|
||||
style="display:none;fill:#ffffff;fill-opacity:1;stroke-width:0.0117973;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:0.0117973, 0.0117973;paint-order:markers stroke fill"
|
||||
id="rect10"
|
||||
width="75.67083"
|
||||
height="16.933332"
|
||||
x="-3.7166668e-05"
|
||||
y="0"
|
||||
ry="0.043848902" /><g
|
||||
id="g10"
|
||||
inkscape:label="Text"
|
||||
transform="translate(0.14283237,2.2094259)"
|
||||
style="stroke:#ffffff;stroke-opacity:1;stroke-width:0.5;stroke-dasharray:none;stroke-linejoin:round;stroke-linecap:round"><path
|
||||
d="M 1.6959667,10.90905 V 5.1798525 h 2.3116606 v 5.1726195 h 1.4245479 v 0.556578 z"
|
||||
id="text5"
|
||||
style="font-style:italic;font-stretch:semi-expanded;font-size:7.05556px;font-family:'Republica Minor 2.0';-inkscape-font-specification:'Republica Minor 2.0 Italic Semi-Expanded';letter-spacing:2.64583px;word-spacing:0px;stroke:#ffffff;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
|
||||
aria-label="L"
|
||||
sodipodi:nodetypes="ccccccc" /><path
|
||||
d="m 10.787575,9.7204913 q 0,0.3358967 0.325562,0.3358967 0.323839,0 0.323839,-0.3358967 V 7.6844385 q -0.0017,-0.1825901 -0.07924,-0.2583823 -0.07579,-0.077515 -0.244601,-0.077515 -0.325562,0 -0.325562,0.335897 z m -0.02928,-3.3314095 h 1.495173 q 0.430637,0 0.726916,0.053399 0.296278,0.051677 0.478868,0.1705323 0.184313,0.1188559 0.265273,0.3117814 0.08096,0.1912029 0.08096,0.4650882 l 0.0017,2.5114762 q -0.0017,0.2807751 -0.08268,0.4737011 -0.08096,0.191203 -0.26355,0.310059 -0.182591,0.118856 -0.480591,0.172255 -0.296279,0.05168 -0.726916,0.05168 H 9.9676416 q -0.4306373,0 -0.7269157,-0.05168 -0.2945558,-0.0534 -0.4754234,-0.16881 Q 8.5861574,10.573153 8.503475,10.38195 8.4225152,10.189025 8.4242378,9.9013589 l -0.00172,-4.7215064 h 2.3357762 z"
|
||||
id="text4"
|
||||
style="font-style:italic;font-stretch:semi-expanded;font-size:7.05556px;font-family:'Republica Minor 2.0';-inkscape-font-specification:'Republica Minor 2.0 Italic Semi-Expanded';letter-spacing:2.64583px;word-spacing:0px;fill:#174554;stroke-width:0.5;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill;stroke:#ffffff;stroke-opacity:1;stroke-linecap:round"
|
||||
aria-label="b" /><path
|
||||
id="text3-7"
|
||||
style="font-style:italic;font-stretch:semi-expanded;font-size:7.05556px;font-family:'Republica Minor 2.0';-inkscape-font-specification:'Republica Minor 2.0 Italic Semi-Expanded';letter-spacing:2.64583px;word-spacing:0px;display:inline;stroke:#ffffff;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
|
||||
d="m 18.340959,6.4011596 c -0.287091,0 -0.529568,0.01763 -0.727087,0.05323 -0.197519,0.03445 -0.356395,0.09221 -0.476974,0.1725998 -0.11943,0.07924 -0.205961,0.1847138 -0.259931,0.3167757 -0.05397,0.1309139 -0.08113,0.2928327 -0.08113,0.4857585 v 2.4649627 c 0,0.1929267 0.02716,0.3552477 0.08113,0.4873097 0.05397,0.130913 0.140502,0.236903 0.259931,0.317293 0.120579,0.07923 0.279455,0.136482 0.476974,0.172082 0.197519,0.03445 0.439996,0.05168 0.727087,0.05168 h 2.28565 c 0.28709,0 0.529569,-0.01723 0.727088,-0.05168 0.197519,-0.0356 0.357313,-0.09417 0.47904,-0.1757 0.122875,-0.08268 0.21113,-0.18816 0.2651,-0.316775 0.05397,-0.129766 0.08113,-0.291283 0.08113,-0.4842097 V 9.13329 H 19.80857 v 0.5787755 c 0,0.1217268 -0.02585,0.2095768 -0.07752,0.2635497 -0.05168,0.05397 -0.133956,0.08062 -0.246496,0.08062 -0.217041,0 -0.325562,-0.1145223 -0.325562,-0.344195 V 8.7886139 h 3.019971 V 7.4295212 c 0,-0.1883318 -0.02716,-0.3481266 -0.08113,-0.4790405 C 22.043862,6.8184178 21.955612,6.7116199 21.832737,6.630086 21.71101,6.547406 21.551215,6.4888371 21.353696,6.4543862 c -0.197519,-0.0356 -0.439997,-0.05323 -0.727087,-0.05323 z m 1.145415,0.9611781 c 0.234267,0 0.322195,0.1270669 0.322195,0.3808556 l 2.86e-4,0.2356468 c 0,0.2721328 -0.08395,0.3808546 -0.317025,0.3808546 -0.233077,0 -0.332552,-0.1270668 -0.332552,-0.3808556 l -2.86e-4,-0.2356458 c 0,-0.2660517 0.08099,-0.3808556 0.327382,-0.3808556 z"
|
||||
sodipodi:nodetypes="scccsscccsscccsccscssccscccssscczccs" /><path
|
||||
id="text3-7-7"
|
||||
style="font-style:italic;font-stretch:semi-expanded;font-size:7.05556px;font-family:'Republica Minor 2.0';-inkscape-font-specification:'Republica Minor 2.0 Italic Semi-Expanded';letter-spacing:2.64583px;word-spacing:0px;display:inline;stroke:#ffffff;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill;fill:#174554;fill-opacity:1"
|
||||
d="m 25.42338,6.643291 c -0.248628,0.1435455 -0.449804,0.280052 -0.603061,0.409642 -0.153831,0.1285941 -0.262542,0.2580537 -0.326771,0.3879628 -0.06381,0.1283389 -0.08601,0.2629468 -0.06672,0.4043013 0.01872,0.1403598 0.07615,0.2941656 0.172618,0.4612442 l 1.232482,2.1347197 c 0.09646,0.16708 0.201145,0.294074 0.313915,0.381458 0.112196,0.08639 0.24013,0.134913 0.383754,0.144818 0.144039,0.0083 0.310256,-0.02153 0.499112,-0.08946 0.188282,-0.06892 0.406888,-0.175242 0.655516,-0.318788 l 1.979431,-1.1428248 c 0.248627,-0.143545 0.450005,-0.2797057 0.603837,-0.4082998 0.153256,-0.12959 0.262357,-0.2602101 0.32701,-0.3916807 0.06507,-0.1330405 0.08876,-0.2685163 0.0712,-0.4068852 -0.01814,-0.1393656 -0.07538,-0.2928234 -0.171844,-0.4599031 l -0.380598,-0.6592151 -2.052824,1.1851985 0.289388,0.5012343 c 0.06086,0.1054185 0.0824,0.1944236 0.06464,0.2670005 -0.01777,0.072579 -0.0757,0.136797 -0.173162,0.193067 C 28.05334,9.3454012 27.902098,9.3004836 27.787261,9.101581 L 27.325545,8.3018705 29.940916,6.791885 29.26137,5.6148762 C 29.167204,5.4517761 29.063785,5.3269698 28.951589,5.24058 28.838818,5.1531951 28.708992,5.1048309 28.561812,5.095658 28.415053,5.084919 28.247382,5.114094 28.0591,5.183018 c -0.188856,0.067929 -0.407663,0.1739 -0.65629,0.317445 z m 1.472548,0.2596971 c 0.202881,-0.1171335 0.342562,-0.051054 0.469457,0.1687331 l 0.118071,0.2039332 C 27.619522,7.5113283 27.60118,7.6474591 27.399326,7.7639966 27.197476,7.8805351 27.047794,7.8202296 26.9209,7.600442 L 26.802834,7.3965097 C 26.669809,7.1661022 26.682546,7.0261841 26.895928,6.9029881 Z"
|
||||
sodipodi:nodetypes="scccsscccsscccsccscssccscccssscczccs" /><path
|
||||
d="m 45.720123,5.1451545 h 2.39262 l -0.0034,1.2195646 v 3.2108311 c 0,0.5075778 -0.109669,0.8647198 -0.329007,1.0714258 -0.105649,0.104501 -0.256659,0.181442 -0.45303,0.230821 -0.195222,0.04938 -0.43236,0.07407 -0.711413,0.07407 h -2.451187 c -0.261827,0 -0.483462,-0.02469 -0.664904,-0.07407 -0.181441,-0.04938 -0.329006,-0.129191 -0.442695,-0.239434 -0.11254,-0.111391 -0.194648,-0.253789 -0.246324,-0.427192 -0.05053,-0.174552 -0.07579,-0.3864254 -0.07579,-0.6356208 V 5.143432 l 1.429715,0.00172 h 0.957737 l 0.0017,4.0910535 c -0.0011,0.1458425 0.02126,0.250918 0.06718,0.3152265 0.04593,0.06316 0.121726,0.09474 0.227377,0.09474 0.105649,0 0.182016,-0.03158 0.229099,-0.09474 0.04823,-0.064309 0.07292,-0.1693842 0.07407,-0.3152265 z"
|
||||
id="text10"
|
||||
style="font-style:italic;font-stretch:semi-expanded;font-size:7.05556px;font-family:'Republica Minor 2.0';-inkscape-font-specification:'Republica Minor 2.0 Italic Semi-Expanded';letter-spacing:2.64583px;word-spacing:0px;stroke:#ffffff;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
|
||||
aria-label="U"
|
||||
sodipodi:nodetypes="cccsccsssccscccccsccc" /><path
|
||||
id="text9"
|
||||
style="font-style:italic;font-stretch:semi-expanded;font-size:7.05556px;font-family:'Republica Minor 2.0';-inkscape-font-specification:'Republica Minor 2.0 Italic Semi-Expanded';letter-spacing:2.64583px;word-spacing:0px;fill:#174554;stroke:#ffffff;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
|
||||
d="m 51.693797,5.1797872 -0.0016,1.2485026 h -1.149801 v 0.4547526 h 1.149801 l 5e-5,2.3318076 v 1.137398 c 0,0.384849 0.395411,0.556555 0.738456,0.556555 h 0.69143 0.406694 0.846977 0.803051 V 10.351732 H 54.31901 c -0.285709,-0.0014 -0.289388,-0.02292 -0.289388,-0.374138 V 9.21485 l -5e-5,-2.3318076 h 1.149283 V 6.4282898 H 54.029572 V 5.1797872 Z"
|
||||
sodipodi:nodetypes="ccccccssccccccsccccccc" /><path
|
||||
d="m 57.667712,10.908803 10e-7,-4.4805136 h 2.328886 l -1e-6,4.4805136 z m 0,-4.7525123 V 5.1847731 h 2.328886 v 0.9715176 z"
|
||||
id="text8"
|
||||
style="font-style:italic;font-stretch:semi-expanded;font-size:7.05556px;font-family:'Republica Minor 2.0';-inkscape-font-specification:'Republica Minor 2.0 Italic Semi-Expanded';letter-spacing:2.64583px;word-spacing:0px;stroke:#ffffff;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
|
||||
aria-label="i"
|
||||
sodipodi:nodetypes="cccccccccc" /><path
|
||||
d="M 62.986937,10.908803 V 5.1796055 h 2.328886 v 5.7291975 z"
|
||||
id="text7"
|
||||
style="font-style:italic;font-stretch:semi-expanded;font-size:7.05556px;font-family:'Republica Minor 2.0';-inkscape-font-specification:'Republica Minor 2.0 Italic Semi-Expanded';letter-spacing:2.64583px;word-spacing:0px;fill:#174554;stroke-width:0.5;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill;stroke:#ffffff;stroke-opacity:1;stroke-linecap:round"
|
||||
aria-label="l" /><path
|
||||
d="m 73.689124,9.8942217 c -0.0011,0.1929253 -0.02869,0.3542713 -0.08268,0.4840363 -0.05397,0.128617 -0.142397,0.234266 -0.265272,0.316949 -0.121727,0.08153 -0.28135,0.140101 -0.478869,0.1757 -0.197519,0.03445 -0.439824,0.05168 -0.726916,0.05168 h -2.285822 c -0.287091,0 -0.529396,-0.01723 -0.726915,-0.05168 -0.197519,-0.0356 -0.356568,-0.09302 -0.477146,-0.172255 -0.119431,-0.08038 -0.206132,-0.186035 -0.260105,-0.316949 -0.05397,-0.132062 -0.08039,-0.294556 -0.07924,-0.4874813 l -0.0017,-0.5563833 h 2.363337 v 0.9029596 c 0,0.229673 0.108521,0.34451 0.325562,0.34451 0.112539,0 0.194647,-0.02699 0.246324,-0.08096 0.05283,-0.05397 0.07866,-0.141824 0.07751,-0.26355 V 9.5910531 c 0,-0.2021124 -0.180294,-0.3496774 -0.540881,-0.442695 L 69.418925,8.8159061 C 68.996326,8.7079597 68.712106,8.5885297 68.566263,8.457616 68.420421,8.3255539 68.348074,8.1234415 68.349222,7.8512788 L 68.3475,7.4292543 c 0,-0.1929255 0.02699,-0.3548451 0.08096,-0.4857588 0.05512,-0.1320621 0.143544,-0.2377117 0.265273,-0.316949 0.121727,-0.080386 0.281349,-0.1378039 0.478868,-0.1722549 0.197519,-0.035599 0.439825,-0.053399 0.726916,-0.053399 h 2.235868 c 0.287092,0 0.529397,0.0178 0.726916,0.053399 0.197519,0.034451 0.357142,0.093017 0.478869,0.1757 0.122875,0.081534 0.211299,0.188332 0.265272,0.3203941 0.05397,0.1309137 0.08096,0.2905366 0.08096,0.4788686 l 0.0017,0.3031686 H 71.346457 V 7.6187347 c -1.49e-4,-0.03027 -0.0047,-0.5941807 -0.0086,-0.6204617 -0.02556,-0.1731234 -0.12949,-0.2532152 -0.316943,-0.2532152 -0.09417,0 -0.171681,0.023542 -0.232544,0.070625 -0.06087,0.047083 -0.0913,0.1079467 -0.0913,0.1825902 0.0011,0.047083 0.0086,0.6187397 0.02239,0.6566353 0.01378,0.036748 0.04249,0.071773 0.08613,0.1050755 0.04479,0.033303 0.109095,0.065457 0.192925,0.096463 0.08498,0.029857 0.198093,0.060863 0.339342,0.093018 l 1.016304,0.2549372 c 0.5271,0.1355071 0.880223,0.2830721 1.059368,0.442695 0.183739,0.1550294 0.275608,0.3898702 0.275608,0.7045225 z"
|
||||
id="text6"
|
||||
style="font-style:italic;font-stretch:semi-expanded;font-size:7.05556px;font-family:'Republica Minor 2.0';-inkscape-font-specification:'Republica Minor 2.0 Italic Semi-Expanded';letter-spacing:2.64583px;word-spacing:0px;stroke:#ffffff;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
|
||||
aria-label="s"
|
||||
sodipodi:nodetypes="ccccssccccccssccsccccccccsscccccccssscccccccsc" /></g><ellipse
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.466845;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke fill markers"
|
||||
id="path11"
|
||||
cx="36.106003"
|
||||
cy="12.907982"
|
||||
rx="5.3422379"
|
||||
ry="0.52337158"
|
||||
inkscape:label="Cat Shadow" /><path
|
||||
id="path11-5"
|
||||
style="display:inline;fill:url(#linearGradient13);stroke:#ffffff;stroke-width:0.390604;stroke-linejoin:bevel;paint-order:stroke fill markers"
|
||||
inkscape:label="Cat Shadow"
|
||||
d="m 41.503571,12.907982 c 10e-7,0.276954 -1.747561,0.516413 -3.903172,0.501469 l -3.229657,-0.02706 V 12.90798 12.406509 h 3.229657 c 2.155663,0 3.903173,0.224515 3.903172,0.501469 z"
|
||||
sodipodi:nodetypes="sscccsss" /><path
|
||||
style="display:inline;opacity:1;fill:url(#linearGradient4);stroke:#ffffff;stroke-width:0.5;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
|
||||
d="m 39.506894,8.5631151 0.236249,-0.4595282 0.830371,0.8242677 c 0.03671,0.032941 0.04482,0.031415 0.04901,-0.023991 L 40.613824,7.5790626 41.145097,7.689717 40.93352,9.2648883 41.578944,8.73722 c 0.273384,-0.2235056 0.664521,0.1102228 0.444802,0.4742207 -0.164041,0.2367733 -0.639242,0.6969362 -0.989154,0.8910193 -0.121398,0.06734 -0.462867,0.117153 -0.570612,0.108197 -0.25585,-0.0092 -0.56247,-0.120132 -0.56247,-0.120132 L 39.136995,9.8018521 38.324591,9.4655774 c -0.388475,-0.1607994 -0.645174,0.2181171 -0.683966,0.5181743 -0.01024,0.079151 -0.07852,0.3670573 0.02618,0.7849563 0.06038,0.240817 0.111464,0.479758 0.114268,0.742343 0.0046,0.441492 -0.04213,0.76955 -0.182844,1.155809 -0.06483,0.211786 -0.267891,0.54126 -0.267891,0.54126 -0.155163,0.112885 -0.34564,0.12434 -0.521473,0.111787 -0.205913,-0.02237 -0.27431,-0.105109 -0.278202,-0.276895 0.04127,-0.282838 0.171234,-0.468455 0.336786,-0.681299 0.112988,-0.144255 0.169641,-0.22841 0.113386,-0.358821 l -0.503247,-0.820543 c -0.13229,-0.326651 -0.168271,-0.52858 -0.168271,-0.52858 l -0.08422,-0.359381 c -0.437798,0.223664 -0.566684,0.319843 -0.816435,0.632717 l 0.07863,0.614574 c 0.01174,0.210934 -0.06273,0.505791 -0.06273,0.505791 -0.02226,0.120772 -0.203907,0.441844 -0.203907,0.441844 0,0 -0.0896,0.136689 -0.132125,0.344252 0.0057,0.212824 -0.06205,0.340001 -0.167735,0.466484 -0.25546,0.09056 -0.377259,0.11227 -0.630679,-0.07571 -0.2636,-0.183105 -0.130977,-0.458139 -0.130977,-0.458139 0.0711,-0.135635 0.300286,-0.203521 0.359456,-0.357955 0.04876,-0.141542 0.122883,-0.492623 0.108981,-0.599187 -0.0079,-0.20745 -0.06503,-0.531193 -0.06503,-0.531193 -0.09096,-0.169638 -0.219062,-0.616427 -0.244954,-0.758512 -0.09341,-0.348714 -0.147915,-0.6579336 -0.166808,-0.8797237 0,0 -0.240382,-0.2327926 -0.528572,-0.4009779 0,0 -0.350951,-0.1896353 -0.559838,-0.2004266 -0.339125,-0.00481 -0.59144,0.058497 -0.743495,0.2207657 -0.132587,0.1543222 -0.143531,0.1585951 -0.273335,0.4059464 -0.112839,0.2433591 -0.187392,0.5847241 -0.289473,1.0366611 -0.152069,0.133836 -0.165446,0.19028 -0.399059,0.289515 -0.386782,0.07542 -0.587041,0.04236 -0.746381,-0.188863 -0.02288,-0.137406 0.04728,-0.228759 0.0976,-0.284495 l 0.486273,-0.455645 c 0,0 0.09606,-0.2782579 0.167812,-0.7848341 C 31.36115,8.9196372 31.264863,8.1502436 31.159515,7.5554898 30.514441,7.5691841 30.000616,7.5083525 29.687819,7.3807811 29.614408,7.2372067 29.58373,7.1086309 29.58373,7.1086309 c -0.147001,0.011074 -0.218911,0.040315 -0.308184,0.085739 -0.327853,0.1564658 -0.501959,0.4763798 -0.675875,0.5647683 -0.548576,0.1218362 -0.461794,-0.4624588 -0.461794,-0.4624588 0.173736,-0.4521479 0.376469,-0.566429 0.737376,-0.7403983 0.244806,-0.1028518 0.4902,-0.1391386 0.4902,-0.1391386 C 29.282909,6.1462133 29.164837,5.6470698 29.104575,5.218568 L 28.454409,4.2260941 29.510866,4.3932583 29.700893,4.0443322 29.202065,3.4291567 c 1.127389,-0.3169337 1.543879,-0.073113 2.123816,0.2146642 0.937508,0.4652121 1.65379,1.3111144 2.044318,1.6171824 0.930208,0.729031 2.084226,1.2942223 2.63516,1.5110105 l 1.343997,0.6222567 c 0.322003,0.1490828 0.518986,0.616983 0.655813,0.8096252 0.02279,0.016324 1.573262,1.0919453 2.568345,1.189833 z"
|
||||
id="path3"
|
||||
sodipodi:nodetypes="cccccccscscccsssscccccccccccccccccccccccccccccccccccccccccccccsscsccc"
|
||||
inkscape:label="Cat" /></g></svg>
|
After Width: | Height: | Size: 19 KiB |
15
random/art/noise.svg
Executable file
|
@ -0,0 +1,15 @@
|
|||
<svg
|
||||
xmlns='http://www.w3.org/2000/svg'
|
||||
xmlns:xlink='http://www.w3.org/1999/xlink'
|
||||
width='300' height='300'>
|
||||
|
||||
<filter id='n' x='0' y='0'>
|
||||
<feTurbulence
|
||||
type='fractalNoise'
|
||||
baseFrequency='0.75'
|
||||
stitchTiles='stitch'/>
|
||||
</filter>
|
||||
|
||||
<rect width='300' height='300' fill='#fff'/>
|
||||
<rect width='300' height='300' filter="url(#n)" opacity='0.80'/>
|
||||
</svg>
|
After Width: | Height: | Size: 420 B |
BIN
random/art/pastel-cities-sunset-tall.png
Normal file
After Width: | Height: | Size: 48 KiB |
317
random/art/scoop_chase_bubblegum_crisis.svg
Normal file
|
@ -0,0 +1,317 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="423mm"
|
||||
height="210mm"
|
||||
viewBox="0 0 423 210"
|
||||
version="1.1"
|
||||
id="svg1"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
||||
sodipodi:docname="scoop_chase_bubblegum_crisis.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<sodipodi:namedview
|
||||
id="namedview1"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:zoom="1.0280443"
|
||||
inkscape:cx="772.82662"
|
||||
inkscape:cy="332.67049"
|
||||
inkscape:window-width="2560"
|
||||
inkscape:window-height="1360"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer1" />
|
||||
<defs
|
||||
id="defs1" />
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(3.0983926,0.63877608)">
|
||||
<g
|
||||
id="g32"
|
||||
inkscape:label="Lower Text">
|
||||
<g
|
||||
id="g31"
|
||||
inkscape:label="End Rectangles"
|
||||
transform="translate(1.6540179,-9.9217687)"
|
||||
style="fill:#f1b920;fill-opacity:1">
|
||||
<rect
|
||||
style="fill:#f1b920;fill-opacity:1;stroke:none;stroke-width:2.64275;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
|
||||
id="rect14"
|
||||
width="114.56354"
|
||||
height="4.9485226"
|
||||
x="290.81113"
|
||||
y="140.97299" />
|
||||
<rect
|
||||
style="fill:#f1b920;fill-opacity:1;stroke:none;stroke-width:2.64275;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
|
||||
id="rect14-4"
|
||||
width="114.56354"
|
||||
height="4.9485226"
|
||||
x="290.81113"
|
||||
y="149.67062" />
|
||||
</g>
|
||||
<g
|
||||
id="g30"
|
||||
inkscape:label="Bubblegum Crisis 8"
|
||||
transform="translate(1.6540179,-9.9217687)"
|
||||
style="fill:#f1b920;fill-opacity:1;stroke:#f1b920;stroke-opacity:1">
|
||||
<path
|
||||
d="m 281.29661,148.52972 q -1.37774,0 -2.11765,0.73174 -0.73989,0.73174 -0.73989,2.09599 0,1.36426 0.73989,2.09601 0.73991,0.71933 2.11765,0.71933 1.36499,0 2.09212,-0.71933 0.72715,-0.73175 0.72715,-2.09601 0,-1.37666 -0.72715,-2.09599 -0.72713,-0.73174 -2.09212,-0.73174 z m -3.58469,-1.5751 q -1.73493,-0.50849 -2.61516,-1.56269 -0.88022,-1.0542 -0.88022,-2.62931 0,-2.34404 1.79872,-3.57187 1.79872,-1.22784 5.28135,-1.22784 3.45711,0 5.25584,1.22784 1.79872,1.21543 1.79872,3.57187 0,1.57511 -0.89299,2.62931 -0.88022,1.0542 -2.61516,1.56269 1.93905,0.5209 2.92132,1.69913 0.99505,1.16582 0.99505,2.95175 0,2.75333 -1.88802,4.16719 -1.87526,1.40147 -5.57476,1.40147 -3.71225,0 -5.61303,-1.40147 -1.88802,-1.41386 -1.88802,-4.16719 0,-1.78593 0.98228,-2.95175 0.99504,-1.17823 2.93408,-1.69913 z m 1.14812,-3.7083 q 0,1.1038 0.62509,1.69913 0.63784,0.59531 1.81148,0.59531 1.14811,0 1.7732,-0.59531 0.62509,-0.59533 0.62509,-1.69913 0,-1.10381 -0.62509,-1.68672 -0.62509,-0.59531 -1.7732,-0.59531 -1.17364,0 -1.81148,0.59531 -0.62509,0.59531 -0.62509,1.68672 z"
|
||||
id="text15"
|
||||
style="font-weight:bold;font-size:25.7605px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold';letter-spacing:-1.87837px;word-spacing:0px;fill:#f1b920;fill-opacity:1;stroke:#f1b920;stroke-width:0.4;stroke-dasharray:none;stroke-opacity:1"
|
||||
aria-label="8" />
|
||||
<path
|
||||
d="m 15.949132,145.46634 q 1.160876,0 1.76045,-0.4961 0.599574,-0.49609 0.599574,-1.46347 0,-0.95498 -0.599574,-1.45107 -0.599574,-0.50851 -1.76045,-0.50851 h -2.717216 v 3.91915 z m 0.165839,8.09873 q 1.479799,0 2.219698,-0.60771 0.752656,-0.60772 0.752656,-1.83555 0,-1.20303 -0.739898,-1.79834 -0.7399,-0.60771 -2.232456,-0.60771 h -2.883055 v 4.84931 z m 4.566965,-6.66006 q 1.581854,0.44649 2.449322,1.64951 0.867468,1.20303 0.867468,2.95176 0,2.67891 -1.862505,3.99356 -1.862506,1.31466 -5.664057,1.31466 H 8.3205146 v -18.51672 h 7.3734794 q 3.967392,0 5.740598,1.16583 1.785965,1.16581 1.785965,3.7331 0,1.35186 -0.650602,2.30684 -0.650601,0.94258 -1.888019,1.40146 z"
|
||||
id="text30"
|
||||
style="font-weight:bold;font-size:25.7605px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold';letter-spacing:-1.87837px;word-spacing:0px;fill:#f1b920;fill-opacity:1;stroke:#f1b920;stroke-width:0.4;stroke-dasharray:none;stroke-opacity:1"
|
||||
aria-label="B" />
|
||||
<path
|
||||
d="m 26.328984,138.29778 h 4.911401 v 11.10011 q 0,2.29443 0.765413,3.28662 0.77817,0.97979 2.525863,0.97979 1.76045,0 2.525864,-0.97979 0.778169,-0.99219 0.778169,-3.28662 v -11.10011 h 4.911401 v 11.10011 q 0,3.93154 -2.028345,5.8539 -2.028344,1.92237 -6.187089,1.92237 -4.145988,0 -6.174332,-1.92237 -2.028345,-1.92236 -2.028345,-5.8539 z"
|
||||
id="text29"
|
||||
style="font-weight:bold;font-size:25.7605px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold';letter-spacing:-1.87837px;word-spacing:0px;fill:#f1b920;fill-opacity:1;stroke:#f1b920;stroke-width:0.4;stroke-dasharray:none;stroke-opacity:1"
|
||||
aria-label="U" />
|
||||
<path
|
||||
d="m 53.26727,145.46634 q 1.160877,0 1.76045,-0.4961 0.599575,-0.49609 0.599575,-1.46347 0,-0.95498 -0.599575,-1.45107 -0.599573,-0.50851 -1.76045,-0.50851 h -2.717216 v 3.91915 z m 0.16584,8.09873 q 1.479799,0 2.219698,-0.60771 0.752656,-0.60772 0.752656,-1.83555 0,-1.20303 -0.739899,-1.79834 -0.7399,-0.60771 -2.232455,-0.60771 h -2.883056 v 4.84931 z m 4.566965,-6.66006 q 1.581854,0.44649 2.449322,1.64951 0.867468,1.20303 0.867468,2.95176 0,2.67891 -1.862505,3.99356 -1.862506,1.31466 -5.664058,1.31466 h -8.151648 v -18.51672 h 7.373479 q 3.967391,0 5.740598,1.16583 1.785964,1.16581 1.785964,3.7331 0,1.35186 -0.650601,2.30684 -0.650601,0.94258 -1.888019,1.40146 z"
|
||||
id="text28"
|
||||
style="font-weight:bold;font-size:25.7605px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold';letter-spacing:-1.87837px;word-spacing:0px;fill:#f1b920;fill-opacity:1;stroke:#f1b920;stroke-width:0.4;stroke-dasharray:none;stroke-opacity:1"
|
||||
aria-label="B" />
|
||||
<path
|
||||
d="m 71.275741,145.46634 q 1.160877,0 1.760451,-0.4961 0.599573,-0.49609 0.599573,-1.46347 0,-0.95498 -0.599573,-1.45107 -0.599574,-0.50851 -1.760451,-0.50851 h -2.717216 v 3.91915 z m 0.16584,8.09873 q 1.479799,0 2.219698,-0.60771 0.752656,-0.60772 0.752656,-1.83555 0,-1.20303 -0.739899,-1.79834 -0.7399,-0.60771 -2.232455,-0.60771 h -2.883056 v 4.84931 z m 4.566965,-6.66006 q 1.581854,0.44649 2.449322,1.64951 0.867468,1.20303 0.867468,2.95176 0,2.67891 -1.862505,3.99356 -1.862506,1.31466 -5.664058,1.31466 h -8.151649 v -18.51672 h 7.37348 q 3.967392,0 5.740598,1.16583 1.785964,1.16581 1.785964,3.7331 0,1.35186 -0.650601,2.30684 -0.650601,0.94258 -1.888019,1.40146 z"
|
||||
id="text27"
|
||||
style="font-weight:bold;font-size:25.7605px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold';letter-spacing:-1.87837px;word-spacing:0px;fill:#f1b920;fill-opacity:1;stroke:#f1b920;stroke-width:0.4;stroke-dasharray:none;stroke-opacity:1"
|
||||
aria-label="B" />
|
||||
<path
|
||||
d="m 81.655595,138.29778 h 4.911401 v 14.90763 h 8.623654 v 3.60909 H 81.655595 Z"
|
||||
id="text26"
|
||||
style="font-weight:bold;font-size:25.7605px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold';letter-spacing:-1.87837px;word-spacing:0px;fill:#f1b920;fill-opacity:1;stroke:#f1b920;stroke-width:0.4;stroke-dasharray:none;stroke-opacity:1"
|
||||
aria-label="L" />
|
||||
<path
|
||||
d="m 96.3983,138.29778 h 13.2544 v 3.60909 h -8.343 v 3.44785 h 7.84548 v 3.60909 h -7.84548 v 4.2416 h 8.62365 v 3.60909 H 96.3983 Z"
|
||||
id="text25"
|
||||
style="font-weight:bold;font-size:25.7605px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold';letter-spacing:-1.87837px;word-spacing:0px;fill:#f1b920;fill-opacity:1;stroke:#f1b920;stroke-width:0.4;stroke-dasharray:none;stroke-opacity:1"
|
||||
aria-label="E" />
|
||||
<path
|
||||
d="m 129.4599,155.43783 q -1.837,0.86816 -3.81431,1.30225 -1.97732,0.43408 -4.0822,0.43408 -4.75832,0 -7.53932,-2.57969 -2.781,-2.59209 -2.781,-7.01973 0,-4.47725 2.83203,-7.04453 2.83202,-2.5673 7.75618,-2.5673 1.90078,0 3.63571,0.34728 1.7477,0.34726 3.29128,1.02939 v 3.83233 q -1.59461,-0.88057 -3.17647,-1.31466 -1.5691,-0.43408 -3.15094,-0.43408 -2.93409,0 -4.5287,1.59991 -1.58185,1.5875 -1.58185,4.55166 0,2.93935 1.53082,4.53926 1.53083,1.5999 4.3501,1.5999 0.76542,0 1.41602,-0.0869 0.66335,-0.0992 1.18638,-0.29765 v -3.59668 h -2.99786 v -3.1998 h 7.65413 z"
|
||||
id="text24"
|
||||
style="font-weight:bold;font-size:25.7605px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold';letter-spacing:-1.87837px;word-spacing:0px;fill:#f1b920;fill-opacity:1;stroke:#f1b920;stroke-width:0.4;stroke-dasharray:none;stroke-opacity:1"
|
||||
aria-label="G" />
|
||||
<path
|
||||
d="m 131.87946,138.29778 h 4.9114 v 11.10011 q 0,2.29443 0.76541,3.28662 0.77817,0.97979 2.52586,0.97979 1.76045,0 2.52586,-0.97979 0.77818,-0.99219 0.77818,-3.28662 v -11.10011 h 4.9114 v 11.10011 q 0,3.93154 -2.02835,5.8539 -2.02834,1.92237 -6.18709,1.92237 -4.14598,0 -6.17433,-1.92237 -2.02834,-1.92236 -2.02834,-5.8539 z"
|
||||
id="text23"
|
||||
style="font-weight:bold;font-size:25.7605px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold';letter-spacing:-1.87837px;word-spacing:0px;fill:#f1b920;fill-opacity:1;stroke:#f1b920;stroke-width:0.4;stroke-dasharray:none;stroke-opacity:1"
|
||||
aria-label="U" />
|
||||
<path
|
||||
d="M 151.18913,138.29778 H 157.44 l 4.33734,9.90948 4.36285,-9.90948 h 6.23813 v 18.51672 h -4.64351 v -13.54337 l -4.38837,9.98388 h -3.11268 l -4.38837,-9.98388 v 13.54337 h -4.65626 z"
|
||||
id="text22"
|
||||
style="font-weight:bold;font-size:25.7605px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold';letter-spacing:-1.87837px;word-spacing:0px;fill:#f1b920;fill-opacity:1;stroke:#f1b920;stroke-width:0.4;stroke-dasharray:none;stroke-opacity:1"
|
||||
aria-label="M" />
|
||||
<path
|
||||
d="m 197.57741,155.7975 q -1.35224,0.68213 -2.81928,1.02939 -1.46704,0.34727 -3.06165,0.34727 -4.75832,0 -7.53932,-2.57969 -2.781,-2.59209 -2.781,-7.01973 0,-4.44005 2.781,-7.01973 2.781,-2.5921 7.53932,-2.5921 1.59461,0 3.06165,0.34728 1.46704,0.34726 2.81928,1.02939 v 3.83233 q -1.365,-0.90537 -2.69171,-1.32706 -1.32672,-0.42168 -2.79376,-0.42168 -2.62791,0 -4.13323,1.63711 -1.50531,1.63712 -1.50531,4.51446 0,2.86494 1.50531,4.50206 1.50532,1.6371 4.13323,1.6371 1.46704,0 2.79376,-0.42167 1.32671,-0.42169 2.69171,-1.32706 z"
|
||||
id="text21"
|
||||
style="font-weight:bold;font-size:25.7605px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold';letter-spacing:-1.87837px;word-spacing:0px;fill:#f1b920;fill-opacity:1;stroke:#f1b920;stroke-width:0.4;stroke-dasharray:none;stroke-opacity:1"
|
||||
aria-label="C" />
|
||||
<path
|
||||
d="m 206.71983,146.50814 q 1.54359,0 2.20695,-0.55811 0.67612,-0.5581 0.67612,-1.83554 0,-1.26505 -0.67612,-1.81075 -0.66336,-0.5457 -2.20695,-0.5457 h -2.06661 v 4.7501 z m -2.06661,3.29903 v 7.00733 h -4.9114 v -18.51672 h 7.50105 q 3.76328,0 5.51097,1.22784 1.76046,1.22783 1.76046,3.88193 0,1.83555 -0.91851,3.01377 -0.90573,1.17823 -2.74272,1.73633 1.00779,0.22324 1.79872,1.01699 0.80368,0.78135 1.62012,2.38126 l 2.66619,5.2586 h -5.23032 l -2.32176,-4.60128 q -0.70163,-1.38907 -1.42876,-1.89756 -0.71439,-0.50849 -1.91354,-0.50849 z"
|
||||
id="text20"
|
||||
style="font-weight:bold;font-size:25.7605px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold';letter-spacing:-1.87837px;word-spacing:0px;fill:#f1b920;fill-opacity:1;stroke:#f1b920;stroke-width:0.4;stroke-dasharray:none;stroke-opacity:1"
|
||||
aria-label="R" />
|
||||
<path
|
||||
d="m 217.9544,138.29778 h 4.9114 v 18.51672 h -4.9114 z"
|
||||
id="text19"
|
||||
style="font-weight:bold;font-size:25.7605px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold';letter-spacing:-1.87837px;word-spacing:0px;fill:#f1b920;fill-opacity:1;stroke:#f1b920;stroke-width:0.4;stroke-dasharray:none;stroke-opacity:1"
|
||||
aria-label="I" />
|
||||
<path
|
||||
d="m 239.02451,138.88069 v 3.91915 q -1.56909,-0.68213 -3.06164,-1.0294 -1.49256,-0.34727 -2.81927,-0.34727 -1.76046,0 -2.60241,0.4713 -0.84195,0.47129 -0.84195,1.46347 0,0.74414 0.56129,1.16582 0.57407,0.40928 2.06662,0.70694 l 2.09213,0.40927 q 3.17647,0.62012 4.51594,1.88516 1.33947,1.26504 1.33947,3.59668 0,3.06338 -1.87526,4.56406 -1.86251,1.48829 -5.70233,1.48829 -1.81148,0 -3.63571,-0.33487 -1.82423,-0.33485 -3.64847,-0.99218 v -4.03077 q 1.82424,0.94258 3.5209,1.42628 1.70943,0.47128 3.29127,0.47128 1.60738,0 2.46209,-0.5209 0.85471,-0.52089 0.85471,-1.48827 0,-0.86817 -0.58682,-1.33946 -0.57406,-0.47129 -2.30899,-0.84336 l -1.90078,-0.40928 q -2.85754,-0.59531 -4.18426,-1.89756 -1.31395,-1.30224 -1.31395,-3.50986 0,-2.76573 1.83698,-4.25401 1.837,-1.48829 5.28136,-1.48829 1.56909,0 3.22748,0.23565 1.6584,0.22324 3.4316,0.68213 z"
|
||||
id="text18"
|
||||
style="font-weight:bold;font-size:25.7605px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold';letter-spacing:-1.87837px;word-spacing:0px;fill:#f1b920;fill-opacity:1;stroke:#f1b920;stroke-width:0.4;stroke-dasharray:none;stroke-opacity:1"
|
||||
aria-label="S" />
|
||||
<path
|
||||
d="m 242.6815,138.29778 h 4.9114 v 18.51672 h -4.9114 z"
|
||||
id="text17"
|
||||
style="font-weight:bold;font-size:25.7605px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold';letter-spacing:-1.87837px;word-spacing:0px;fill:#f1b920;fill-opacity:1;stroke:#f1b920;stroke-width:0.4;stroke-dasharray:none;stroke-opacity:1"
|
||||
aria-label="I" />
|
||||
<path
|
||||
d="m 263.75162,138.88069 v 3.91915 q -1.5691,-0.68213 -3.06166,-1.0294 -1.49255,-0.34727 -2.81927,-0.34727 -1.76045,0 -2.60241,0.4713 -0.84195,0.47129 -0.84195,1.46347 0,0.74414 0.56131,1.16582 0.57405,0.40928 2.06661,0.70694 l 2.09213,0.40927 q 3.17646,0.62012 4.51594,1.88516 1.33947,1.26504 1.33947,3.59668 0,3.06338 -1.87526,4.56406 -1.86251,1.48829 -5.70233,1.48829 -1.81148,0 -3.63571,-0.33487 -1.82424,-0.33485 -3.64847,-0.99218 v -4.03077 q 1.82423,0.94258 3.5209,1.42628 1.70942,0.47128 3.29128,0.47128 1.60736,0 2.46207,-0.5209 0.85471,-0.52089 0.85471,-1.48827 0,-0.86817 -0.58681,-1.33946 -0.57406,-0.47129 -2.309,-0.84336 l -1.90077,-0.40928 q -2.85755,-0.59531 -4.18426,-1.89756 -1.31396,-1.30224 -1.31396,-3.50986 0,-2.76573 1.83699,-4.25401 1.83699,-1.48829 5.28135,-1.48829 1.5691,0 3.2275,0.23565 1.65838,0.22324 3.4316,0.68213 z"
|
||||
id="text16"
|
||||
style="font-weight:bold;font-size:25.7605px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold';letter-spacing:-1.87837px;word-spacing:0px;fill:#f1b920;fill-opacity:1;stroke:#f1b920;stroke-width:0.4;stroke-dasharray:none;stroke-opacity:1"
|
||||
aria-label="S" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g12"
|
||||
inkscape:label="CHASE"
|
||||
style="stroke-width:2.8;stroke-dasharray:none"
|
||||
transform="translate(209.01878,-37.766692)">
|
||||
<g
|
||||
id="g13"
|
||||
inkscape:label="E"
|
||||
transform="matrix(1,0,0,0.99277618,2.623171,1.9318485)"
|
||||
style="stroke-width:2.81017;stroke-dasharray:none">
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:#f1b920;stroke-width:2.81017;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
|
||||
d="m 194.12626,100.58387 h -24.29863 v 27.6385 h 24.29863 -24.29863 v 27.6385 h 24.29863"
|
||||
id="path13"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:#f1b920;fill-opacity:1;stroke:none;stroke-width:3.02053;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
|
||||
d="m 194.12626,157.28587 1.26044,-2.85001 h -1.26044 z"
|
||||
id="path7-7-4-6-4-4"
|
||||
sodipodi:nodetypes="cccc"
|
||||
inkscape:label="path7" />
|
||||
<path
|
||||
style="fill:#f1b920;fill-opacity:1;stroke:none;stroke-width:3.02053;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
|
||||
d="m 194.12626,99.158865 1.26044,2.850015 h -1.26044 z"
|
||||
id="path7-7-4-6-4-4-3"
|
||||
sodipodi:nodetypes="cccc"
|
||||
inkscape:label="path7" />
|
||||
</g>
|
||||
<g
|
||||
id="g2-5"
|
||||
inkscape:label="S"
|
||||
transform="matrix(0.87483129,-0.04661543,0.04711568,0.86554269,111.07424,47.418783)"
|
||||
style="stroke-width:3.21309;stroke-dasharray:none;stroke:#f1b920;stroke-opacity:1">
|
||||
<path
|
||||
style="fill:none;stroke:#f1b920;stroke-width:3.21309;stroke-linecap:square;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path2-0"
|
||||
sodipodi:type="arc"
|
||||
sodipodi:cx="11.416393"
|
||||
sodipodi:cy="92.935089"
|
||||
sodipodi:rx="16.021013"
|
||||
sodipodi:ry="15.82539"
|
||||
sodipodi:start="2.2130096"
|
||||
sodipodi:end="5.9560409"
|
||||
sodipodi:open="true"
|
||||
sodipodi:arc-type="arc"
|
||||
d="M 1.8202992,105.60762 A 16.021013,15.82539 0 0 1 -3.7958794,87.970562 16.021013,15.82539 0 0 1 11.351906,77.109827 16.021013,15.82539 0 0 1 26.587713,87.849755"
|
||||
transform="rotate(-22.835462)"
|
||||
inkscape:label="path2" />
|
||||
<path
|
||||
style="fill:none;stroke:#f1b920;stroke-width:3.21309;stroke-linecap:square;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path2-61-3"
|
||||
sodipodi:type="arc"
|
||||
sodipodi:cx="6.0206699"
|
||||
sodipodi:cy="-119.5742"
|
||||
sodipodi:rx="16.021013"
|
||||
sodipodi:ry="15.82539"
|
||||
sodipodi:start="2.2130096"
|
||||
sodipodi:end="5.9560409"
|
||||
sodipodi:open="true"
|
||||
sodipodi:arc-type="arc"
|
||||
d="m -3.5754241,-106.90167 a 16.021013,15.82539 0 0 1 -5.6161787,-17.63706 16.021013,15.82539 0 0 1 15.1477854,-10.86074 16.021013,15.82539 0 0 1 15.2358074,10.73993"
|
||||
transform="rotate(157.16454)"
|
||||
inkscape:label="path2" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:#f1b920;stroke-width:2.8;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
|
||||
d="m 86.408844,157.27201 29.645296,-55.20972 25.33114,49.95547 -12.71561,-24.94523 h -26.05771 z"
|
||||
id="path12"
|
||||
sodipodi:nodetypes="cccccc"
|
||||
inkscape:label="A" />
|
||||
<g
|
||||
id="g11"
|
||||
inkscape:label="H"
|
||||
transform="matrix(1,0,0,0.97508872,0,2.6355704)"
|
||||
style="stroke-width:2.83554;stroke-dasharray:none">
|
||||
<path
|
||||
style="fill:none;stroke:#f1b920;stroke-width:2.83554;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 104.41189,192.84797 v -56.046 25.73529 h 42.43498 v -25.73529 56.046"
|
||||
id="path6"
|
||||
sodipodi:nodetypes="cccccc"
|
||||
transform="translate(-44.23491,-34.941124)" />
|
||||
<path
|
||||
style="fill:#f1b920;fill-opacity:1;stroke:none;stroke-width:3.12567;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
|
||||
d="m 101.20031,101.86085 2.82942,-1.35954 v 1.35954 z"
|
||||
id="path7-7"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="fill:#f1b920;fill-opacity:1;stroke:none;stroke-width:3.08649;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
|
||||
d="m 58.76227,101.86085 2.82942,-1.32567 v 1.32567 z"
|
||||
id="path7-7-4"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="fill:#f1b920;fill-opacity:1;stroke:none;stroke-width:3.08649;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
|
||||
d="m 61.588629,157.90685 -2.82942,1.32567 v -1.32567 z"
|
||||
id="path7-7-4-6"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="fill:#f1b920;fill-opacity:1;stroke:none;stroke-width:3.08649;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
|
||||
d="m 104.02667,157.90685 -2.82942,1.32567 v -1.32567 z"
|
||||
id="path7-7-4-6-4"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:none;stroke:#f1b920;stroke-width:2.8;stroke-linecap:square;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path1-2"
|
||||
sodipodi:type="arc"
|
||||
sodipodi:cx="80.909386"
|
||||
sodipodi:cy="164.243"
|
||||
sodipodi:rx="27.473787"
|
||||
sodipodi:ry="27.473787"
|
||||
sodipodi:start="0.88766203"
|
||||
sodipodi:end="5.3926089"
|
||||
sodipodi:open="true"
|
||||
sodipodi:arc-type="arc"
|
||||
d="m 98.251584,185.55161 a 27.473787,27.473787 0 0 1 -37.401681,-2.5356 27.473787,27.473787 0 0 1 -0.05463,-37.48749 27.473787,27.473787 0 0 1 37.394133,-2.64459"
|
||||
inkscape:label="C"
|
||||
transform="translate(-44.23491,-34.941124)" />
|
||||
</g>
|
||||
<g
|
||||
id="g5"
|
||||
inkscape:label="SCOOP"
|
||||
transform="translate(-41.759516,19.078752)"
|
||||
style="stroke-width:2.8;stroke-dasharray:none;stroke:#f1b920;stroke-opacity:1">
|
||||
<path
|
||||
id="path5"
|
||||
style="stroke-width:2.8;stroke-dasharray:none;stroke:#f1b920;stroke-opacity:1;fill:none;stroke-linecap:round;stroke-linejoin:miter"
|
||||
d="m 223.26487,111.87329 h -3.79629 V 75.578662 h 3.79629 m -2e-5,0.0027 a 18.145983,18.145983 0 0 1 18.14395,18.145955 18.145983,18.145983 0 0 1 -18.1439,18.146007 m -3.79632,19.88503 V 74.417195 Z"
|
||||
inkscape:label="P"
|
||||
transform="translate(1.7215938,-30.573483)" />
|
||||
<circle
|
||||
style="fill:none;stroke:#f1b920;stroke-width:2.8;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path1-5-2"
|
||||
cx="189.29701"
|
||||
cy="72.31105"
|
||||
r="27.473787"
|
||||
inkscape:label="O" />
|
||||
<circle
|
||||
style="fill:none;stroke:#f1b920;stroke-width:2.8;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path1-5"
|
||||
cx="148.5"
|
||||
cy="72.31105"
|
||||
r="27.473787"
|
||||
inkscape:label="O" />
|
||||
<path
|
||||
style="fill:none;stroke:#f1b920;stroke-width:2.8;stroke-linecap:square;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path1"
|
||||
sodipodi:type="arc"
|
||||
sodipodi:cx="107.37021"
|
||||
sodipodi:cy="72.311035"
|
||||
sodipodi:rx="27.473787"
|
||||
sodipodi:ry="27.473787"
|
||||
sodipodi:start="0.88766203"
|
||||
sodipodi:end="5.3926089"
|
||||
sodipodi:open="true"
|
||||
sodipodi:arc-type="arc"
|
||||
d="M 124.71241,93.619652 A 27.473787,27.473787 0 0 1 87.310726,91.084051 27.473787,27.473787 0 0 1 87.2561,53.596559 27.473787,27.473787 0 0 1 124.65023,50.951967"
|
||||
inkscape:label="C" />
|
||||
<path
|
||||
id="path2-61"
|
||||
style="stroke-width:3.19748;stroke-dasharray:none;stroke:#f1b920;stroke-opacity:1;fill:none;stroke-linecap:square"
|
||||
inkscape:label="S"
|
||||
transform="matrix(-0.78788884,0.38035921,-0.38288852,-0.78268417,22.680869,-9.7539598)"
|
||||
d="m -3.5754241,-106.90167 a 16.021013,15.82539 0 0 1 -5.6161787,-17.63706 16.021013,15.82539 0 0 1 15.1477854,-10.86074 16.021013,15.82539 0 0 1 15.2358074,10.73993 m -23.0122929,19.05192 a 15.82539,16.021013 89.999998 0 1 5.6161792,17.637058 15.82539,16.021013 89.999998 0 1 -15.1477853,10.860735 15.82539,16.021013 89.999998 0 1 -15.235807,-10.739927" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 24 KiB |
BIN
random/art/solar_eclipse-lossy.webp
Normal file
After Width: | Height: | Size: 689 KiB |
180
random/art/sqp_icon2.svg
Normal file
|
@ -0,0 +1,180 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="512"
|
||||
height="512"
|
||||
viewBox="0 0 135.46667 135.46667"
|
||||
version="1.1"
|
||||
id="svg1"
|
||||
xml:space="preserve"
|
||||
inkscape:export-filename="sqp_icon.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
||||
sodipodi:docname="sqp_icon2.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
|
||||
id="namedview1"
|
||||
pagecolor="#d1d1d1"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:deskcolor="#656565"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:zoom="2.2021886"
|
||||
inkscape:cx="223.64115"
|
||||
inkscape:cy="200.70942"
|
||||
inkscape:window-width="2560"
|
||||
inkscape:window-height="1360"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g10" /><defs
|
||||
id="defs1"><linearGradient
|
||||
id="linearGradient3"
|
||||
inkscape:collect="always"><stop
|
||||
style="stop-color:#eaeaff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3" /><stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4" /></linearGradient><inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect5"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
nodesatellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 | F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 | F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 | F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
|
||||
radius="0"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="false"
|
||||
hide_knots="false" /><inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect4"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
nodesatellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 | F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 | F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 | F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
|
||||
radius="0"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="false"
|
||||
hide_knots="false" /><style
|
||||
id="style1">.cls-1{fill:#414178;}.cls-2{fill:#fff;}.cls-3{fill:#ff738f;}.cls-4{fill:url(#linear-gradient);}.cls-5{fill:#cdb999;}.cls-6{fill:#3ad8ab;}</style><linearGradient
|
||||
id="linear-gradient"
|
||||
x1="138.15854"
|
||||
y1="81.041435"
|
||||
x2="128.51421"
|
||||
y2="122.16921"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-62.896826,-57.679355)"><stop
|
||||
offset="0"
|
||||
stop-color="#3ad8ab"
|
||||
id="stop1"
|
||||
style="stop-color:#3ad8ab;stop-opacity:1;" /><stop
|
||||
offset="1"
|
||||
stop-color="#3ad8ab"
|
||||
stop-opacity="0.8"
|
||||
id="stop2"
|
||||
style="stop-color:#00d098;stop-opacity:1;" /></linearGradient><linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3"
|
||||
id="linearGradient4"
|
||||
x1="67.733337"
|
||||
y1="109.32782"
|
||||
x2="67.733337"
|
||||
y2="26.138847"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.1720594,0,0,0.87596817,-11.34364,2.9277044)" /></defs><g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"><path
|
||||
id="path756"
|
||||
d="m 79.572335,23.942388 -1.58956,0.710551 c -2.00307,0.89567 -3.61693,2.515536 -4.40955,4.42557 l -0.5793,1.394746 -21.25813,-1.042312 c -22.97694,-1.126927 -22.34379,-1.12875 -25.01191,0.0708 -2.69392,1.210831 -5.04991,3.819696 -6.1066,6.761861 -0.53033,1.476452 -0.58658,2.262349 -2.00867,28.075288 -1.61226,29.265345 -1.60011,27.67468 -0.23047,30.521654 0.12264,0.254819 0.26048,0.508798 0.41186,0.76016 l 4.0504,6.725684 c 1.50004,2.49058 4.32964,4.73766 6.87296,5.37952 0.56805,0.14314 17.63413,1.08778 37.92482,2.09806 31.793282,1.58327 37.096245,1.7978 38.366655,1.55391 4.147,-0.7961 7.68959,-4.03656 8.9917,-8.22482 0.64282,-2.06722 3.44448,-52.753815 3.03289,-54.870035 -0.27969,-1.438231 -0.91964,-2.985923 -1.72651,-4.325834 l -3.9703,-6.592363 c -0.19517,-0.55447 -0.45295,-1.098364 -0.76533,-1.616956 l -4.0504,-6.725686 c -0.78229,-1.299011 -1.9016,-2.438903 -3.20497,-3.185337 l -1.29449,-0.741556 -11.722805,-0.576709 z m 4.0504,6.725687 11.7228,0.576193 11.722285,0.576191 1.2945,0.742075 c 0.11687,0.06693 0.23192,0.137754 0.34571,0.21084 0.0404,0.406921 0.10081,0.670191 0.22066,0.869197 l 4.0504,6.725688 c 0.10694,0.177586 0.26137,0.306084 0.49041,0.4439 0.13489,0.08113 0.26997,0.173914 0.40566,0.275952 0.0383,0.15732 0.0732,0.314043 0.10335,0.469222 0.41159,2.115956 -2.38955,52.80333 -3.03237,54.870555 -1.30212,4.188002 -4.84469,7.428202 -8.9917,8.224302 -1.2704,0.24389 -6.573375,0.0294 -38.366655,-1.55391 -20.29069,-1.01028 -37.35689,-1.95465 -37.92482,-2.09806 -1.38723,-0.35007 -2.85847,-1.179241 -4.15375,-2.263431 -0.25969,-2.618882 0.0959,-8.542306 1.1498,-27.672212 1.42208,-25.813204 1.47834,-26.598839 2.00867,-28.075289 1.05671,-2.94243 3.41274,-5.551283 6.1066,-6.762379 2.66813,-1.199279 2.03497,-1.197456 25.01191,-0.0708 l 21.25865,1.04283 0.57878,-1.394746 c 0.79262,-1.910036 2.40648,-3.529873 4.40955,-4.42557 z"
|
||||
style="fill:#414178;fill-opacity:1;stroke:#414178;stroke-width:8.33301;stroke-linecap:round;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:label="path756" /><g
|
||||
id="g10"
|
||||
transform="matrix(0.96613466,-0.03611218,0.03145142,0.99925636,3.4209776,1.2477832)"><rect
|
||||
style="vector-effect:non-scaling-stroke;fill:url(#linearGradient4);stroke-width:0.372048;stroke-linecap:round;stroke-linejoin:bevel;-inkscape-stroke:hairline"
|
||||
id="rect1"
|
||||
width="97.502411"
|
||||
height="72.870895"
|
||||
x="19.292641"
|
||||
y="25.824505"
|
||||
ry="11.969079"
|
||||
transform="matrix(0.99650569,0.08352493,-0.08935971,0.99599942,0,0)" /><g
|
||||
id="g4"
|
||||
transform="matrix(1.0451562,0.08760271,-0.09367414,1.0440879,-4.9976177,-15.750105)"><path
|
||||
id="circle107-2"
|
||||
style="display:inline;fill:#ff738f;stroke-width:2.02576"
|
||||
class="cls-3"
|
||||
inkscape:label="Pink Mochi"
|
||||
d="M 80.987328,73.966629 A 24.876339,24.876339 0 0 1 56.110989,98.842968 24.876339,24.876339 0 0 1 31.23465,73.966629 24.876339,24.876339 0 0 1 56.110989,49.09029 24.876339,24.876339 0 0 1 80.987328,73.966629 Z" /><circle
|
||||
class="cls-6"
|
||||
cx="56.110989"
|
||||
cy="73.966629"
|
||||
id="circle109-0"
|
||||
inkscape:label="Green Mochi"
|
||||
r="18.299885"
|
||||
style="display:inline;fill:#3ad8ab;stroke-width:1.49022" /></g><rect
|
||||
style="vector-effect:non-scaling-stroke;fill:#fcfcff;fill-opacity:1;stroke-width:0.550473;stroke-linecap:round;stroke-linejoin:bevel;-inkscape-stroke:hairline"
|
||||
id="rect10"
|
||||
width="37.045361"
|
||||
height="17.497049"
|
||||
x="73.529755"
|
||||
y="18.866802"
|
||||
ry="8.7485247"
|
||||
transform="matrix(0.99650569,0.08352493,-0.08935971,0.99599942,0,0)" /><rect
|
||||
style="vector-effect:non-scaling-stroke;fill:#cdb999;fill-opacity:1;stroke-width:0.347892;stroke-linecap:round;stroke-linejoin:bevel;-inkscape-stroke:hairline"
|
||||
id="rect11"
|
||||
width="30.358732"
|
||||
height="15.953692"
|
||||
x="76.87307"
|
||||
y="21.395151"
|
||||
ry="5.5289593"
|
||||
transform="matrix(0.99650569,0.08352493,-0.08935971,0.99599942,0,0)" /><path
|
||||
id="rect12"
|
||||
style="vector-effect:non-scaling-stroke;fill:#fcfcff;stroke-width:0.245986;stroke-linecap:round;stroke-linejoin:bevel;-inkscape-stroke:hairline"
|
||||
d="m 32.705203,58.02999 c 2.002248,-3.876823 5.139463,-6.243905 8.800829,-7.167168 1.247238,-0.314508 2.457886,-0.67008 3.268086,0.324113 0.810201,0.994193 0.902362,2.936868 -0.343176,3.265031 -5.314374,1.400182 -6.189601,2.155586 -8.800827,7.167168 -0.595013,1.141976 -2.457886,0.67008 -3.268088,-0.324114 -0.810199,-0.994192 -0.110341,-2.386913 0.343176,-3.26503 z"
|
||||
sodipodi:nodetypes="sssssss" /><ellipse
|
||||
style="vector-effect:non-scaling-stroke;fill:#e6e6e6;fill-opacity:1;stroke-width:0.264585;stroke-linecap:round;stroke-linejoin:bevel;-inkscape-stroke:hairline"
|
||||
id="path12"
|
||||
cx="81.800087"
|
||||
cy="25.718088"
|
||||
rx="2.7039952"
|
||||
ry="2.7026045"
|
||||
transform="matrix(0.99650569,0.08352493,-0.08935971,0.99599942,0,0)" /><path
|
||||
sodipodi:type="star"
|
||||
style="fill:#fcff83;fill-opacity:1;stroke:#414178;stroke-width:16.0365;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path780"
|
||||
inkscape:flatsided="false"
|
||||
sodipodi:sides="5"
|
||||
sodipodi:cx="-51.118969"
|
||||
sodipodi:cy="-12.84371"
|
||||
sodipodi:r1="87.426704"
|
||||
sodipodi:r2="43.713352"
|
||||
sodipodi:arg1="0.7104478"
|
||||
sodipodi:arg2="1.3387663"
|
||||
inkscape:rounded="0"
|
||||
inkscape:randomized="0"
|
||||
d="m 15.156585,44.173652 -56.22351,-14.475458 -43.798506,38.109227 -3.60704,-57.9448981 -49.778509,-29.8784549 53.994233,-21.336458 13.033693,-56.575128 36.977315,44.758242 57.833776,-5.086897 -31.1409988,48.9985727 z"
|
||||
transform="matrix(0.27357092,0.00872632,-0.00741076,0.26450988,97.663621,35.688247)"
|
||||
inkscape:transform-center-x="1.6741941"
|
||||
inkscape:transform-center-y="-0.55518275" /></g></g></svg>
|
After Width: | Height: | Size: 10 KiB |
172
random/art/text-gleam.svg
Normal file
|
@ -0,0 +1,172 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 64 64"
|
||||
version="1.1"
|
||||
id="svg11"
|
||||
sodipodi:docname="text-gleam.svg"
|
||||
xml:space="preserve"
|
||||
inkscape:export-filename="text-gleam.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs11"><linearGradient
|
||||
id="a-1"
|
||||
y1="17"
|
||||
x1="40"
|
||||
y2="31"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x2="54"><stop
|
||||
stop-color="#060606"
|
||||
id="stop1-2" /><stop
|
||||
offset="1"
|
||||
stop-opacity="0"
|
||||
id="stop2-9" /></linearGradient><linearGradient
|
||||
id="b-8"
|
||||
y1="392.36"
|
||||
y2="336.36"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x2="0"
|
||||
gradientTransform="translate(-48,-332.36)"><stop
|
||||
stop-color="#ffffff"
|
||||
stop-opacity="0"
|
||||
id="stop3-8" /><stop
|
||||
offset="1"
|
||||
stop-color="#ffffff"
|
||||
stop-opacity=".2"
|
||||
id="stop4-5" /></linearGradient><linearGradient
|
||||
id="linearGradient2"
|
||||
y1="392.36"
|
||||
y2="336.36"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x2="0"
|
||||
gradientTransform="translate(-48-332.36)"><stop
|
||||
stop-color="#ffffff"
|
||||
stop-opacity="0"
|
||||
id="stop1-0" /><stop
|
||||
offset="1"
|
||||
stop-color="#ffffff"
|
||||
stop-opacity=".2"
|
||||
id="stop2-96" /></linearGradient></defs><sodipodi:namedview
|
||||
id="namedview11"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="9.0312498"
|
||||
inkscape:cx="35.211073"
|
||||
inkscape:cy="37.093426"
|
||||
inkscape:window-width="2560"
|
||||
inkscape:window-height="1360"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg11" /><linearGradient
|
||||
id="a"
|
||||
x2="0"
|
||||
y1="3"
|
||||
y2="61"
|
||||
gradientTransform="matrix(1 0 0 -1 0 64)"
|
||||
gradientUnits="userSpaceOnUse"><stop
|
||||
stop-color="#8e44ad"
|
||||
offset="0"
|
||||
id="stop1"
|
||||
style="stop-color:#ffaff3;stop-opacity:1;" /><stop
|
||||
stop-color="#9b59b6"
|
||||
offset="1"
|
||||
id="stop2"
|
||||
style="stop-color:#fc87f3;stop-opacity:1;" /></linearGradient><linearGradient
|
||||
id="b"
|
||||
x2="0"
|
||||
y1="61"
|
||||
y2="47"
|
||||
gradientTransform="matrix(1 0 0 -1 0 64)"
|
||||
gradientUnits="userSpaceOnUse"><stop
|
||||
stop-color="#d3bdd7"
|
||||
offset="0"
|
||||
id="stop3" /><stop
|
||||
stop-color="#e8d9eb"
|
||||
offset="1"
|
||||
id="stop4" /></linearGradient><linearGradient
|
||||
id="c"
|
||||
x1="40"
|
||||
x2="54"
|
||||
y1="17"
|
||||
y2="31"
|
||||
gradientUnits="userSpaceOnUse"><stop
|
||||
stop-color="#383e51"
|
||||
offset="0"
|
||||
id="stop5" /><stop
|
||||
stop-color="#655c6f"
|
||||
stop-opacity="0"
|
||||
offset="1"
|
||||
id="stop6" /></linearGradient><path
|
||||
d="m10 61v-58h30l14 14v44h-14z"
|
||||
fill="url(#a)"
|
||||
id="path6" /><g
|
||||
transform="scale(1 -1)"
|
||||
id="g8"><path
|
||||
d="m10-4h30v1h-30z"
|
||||
fill="#fff"
|
||||
fill-opacity=".412"
|
||||
id="path7" /><path
|
||||
d="m10-61h44v1h-44z"
|
||||
fill="#2e3132"
|
||||
fill-opacity=".294"
|
||||
id="path8" /></g><g
|
||||
fill-rule="evenodd"
|
||||
id="g10"
|
||||
inkscape:label="corner"
|
||||
style="display:inline"><path
|
||||
opacity="0.5"
|
||||
d="M 54,17 40,3 v 14 z"
|
||||
id="path5-3"
|
||||
inkscape:label="path5"
|
||||
style="fill:#000000;fill-opacity:1" /><path
|
||||
opacity="0.1"
|
||||
fill="url(#a)"
|
||||
d="M 40,17 54,31 V 17 Z"
|
||||
id="path6-3"
|
||||
style="fill:url(#a-1)" /></g><g
|
||||
style="fill:#584355;fill-opacity:1"
|
||||
id="g11"
|
||||
transform="matrix(0.01116428,0,0,0.01116428,20.254716,20.751677)"
|
||||
inkscape:label="lucy"><path
|
||||
d="m 897.60882,-137.57213 c -57.93243,10.21662 -110.88606,48.680248 -132.81039,110.800801 L 594.00444,457.14847 c -16.65206,47.17907 -52.97336,84.74275 -99.59793,103.01071 L 16.151066,747.52982 C -106.57208,795.61022 -130.30371,964.40783 -25.68264,1044.3145 l 407.93518,311.5459 c 19.64142,14.9874 35.81902,34.0348 47.42615,55.8548 11.60714,21.8083 18.37236,45.867 19.83282,70.529 l 30.40406,512.1129 c 7.79995,131.3836 161.04869,206.1235 269.64835,131.3256 v -0.011 l 422.92028,-291.3616 v -0.012 c 20.3583,-14.0362 43.5123,-23.5251 67.861,-27.8172 24.3604,-4.292 49.3587,-3.2944 73.29,2.9348 v 0 l 497.0558,129.1216 c 127.6251,33.1649 246.0744,-89.4954 208.4666,-215.6357 v 0.012 L 1872.6127,1231.275 v 0 c -7.0645,-23.676 -8.9321,-48.5932 -5.4869,-73.0695 3.4453,-24.4648 12.1338,-47.8972 25.4739,-68.6962 v -0.012 l 276.7802,-432.31184 -0.012,-0.002 C 2240.361,546.31131 2160.343,395.8153 2028.5766,392.61018 l -513.4933,-12.47366 c -50.0547,-1.21571 -97.0354,-24.09009 -128.8083,-62.72562 L 1060.2873,-78.912485 C 1018.4455,-129.78389 955.52733,-147.81392 897.59025,-137.59649 M 681.49294,488.00609 v -0.002"
|
||||
fill="#151515"
|
||||
id="path2-4"
|
||||
style="fill:#584355;fill-opacity:1;stroke-width:1.16001"
|
||||
sodipodi:nodetypes="ccccsccccccccccscccccscccccccccccc" /><path
|
||||
d="m 920.90075,35.13245 c -49.19503,8.67575 -94.16219,41.33826 -112.77988,94.0898 l -145.03472,410.9347 c -14.14061,40.06354 -44.98388,71.96184 -84.57654,87.47462 L 172.38485,786.74287 C 68.170861,827.57177 48.018461,970.91122 136.86053,1038.7662 l 346.41026,264.5585 c 16.67905,12.727 30.41672,28.9017 40.27328,47.4307 9.85658,18.5192 15.60143,38.9494 16.84163,59.8919 l 25.81848,434.8756 c 6.6236,111.5683 136.75925,175.0358 228.97987,111.5191 v -0.012 l 359.13515,-247.4165 v -0.012 c 17.2877,-11.9192 36.9497,-19.9771 57.6261,-23.6218 20.6864,-3.6448 41.9145,-2.7976 62.2365,2.4921 v 0 l 422.0896,109.6475 c 108.3765,28.1628 208.9613,-75.9976 177.0255,-183.1134 v 0.012 L 1748.854,1197.5287 v 0 c -5.999,-20.1051 -7.585,-41.2643 -4.6593,-62.0491 2.9255,-20.775 10.3038,-40.6733 21.6319,-58.3354 v -0.012 l 235.0361,-367.11035 -0.012,-0.002 c 60.2858,-94.15034 -7.6638,-221.94846 -119.5571,-224.67021 l -436.048,-10.5924 c -42.5055,-1.03231 -82.4004,-20.4568 -109.3814,-53.26524 L 1059.0439,84.944988 C 1023.5128,41.746076 970.08394,26.435332 920.88491,35.111796 M 737.37959,566.36065 v -0.002"
|
||||
fill="#151515"
|
||||
id="path2-4-4"
|
||||
style="fill:#fe9df3;fill-opacity:1;stroke-width:0.98506"
|
||||
sodipodi:nodetypes="ccccsccccccccccscccccscccccccccccc" /><path
|
||||
d="M 918.91,20.3875 C 868.969,29.1948 823.32,62.3526 804.42,115.904 L 657.186,533.07 c -14.355,40.671 -45.666,73.053 -85.859,88.801 L 159.044,783.395 C 53.2498,824.843 32.7918,970.356 122.981,1039.24 l 351.663,268.57 c 16.932,12.92 30.878,29.34 40.884,48.15 10.006,18.8 15.838,39.54 17.097,60.8 l 26.21,441.47 c 6.724,113.26 138.833,177.69 232.452,113.21 l 0.002,-0.01 364.581,-251.17 v -0.01 c 17.55,-12.1 37.51,-20.28 58.5,-23.98 21,-3.7 42.55,-2.84 63.18,2.53 v 0 l 428.49,111.31 c 110.02,28.59 212.13,-77.15 179.71,-185.89 v 0.01 l -126.33,-423.82 v 0 c -6.09,-20.41 -7.7,-41.89 -4.73,-62.99 2.97,-21.09 10.46,-41.29 21.96,-59.22 v -0.01 l 238.6,-372.677 -0.01,-0.002 c 61.2,-95.578 -7.78,-225.314 -121.37,-228.077 l -442.66,-10.753 c -43.15,-1.048 -83.65,-20.767 -111.04,-54.073 L 1059.15,70.9554 C 1023.08,27.1014 968.841,11.5585 918.896,20.3665 m 13.444,76.2469 c 22.695,-4.0023 47.479,3.8376 65.025,25.1656 l 281.015,341.643 c 42.14,51.241 104.57,81.62 170.88,83.233 l 442.66,10.753 c 55.43,1.346 85.71,58.488 55.94,104.974 l -238.59,372.678 c -35.79,55.87 -45.47,124.63 -26.53,188.2 l 126.34,423.81 c 15.73,52.78 -29.25,99.55 -82.93,85.61 v 0 l -428.49,-111.32 c -64.21,-16.69 -132.57,-4.63 -187.2,33.02 l -364.576,251.17 c -45.679,31.47 -103.939,2.9 -107.208,-52.07 l -26.207,-441.47 c -3.932,-66.23 -36.555,-127.51 -89.283,-167.79 L 171.524,975.65 C 127.662,942.151 136.58,878.1 188.203,857.867 L 600.485,696.341 c 61.771,-24.202 110.04,-74.101 132.123,-136.67 v -0.002 L 879.842,142.504 c 9.192,-26.041 29.798,-41.886 52.493,-45.8886"
|
||||
fill="#151515"
|
||||
id="path2"
|
||||
style="display:inline;fill:#584355;fill-opacity:1"
|
||||
sodipodi:nodetypes="ccccsccccccccccscccccscccccccccccccccccccscccsccccccsccc" /><path
|
||||
d="m 1429.4397,1064.9884 c 60.6997,-10.6967 101.2419,-68.59217 90.531,-129.29465 -10.6967,-60.7039 -68.5836,-101.23614 -129.2975,-90.52954 -60.6996,10.70519 -101.2418,68.595 -90.5451,129.29889 10.7108,60.7082 68.5978,101.2361 129.3116,90.5253 z"
|
||||
fill="#151515"
|
||||
id="path4"
|
||||
style="fill:#584355;fill-opacity:1;stroke-width:1.42054" /><path
|
||||
d="m 796.37824,1176.6163 c 60.6997,-10.6967 101.2419,-68.5922 90.531,-129.2947 -10.6967,-60.70387 -68.5836,-101.23611 -129.2975,-90.52951 -60.6996,10.70519 -101.2418,68.59501 -90.5451,129.29891 10.7108,60.7082 68.5978,101.2361 129.3116,90.5253 z"
|
||||
fill="#151515"
|
||||
id="path4-7"
|
||||
style="fill:#584355;fill-opacity:1;stroke-width:1.42054" /><path
|
||||
d="m 1025.5354,1116.3875 c -5.9601,2.2989 -11.4094,5.7533 -16.0437,10.1566 -4.6222,4.4032 -8.3443,9.6822 -10.92293,15.5207 -2.59085,5.8507 -4.00182,12.1393 -4.15995,18.5251 -0.15813,6.3859 0.94876,12.7475 3.24768,18.7076 6.0088,15.5329 15.0099,29.74 26.5045,41.8063 v 0 c 11.4945,12.0663 25.2516,21.7363 40.4925,28.4749 l 0.012,0.012 c 15.2166,6.7386 31.6132,10.412 48.2651,10.8134 h 0.012 0.024 c 16.6398,0.3893 33.1944,-2.4935 48.7273,-8.4902 h 0.012 c 15.5329,-5.9966 29.74,-14.9977 41.7941,-26.4923 h 0.012 v -0.012 c 12.0541,-11.4824 21.7242,-25.2395 28.4628,-40.4561 6.763,-15.241 10.4364,-31.674 10.8256,-48.3381 0.3041,-12.8934 -4.5248,-25.3854 -13.4286,-34.727 -8.9159,-9.3295 -21.1646,-14.7423 -34.0702,-15.0464 -6.3859,-0.1581 -12.7353,0.9609 -18.6954,3.2599 -5.9602,2.311 -11.4095,5.7655 -16.0316,10.1809 -4.6222,4.4032 -8.3321,9.6822 -10.9108,15.5329 -2.5786,5.8385 -3.9896,12.1392 -4.1356,18.5251 -0.097,3.8559 -0.9487,7.6631 -2.5178,11.1905 v 0.012 l -0.012,0.024 c -1.5691,3.5396 -3.8194,6.7386 -6.617,9.4146 -2.8098,2.676 -6.1061,4.7681 -9.7187,6.1548 l -0.024,0.012 c -3.6248,1.3988 -7.4806,2.0678 -11.3608,1.9826 -3.868,-0.097 -7.6874,-0.9609 -11.227,-2.53 h -0.024 l -0.012,-0.012 c -3.5396,-1.5691 -6.7265,-3.8072 -9.4025,-6.6048 v -0.012 0 c -2.6759,-2.8097 -4.7681,-6.1061 -6.1669,-9.7308 -2.2989,-5.9602 -5.7534,-11.4095 -10.1566,-16.0316 -4.4154,-4.6222 -9.6822,-8.3443 -15.5329,-10.9229 -5.8385,-2.5909 -12.1392,-4.0019 -18.5251,-4.16 -6.3859,-0.1581 -12.7353,0.9488 -18.6955,3.2599 z"
|
||||
fill="#151515"
|
||||
id="path5"
|
||||
style="fill:#584355;fill-opacity:1;stroke-width:1.21636" /></g><use
|
||||
fill="url(#b)"
|
||||
xlink:href="#c"
|
||||
id="use7"
|
||||
style="fill:url(#b-8)" /></svg>
|
After Width: | Height: | Size: 11 KiB |
|
@ -1 +0,0 @@
|
|||
/media/storage/
|
|
@ -5,75 +5,87 @@
|
|||
<link rel="icon" href="assets/icon.gif">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<script type="text/javascript">
|
||||
var videoURLs = [
|
||||
"hosted_files/misc/DangoVids/uukowo.mp4"
|
||||
, "hosted_files/misc/DangoVids/whatifweheldhandsnexttothecityanimeopeningfloshed.mp4"
|
||||
, "hosted_files/misc/DangoVids/Stare_poke_No.1_05312020_by_dango_8015.mp4"
|
||||
, "hosted_files/misc/DangoVids/Space_Purple (2).mp4"
|
||||
, "hosted_files/misc/DangoVids/Space_Purple (1).mp4"
|
||||
, "hosted_files/misc/DangoVids/Space_Purple (1).mp4"
|
||||
, "hosted_files/misc/DangoVids/osaka (1).mp4"
|
||||
, "hosted_files/misc/DangoVids/niikurayeet_1.mp4"
|
||||
, "hosted_files/misc/DangoVids/mandelcity.mp4"
|
||||
, "hosted_files/misc/DangoVids/ezgif.com-gif-maker-Recovered.mp4"
|
||||
, "hosted_files/misc/DangoVids/dgo.mp4"
|
||||
, "hosted_files/misc/DangoVids/dangodreamarchive2.mp4"
|
||||
, "hosted_files/misc/DangoVids/Comp_1_1.mp4"
|
||||
, "hosted_files/misc/DangoVids/Comp_1.mp4"
|
||||
, "hosted_files/misc/DangoVids/CirniumVibe.mp4"
|
||||
, "hosted_files/misc/DangoVids/alternate.mp4"
|
||||
, "hosted_files/misc/DangoVids/2020-08-25_17-38-44.mp4"
|
||||
, "hosted_files/misc/DangoVids/2020-01-12_00-18-50_1_1.mp4"
|
||||
, "hosted_files/misc/DangoVids/0001-0184.mp4"
|
||||
, "hosted_files/misc/DangoVids/supernano.mp4"
|
||||
, "hosted_files/misc/DangoVids/wakont.mp4"
|
||||
, "hosted_files/misc/DangoVids/Comp_1_1 (4).mp4"
|
||||
, "hosted_files/misc/DangoVids/maybenexttime13.mp4"
|
||||
, "hosted_files/misc/DangoVids/2020-01-07_17-33-19.mp4"
|
||||
, "hosted_files/misc/DangoVids/pillarsnowmen.mp4"
|
||||
, "hosted_files/misc/DangoVids/22244_1.mp4"
|
||||
, "hosted_files/misc/DangoVids/miOO.mp4"
|
||||
, "hosted_files/misc/DangoVids/2020-02-14_16-28-26.mp4"
|
||||
, "hosted_files/misc/DangoVids/ilied.mp4"
|
||||
, "hosted_files/misc/DangoVids/sleeping_interruptions_.mp4"
|
||||
, "hosted_files/misc/DangoVids/you.mp4"
|
||||
, "hosted_files/misc/DangoVids/unknown.mp4"
|
||||
, "hosted_files/misc/DangoVids/622977479501414400.mp4"
|
||||
, "hosted_files/misc/DangoVids/22244.mp4"
|
||||
, "hosted_files/misc/DangoVids/Comp_1 (4).mp4"
|
||||
, "hosted_files/misc/DangoVids/Comp_1 (3).mp4"
|
||||
, "hosted_files/misc/DangoVids/oneddd.mp4"
|
||||
, "hosted_files/misc/DangoVids/atwhatcost.mp4"
|
||||
, "hosted_files/misc/DangoVids/melobyte3s.mp4"
|
||||
, "hosted_files/misc/DangoVids/0001-0250.mp4"
|
||||
, "hosted_files/misc/DangoVids/milk.mp4"
|
||||
, "hosted_files/misc/DangoVids/milk_1.mp4"
|
||||
, "hosted_files/misc/DangoVids/Comp_1 (2).mp4"
|
||||
, "hosted_files/misc/DangoVids/Comp_1_1 (3).mp4"
|
||||
, "hosted_files/misc/DangoVids/thefee_1.mp4"
|
||||
, "hosted_files/misc/DangoVids/mp4_1_1_1.mp4"
|
||||
, "hosted_files/misc/DangoVids/2020-01-12_00-18-50_1_1_1.mp4"
|
||||
, "hosted_files/misc/DangoVids/eab136ceac851751.mp4"
|
||||
, "hosted_files/misc/DangoVids/Comp_1_2.mp4"
|
||||
, "hosted_files/misc/DangoVids/Hunting.mp4"
|
||||
, "hosted_files/misc/DangoVids/Lost_Sucharaka_Shaded.mp4"
|
||||
, "hosted_files/misc/DangoVids/current_atmosphere.mp4"
|
||||
, "hosted_files/misc/DangoVids/iu_2.mp4"
|
||||
, "hosted_files/misc/DangoVids/yu.mp4"
|
||||
, "hosted_files/misc/DangoVids/2020-08-12_00-55-22 (1).mp4"
|
||||
, "hosted_files/misc/DangoVids/2020-08-21_05-41-05.mp4"
|
||||
, "hosted_files/misc/DangoVids/2020-07-14_18-00-13.mp4"
|
||||
, "hosted_files/misc/DangoVids/chris.mp4"
|
||||
, "hosted_files/misc/DangoVids/snowmangoodbye.mp4"
|
||||
, "hosted_files/misc/DangoVids/snowmangreetings.mp4"
|
||||
, "hosted_files/misc/DangoVids/new_footage_of_the_falcon_9_test_launch.mp4"
|
||||
, "hosted_files/misc/DangoVids/panuki.mp4"
|
||||
, "hosted_files/misc/DangoVids/depthtest.mp4"
|
||||
, "hosted_files/misc/DangoVids/GreenCirno.mp4"
|
||||
const videoURLs = [
|
||||
"0001-0184.mp4",
|
||||
"0001-0200.mp4",
|
||||
"0001-0250.mp4",
|
||||
"2020-01-07_17-33-19.mp4",
|
||||
"2020-01-12_00-18-50_1_1.mp4",
|
||||
"2020-01-12_00-18-50_1_1_1.mp4",
|
||||
"2020-02-14_16-28-26.mp4",
|
||||
"2020-07-14_18-00-13.mp4",
|
||||
"2020-08-12_00-55-22 (1).mp4'",
|
||||
"2020-08-21_05-41-05.mp4",
|
||||
"2020-08-25_17-38-44.mp4",
|
||||
"2020-09-20_19-59-11.mp4",
|
||||
"22244.mp4",
|
||||
"22244_1.mp4",
|
||||
"622977479501414400.mp4",
|
||||
"CirniumVibe.mp4",
|
||||
"Comp_1 (2).mp4'",
|
||||
"Comp_1 (3).mp4'",
|
||||
"Comp_1 (4).mp4'",
|
||||
"Comp_1.mp4",
|
||||
"Comp_1_1 (3).mp4'",
|
||||
"Comp_1_1 (4).mp4'",
|
||||
"Comp_1_1.mp4",
|
||||
"Comp_1_2.mp4",
|
||||
"GreenCirno.mp4",
|
||||
"Hunting.mp4",
|
||||
"Lost_Sucharaka_Shaded.mp4",
|
||||
"Space_Fuzz.mp4",
|
||||
"Space_Purple (1).mp4'",
|
||||
"Space_Purple (2).mp4'",
|
||||
"Stare_poke_No.1_05312020_by_dango_8015.mp4",
|
||||
"alternate.mp4",
|
||||
"atwhatcost.mp4",
|
||||
"bonk.mp4",
|
||||
"chris.mp4",
|
||||
"current_atmosphere.mp4",
|
||||
"dangodreamarchive2.mp4",
|
||||
"demont.mp4",
|
||||
"depthtest.mp4",
|
||||
"dgo.mp4",
|
||||
"eab136ceac851751.mp4",
|
||||
"ezgif.com-gif-maker-Recovered.mp4",
|
||||
"frog.mp4",
|
||||
"fukocompare.mp4",
|
||||
"how_the_cult_ends.mp4",
|
||||
"ilied.mp4",
|
||||
"iu_2.mp4",
|
||||
"mandelcity.mp4",
|
||||
"maybenexttime13.mp4",
|
||||
"me11lobytes.mp4",
|
||||
"melobyt2es.mp4",
|
||||
"melobyte3s.mp4",
|
||||
"miOO.mp4",
|
||||
"milk.mp4",
|
||||
"milk_1.mp4",
|
||||
"mp4_1_1_1.mp4",
|
||||
"new_footage_of_the_falcon_9_test_launch.mp4",
|
||||
"niikurayeet_1.mp4",
|
||||
"oneddd.mp4",
|
||||
"osaka (1).mp4'",
|
||||
"panuki.mp4",
|
||||
"pillarsnowmen.mp4",
|
||||
"sleeping_interruptions_.mp4",
|
||||
"snowmangoodbye.mp4",
|
||||
"snowmangreetings.mp4",
|
||||
"supernano.mp4",
|
||||
"thefee_1.mp4",
|
||||
"trivv.mp4",
|
||||
"unknown.mp4",
|
||||
"uukowo.mp4",
|
||||
"video0 - 2020-10-21T103054.345.mp4'",
|
||||
"wakont.mp4",
|
||||
"whatifweheldhandsnexttothecityanimeopeningfloshed.mp4",
|
||||
"you.mp4",
|
||||
"yu.mp4",
|
||||
"zip_file.mp4"
|
||||
];
|
||||
|
||||
function getImageTag() {
|
||||
var video = '<video oncontextmenu="return false;" class="video" id="video1" muted autoplay src=\"';
|
||||
var video = '<video oncontextmenu="return false;" class="video" id="video1" muted autoplay src=\"/assets/hosted_files/misc/DangoVids/';
|
||||
var randomIndex = Math.floor(Math.random() * videoURLs.length);
|
||||
video += videoURLs[randomIndex];
|
||||
video += '\"/>';
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
/var/www/snek/games/snake
|
|
@ -78,6 +78,11 @@ A place for personal projects and things. Enjoy!">
|
|||
<h3>welcome.sh</h3>
|
||||
<p>A showcase for my welcome.sh project</p>
|
||||
</section></a>
|
||||
|
||||
<a href="card"><section class="clickable">
|
||||
<h3>Oversimplified card thing</h3>
|
||||
<p>A simple webpage which mimics a lot of pages I've seen which are trying to be minimalistic or something.</p>
|
||||
</section></a>
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
|
|
Before Width: | Height: | Size: 320 B After Width: | Height: | Size: 1.1 KiB |
29
random/music/index.html
Executable file
|
@ -0,0 +1,29 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="https://g2games.dev/assets/main-style.css">
|
||||
<link rel="stylesheet" href="/assets/lib/scripts/music_status.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="music_tile">
|
||||
<p id="musicStatus">Currently listening to:</p>
|
||||
<div style="display:grid;grid-template-columns: 80% 20%;">
|
||||
<p class="track_name" id="track">???</p>
|
||||
<div id="playingBars"></div>
|
||||
</div>
|
||||
<hr>
|
||||
<div style="display:flex;flex-direction:column;">
|
||||
<p class="artist_name" id="albumArtist">???</p>
|
||||
<p class="album_name" id="albumTitle">???</p>
|
||||
</div>
|
||||
<div class="artwork_container">
|
||||
<p id="mainArtworkPlaceholder"
|
||||
style="font-size:4em;margin:auto;width:fit-content;font-family:'Montserrat';font-weight:bold;">?</p>
|
||||
<img id="mainArtwork" src="" style="display:none;"/>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
<script src="https://g2games.dev/assets/lib/scripts/music_status.js"></script>
|
||||
</html>
|
23
random/pinger/index.html
Executable file
|
@ -0,0 +1,23 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Pings</title>
|
||||
<script>
|
||||
function ping() {
|
||||
let music = new Audio('ping.mp3');
|
||||
music.loop = false;
|
||||
music.play();
|
||||
setInterval(function() {
|
||||
console.log("thing");
|
||||
music.play();
|
||||
}, 180000);
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body style="width:100vw;height:100vh;">
|
||||
<div style="width: fit-content;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);">
|
||||
<input type="button" value="sound" onclick="ping()" />
|
||||
</div>
|
||||
</body>
|
||||
</html>
|