Compare commits
10 commits
749d22b8b8
...
9e9e4f6952
Author | SHA1 | Date | |
---|---|---|---|
9e9e4f6952 | |||
fd19da8f38 | |||
b1cf3f6646 | |||
28eb19ff41 | |||
7341f49b5a | |||
25b3261079 | |||
18bcac9c64 | |||
f4aef5ebfe | |||
bff00da9fd | |||
16158415e7 |
4
.gitattributes
vendored
|
@ -1,4 +1,4 @@
|
||||||
*.png filter=lfs diff=lfs merge=lfs -text
|
*.png filter=lfs diff=lfs merge=lfs -text
|
||||||
*.gif filter=lfs diff=lfs merge=lfs -text
|
*.gif filter=lfs diff=lfs merge=lfs -text
|
||||||
*.mp3 filter=lfs diff=lfs merge=lfs -text
|
*.webp filter=lfs diff=lfs merge=lfs -text
|
||||||
*.ogg filter=lfs diff=lfs merge=lfs -text
|
*.kra filter=lfs diff=lfs merge=lfs -text
|
||||||
|
|
6
.gitignore
vendored
|
@ -1,3 +1,8 @@
|
||||||
|
style/fonts/**/*.eot
|
||||||
|
style/fonts/**/*.svg
|
||||||
|
style/fonts/**/*.ttf
|
||||||
|
style/fonts/**/*.woff
|
||||||
|
style/fonts/**/*.woff2
|
||||||
fonts/**/*.eot
|
fonts/**/*.eot
|
||||||
fonts/**/*.svg
|
fonts/**/*.svg
|
||||||
fonts/**/*.ttf
|
fonts/**/*.ttf
|
||||||
|
@ -6,3 +11,4 @@ fonts/**/*.woff2
|
||||||
_build
|
_build
|
||||||
_tmp
|
_tmp
|
||||||
.directory
|
.directory
|
||||||
|
*~
|
||||||
|
|
22
.well-known/button.json
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
{
|
||||||
|
"$schema": "https://codeberg.org/LunarEclipse/well-known-button/raw/branch/main/drafts/button-2024-06.schema.json",
|
||||||
|
"default": "ce20aa64-4e95-11ef-b42c-838186663ff7",
|
||||||
|
"buttons": [
|
||||||
|
{
|
||||||
|
"id": "ce20aa64-4e95-11ef-b42c-838186663ff7",
|
||||||
|
"uri": "https://yummy.cricket/8831.png",
|
||||||
|
"alt": "the gec zone",
|
||||||
|
"link": "https://yummy.cricket",
|
||||||
|
"sha256": "1357dc055ec9bcae24826a689a72d6245779b7aac7f6256c2ee2a102233de0af",
|
||||||
|
"animations": "none"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "220a360e-4e96-11ef-bf9c-0b97c65ca05d",
|
||||||
|
"uri": "https://yummy.cricket/8831-quox.png",
|
||||||
|
"alt": "the quog zone",
|
||||||
|
"link": "https://yummy.cricket",
|
||||||
|
"sha256": "89ab02e44093ce81bb02cdfb5c743a83db4f1faad161d2f1aacbf519635915ba",
|
||||||
|
"animations": "none"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
BIN
8831-quox.png
(Stored with Git LFS)
Normal file
BIN
8831.png
(Stored with Git LFS)
Normal file
112
ANGELF~1.CSS
|
@ -1,112 +0,0 @@
|
||||||
:root {
|
|
||||||
font: 18pt serif;
|
|
||||||
color: white;
|
|
||||||
background: url(NEWFOL~1/GEC.JPG);
|
|
||||||
}
|
|
||||||
|
|
||||||
main {
|
|
||||||
width: 30em;
|
|
||||||
padding: 1rem;
|
|
||||||
margin: 1rem auto;
|
|
||||||
border: 8px outset white;
|
|
||||||
background: #639;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
header, h1, h2, h3 { text-align: center; }
|
|
||||||
h1 { margin-top: 0; }
|
|
||||||
header { overflow: hidden; }
|
|
||||||
|
|
||||||
@media not (prefers-reduced-motion) {
|
|
||||||
@keyframes marquee {
|
|
||||||
from { transform: translateX(100%); }
|
|
||||||
to { transform: translateX(-100%); }
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 {
|
|
||||||
animation-name: marquee;
|
|
||||||
animation-timing-function: linear;
|
|
||||||
animation-duration: 7.5s;
|
|
||||||
animation-iteration-count: infinite;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#mlemtext {
|
|
||||||
position: relative;
|
|
||||||
width: 80%;
|
|
||||||
margin: 0 auto;
|
|
||||||
height: 3em;
|
|
||||||
}
|
|
||||||
.niss, .nisse { position: absolute }
|
|
||||||
.niss { left: 0 }
|
|
||||||
.nisse { right: 0 }
|
|
||||||
|
|
||||||
header picture, header img {
|
|
||||||
display: block;
|
|
||||||
margin: 0 auto;
|
|
||||||
bacground: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
#mlem + p { margin-top: 0; }
|
|
||||||
|
|
||||||
|
|
||||||
img[src$='.svg'] { height: 1em; }
|
|
||||||
|
|
||||||
a {
|
|
||||||
color: #9cf;
|
|
||||||
font-weight: bold;
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
table {
|
|
||||||
width: 80%;
|
|
||||||
border-spacing: 0.75em 0.15em ;
|
|
||||||
}
|
|
||||||
|
|
||||||
th {
|
|
||||||
text-align: right;
|
|
||||||
font-weight: normal;
|
|
||||||
}
|
|
||||||
td {
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
@font-face {
|
|
||||||
font-family: 'W95FA';
|
|
||||||
src: url(NEWFOL~1/W95FA.otf) format('opentype'),
|
|
||||||
url(NEWFOL~1/w95fa.woff) format('woff'),
|
|
||||||
url(NEWFOL~1/w95fa.woff2) format('woff2');
|
|
||||||
}
|
|
||||||
|
|
||||||
#links {
|
|
||||||
position: absolute;
|
|
||||||
top: 0; left: 0;
|
|
||||||
font-family: 'W95FA', sans-serif;
|
|
||||||
font-size: 13pt;
|
|
||||||
padding: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
#links li {
|
|
||||||
display: block;
|
|
||||||
width: 5em;
|
|
||||||
text-align: center;
|
|
||||||
margin-bottom: 1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
#links img {
|
|
||||||
display: block;
|
|
||||||
margin: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
#links a {
|
|
||||||
font-weight: normal;
|
|
||||||
color: white;
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
#links span {
|
|
||||||
background: black;
|
|
||||||
padding: 0 0.25ch;
|
|
||||||
}
|
|
106
ANGELF~1.HTM
|
@ -1,106 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang=en>
|
|
||||||
<meta charset=utf-8>
|
|
||||||
|
|
||||||
<link rel=me href=https://chitter.xyz/@niss>
|
|
||||||
<link rel=me href=https://cohost.org/niss>
|
|
||||||
|
|
||||||
<link rel=icon href=media/icon.svg>
|
|
||||||
|
|
||||||
<link rel=stylesheet href=ANGELF~1.CSS>
|
|
||||||
<title>🦎 the gec zone 🦎</title>
|
|
||||||
|
|
||||||
<main>
|
|
||||||
<header>
|
|
||||||
<h1>so basically? <b>im gecs</b></h1>
|
|
||||||
<div id=mlem>
|
|
||||||
<div id=mlemtext>
|
|
||||||
<p class='mlem-text niss'>“mlem”</p>
|
|
||||||
<p class='mlem-text nisse'>“mlem also”</p>
|
|
||||||
</div>
|
|
||||||
<a href=https://gallery.niss.website/main/niss/2020-06-20-mlem>
|
|
||||||
<picture>
|
|
||||||
<source srcset=media/mlem_static.png media='(prefers-reduced-motion)'>
|
|
||||||
<img src=media/mlem.gif alt='— the gecs'>
|
|
||||||
</picture>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
<p>
|
|
||||||
a <b>big one</b> (niss (she/her))
|
|
||||||
and a <b>little one</b> (nisse (he/him))
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<h2>stats</h2>
|
|
||||||
<table>
|
|
||||||
<tr>
|
|
||||||
<th> how to say
|
|
||||||
<td>
|
|
||||||
<a id=soundlink>/nIs/, /nIs@/</a>
|
|
||||||
<audio id=miku>
|
|
||||||
<source src=media/niss-nisse.mp3 type=audio/mpeg>
|
|
||||||
<source src=media/niss-nisse.ogg type=audio/ogg>
|
|
||||||
(<a href=media/niss-nisse.mp3>listen</a>)
|
|
||||||
</audio>
|
|
||||||
<noscript>
|
|
||||||
(<a href=media/niss-nisse.mp3>listen</a>)
|
|
||||||
</noscript>
|
|
||||||
|
|
||||||
<tr><th> prons <td title='she for niss, he for nisse'> she or they
|
|
||||||
<tr><th> quantity <td> 2
|
|
||||||
<tr><th> consistency <td> soft
|
|
||||||
<tr><th> limbs <td> many
|
|
||||||
<tr><th> energy <td> <img src=NEWFOL~1/LOWBATT.GIF alt=low>
|
|
||||||
</table>
|
|
||||||
</section>
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<ul id=links>
|
|
||||||
<li>
|
|
||||||
<a href=https://gallery.niss.website>
|
|
||||||
<img src=NEWFOL~1/PBRUSH.GIF>
|
|
||||||
<span>art</span>
|
|
||||||
</a>
|
|
||||||
<li>
|
|
||||||
<a href=https://git.rhiannon.website/rhi>
|
|
||||||
<img src=NEWFOL~1/PROGRAM.GIF>
|
|
||||||
<span>code</span>
|
|
||||||
</a>
|
|
||||||
<li>
|
|
||||||
<a href=https://lang.niss.website>
|
|
||||||
<img src=NEWFOL~1/QUESTION.GIF>
|
|
||||||
<span>conlangs</span>
|
|
||||||
</a>
|
|
||||||
<li>
|
|
||||||
<a href=where.html>
|
|
||||||
<img src=NEWFOL~1/MAIL.GIF>
|
|
||||||
<span>contact</span>
|
|
||||||
</a>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
<script>
|
|
||||||
window.addEventListener('load', function() {
|
|
||||||
let link = document.getElementById('soundlink');
|
|
||||||
let miku = document.getElementById('miku');
|
|
||||||
|
|
||||||
function play(e) {
|
|
||||||
e.preventDefault();
|
|
||||||
miku.play();
|
|
||||||
}
|
|
||||||
|
|
||||||
// attempt to ensure at least one of the sources is recognised
|
|
||||||
// (and that <audio> is supported)
|
|
||||||
if (!isNaN(miku.duration)) {
|
|
||||||
link.href = '#listen';
|
|
||||||
link.addEventListener('click', play);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
|
|
||||||
|
|
||||||
<!--
|
|
||||||
- miku recorded by @derFisch
|
|
||||||
-->
|
|
33
Makefile
|
@ -1,16 +1,12 @@
|
||||||
FONTS = $(shell find fonts -type f)
|
CSS = $(wildcard style/*.css) $(shell find fonts -type f)
|
||||||
CSS = base.css index.css where.css comms.css ANGELF~1.CSS id.css
|
PAGES = index.html pubkey.txt
|
||||||
PAGES = index.html where.html comms.html ANGELF~1.HTM pubkey.txt id.html
|
MEDIA = \
|
||||||
MEDIA = $(patsubst %,media/%, \
|
$(wildcard media/*.png) $(wildcard media/*.gif) $(wildcard media/*.webp) \
|
||||||
bg.png bg_2x.png bg_dim.png bg_2x_dim.png kesi.png quoxtrans.png \
|
$(wildcard media/flags/*) $(wildcard media/buttons/*) \
|
||||||
mlem.gif mlem_static.png chitter.png lockpen.png \
|
$(wildcard media/icons/*) $(wildcard media/bg/*) 8831.png 8831-quox.png
|
||||||
quobl.png quobl2.png \
|
SCRIPTS = $(patsubst %.ts,%.js,$(wildcard script/*.ts))
|
||||||
) \
|
MISC = $(shell find .well-known -type f)
|
||||||
$(wildcard media/*.svg) $(wildcard media/flags/*)
|
ALL = $(CSS) $(PAGES) $(MEDIA) $(SCRIPTS) $(MISC)
|
||||||
AFMEDIA = $(patsubst %,NEWFOL~1/%, \
|
|
||||||
GEC.JPG PBRUSH.GIF PROGRAM.GIF QUESTION.GIF MAIL.GIF LOWBATT.GIF \
|
|
||||||
W95FA.otf w95fa.woff w95fa.woff2 \
|
|
||||||
)
|
|
||||||
|
|
||||||
BUILDDIR ?= _build
|
BUILDDIR ?= _build
|
||||||
TMPDIR ?= _tmp
|
TMPDIR ?= _tmp
|
||||||
|
@ -22,7 +18,7 @@ REMOTE_DIR ?= yummy
|
||||||
|
|
||||||
all: build
|
all: build
|
||||||
|
|
||||||
build: $(patsubst %,$(BUILDDIR)/%,$(FONTS) $(CSS) $(PAGES) $(MEDIA) $(AFMEDIA))
|
build: $(patsubst %,$(BUILDDIR)/%,$(ALL))
|
||||||
|
|
||||||
upload: build
|
upload: build
|
||||||
@rsync --recursive --partial --progress --copy-links \
|
@rsync --recursive --partial --progress --copy-links \
|
||||||
|
@ -57,10 +53,11 @@ $(BUILDDIR)/%_dim.png: %.png
|
||||||
@echo $(notdir $@)
|
@echo $(notdir $@)
|
||||||
@convert -channel A -evaluate Multiply 0.75 $< $@
|
@convert -channel A -evaluate Multiply 0.75 $< $@
|
||||||
|
|
||||||
$(BUILDDIR)/%.GIF: %.ICO
|
$(BUILDDIR)/%.js: %.ts
|
||||||
@echo $*.GIF
|
tsc --strict --noUncheckedIndexedAccess --noEmitOnError \
|
||||||
@mkdir -p $(dir $@)
|
--lib dom,es2021 --target es2015 \
|
||||||
@convert '$<[0]' $@
|
--outDir $(dir $@) $^
|
||||||
|
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
$(RM) -r $(TMPDIR) $(BUILDDIR)
|
$(RM) -r $(TMPDIR) $(BUILDDIR)
|
||||||
|
|
259
NEWFOL~1/256.gpl
|
@ -1,259 +0,0 @@
|
||||||
GIMP Palette
|
|
||||||
Name: 256
|
|
||||||
Columns: 8
|
|
||||||
0 0 0 color 0
|
|
||||||
0 0 85 color 1
|
|
||||||
0 0 170 color 2
|
|
||||||
0 0 255 color 3
|
|
||||||
0 36 0 color 4
|
|
||||||
0 36 85 color 5
|
|
||||||
0 36 170 color 6
|
|
||||||
0 36 255 color 7
|
|
||||||
0 72 0 color 8
|
|
||||||
0 72 85 color 9
|
|
||||||
0 72 170 color 10
|
|
||||||
0 72 255 color 11
|
|
||||||
0 109 0 color 12
|
|
||||||
0 109 85 color 13
|
|
||||||
0 109 170 color 14
|
|
||||||
0 109 255 color 15
|
|
||||||
0 145 0 color 16
|
|
||||||
0 145 85 color 17
|
|
||||||
0 145 170 color 18
|
|
||||||
0 145 255 color 19
|
|
||||||
0 182 0 color 20
|
|
||||||
0 182 85 color 21
|
|
||||||
0 182 170 color 22
|
|
||||||
0 182 255 color 23
|
|
||||||
0 218 0 color 24
|
|
||||||
0 218 85 color 25
|
|
||||||
0 218 170 color 26
|
|
||||||
0 218 255 color 27
|
|
||||||
0 255 0 color 28
|
|
||||||
0 255 85 color 29
|
|
||||||
0 255 170 color 30
|
|
||||||
0 255 255 color 31
|
|
||||||
36 0 0 color 32
|
|
||||||
36 0 85 color 33
|
|
||||||
36 0 170 color 34
|
|
||||||
36 0 255 color 35
|
|
||||||
36 36 0 color 36
|
|
||||||
36 36 85 color 37
|
|
||||||
36 36 170 color 38
|
|
||||||
36 36 255 color 39
|
|
||||||
36 72 0 color 40
|
|
||||||
36 72 85 color 41
|
|
||||||
36 72 170 color 42
|
|
||||||
36 72 255 color 43
|
|
||||||
36 109 0 color 44
|
|
||||||
36 109 85 color 45
|
|
||||||
36 109 170 color 46
|
|
||||||
36 109 255 color 47
|
|
||||||
36 145 0 color 48
|
|
||||||
36 145 85 color 49
|
|
||||||
36 145 170 color 50
|
|
||||||
36 145 255 color 51
|
|
||||||
36 182 0 color 52
|
|
||||||
36 182 85 color 53
|
|
||||||
36 182 170 color 54
|
|
||||||
36 182 255 color 55
|
|
||||||
36 218 0 color 56
|
|
||||||
36 218 85 color 57
|
|
||||||
36 218 170 color 58
|
|
||||||
36 218 255 color 59
|
|
||||||
36 255 0 color 60
|
|
||||||
36 255 85 color 61
|
|
||||||
36 255 170 color 62
|
|
||||||
36 255 255 color 63
|
|
||||||
72 0 0 color 64
|
|
||||||
72 0 85 color 65
|
|
||||||
72 0 170 color 66
|
|
||||||
72 0 255 color 67
|
|
||||||
72 36 0 color 68
|
|
||||||
72 36 85 color 69
|
|
||||||
72 36 170 color 70
|
|
||||||
72 36 255 color 71
|
|
||||||
72 72 0 color 72
|
|
||||||
72 72 85 color 73
|
|
||||||
72 72 170 color 74
|
|
||||||
72 72 255 color 75
|
|
||||||
72 109 0 color 76
|
|
||||||
72 109 85 color 77
|
|
||||||
72 109 170 color 78
|
|
||||||
72 109 255 color 79
|
|
||||||
72 145 0 color 80
|
|
||||||
72 145 85 color 81
|
|
||||||
72 145 170 color 82
|
|
||||||
72 145 255 color 83
|
|
||||||
72 182 0 color 84
|
|
||||||
72 182 85 color 85
|
|
||||||
72 182 170 color 86
|
|
||||||
72 182 255 color 87
|
|
||||||
72 218 0 color 88
|
|
||||||
72 218 85 color 89
|
|
||||||
72 218 170 color 90
|
|
||||||
72 218 255 color 91
|
|
||||||
72 255 0 color 92
|
|
||||||
72 255 85 color 93
|
|
||||||
72 255 170 color 94
|
|
||||||
72 255 255 color 95
|
|
||||||
109 0 0 color 96
|
|
||||||
109 0 85 color 97
|
|
||||||
109 0 170 color 98
|
|
||||||
109 0 255 color 99
|
|
||||||
109 36 0 color 100
|
|
||||||
109 36 85 color 101
|
|
||||||
109 36 170 color 102
|
|
||||||
109 36 255 color 103
|
|
||||||
109 72 0 color 104
|
|
||||||
109 72 85 color 105
|
|
||||||
109 72 170 color 106
|
|
||||||
109 72 255 color 107
|
|
||||||
109 109 0 color 108
|
|
||||||
109 109 85 color 109
|
|
||||||
109 109 170 color 110
|
|
||||||
109 109 255 color 111
|
|
||||||
109 145 0 color 112
|
|
||||||
109 145 85 color 113
|
|
||||||
109 145 170 color 114
|
|
||||||
109 145 255 color 115
|
|
||||||
109 182 0 color 116
|
|
||||||
109 182 85 color 117
|
|
||||||
109 182 170 color 118
|
|
||||||
109 182 255 color 119
|
|
||||||
109 218 0 color 120
|
|
||||||
109 218 85 color 121
|
|
||||||
109 218 170 color 122
|
|
||||||
109 218 255 color 123
|
|
||||||
109 255 0 color 124
|
|
||||||
109 255 85 color 125
|
|
||||||
109 255 170 color 126
|
|
||||||
109 255 255 color 127
|
|
||||||
145 0 0 color 128
|
|
||||||
145 0 85 color 129
|
|
||||||
145 0 170 color 130
|
|
||||||
145 0 255 color 131
|
|
||||||
145 36 0 color 132
|
|
||||||
145 36 85 color 133
|
|
||||||
145 36 170 color 134
|
|
||||||
145 36 255 color 135
|
|
||||||
145 72 0 color 136
|
|
||||||
145 72 85 color 137
|
|
||||||
145 72 170 color 138
|
|
||||||
145 72 255 color 139
|
|
||||||
145 109 0 color 140
|
|
||||||
145 109 85 color 141
|
|
||||||
145 109 170 color 142
|
|
||||||
145 109 255 color 143
|
|
||||||
145 145 0 color 144
|
|
||||||
145 145 85 color 145
|
|
||||||
145 145 170 color 146
|
|
||||||
145 145 255 color 147
|
|
||||||
145 182 0 color 148
|
|
||||||
145 182 85 color 149
|
|
||||||
145 182 170 color 150
|
|
||||||
145 182 255 color 151
|
|
||||||
145 218 0 color 152
|
|
||||||
145 218 85 color 153
|
|
||||||
145 218 170 color 154
|
|
||||||
145 218 255 color 155
|
|
||||||
145 255 0 color 156
|
|
||||||
145 255 85 color 157
|
|
||||||
145 255 170 color 158
|
|
||||||
145 255 255 color 159
|
|
||||||
182 0 0 color 160
|
|
||||||
182 0 85 color 161
|
|
||||||
182 0 170 color 162
|
|
||||||
182 0 255 color 163
|
|
||||||
182 36 0 color 164
|
|
||||||
182 36 85 color 165
|
|
||||||
182 36 170 color 166
|
|
||||||
182 36 255 color 167
|
|
||||||
182 72 0 color 168
|
|
||||||
182 72 85 color 169
|
|
||||||
182 72 170 color 170
|
|
||||||
182 72 255 color 171
|
|
||||||
182 109 0 color 172
|
|
||||||
182 109 85 color 173
|
|
||||||
182 109 170 color 174
|
|
||||||
182 109 255 color 175
|
|
||||||
182 145 0 color 176
|
|
||||||
182 145 85 color 177
|
|
||||||
182 145 170 color 178
|
|
||||||
182 145 255 color 179
|
|
||||||
182 182 0 color 180
|
|
||||||
182 182 85 color 181
|
|
||||||
182 182 170 color 182
|
|
||||||
182 182 255 color 183
|
|
||||||
182 218 0 color 184
|
|
||||||
182 218 85 color 185
|
|
||||||
182 218 170 color 186
|
|
||||||
182 218 255 color 187
|
|
||||||
182 255 0 color 188
|
|
||||||
182 255 85 color 189
|
|
||||||
182 255 170 color 190
|
|
||||||
182 255 255 color 191
|
|
||||||
218 0 0 color 192
|
|
||||||
218 0 85 color 193
|
|
||||||
218 0 170 color 194
|
|
||||||
218 0 255 color 195
|
|
||||||
218 36 0 color 196
|
|
||||||
218 36 85 color 197
|
|
||||||
218 36 170 color 198
|
|
||||||
218 36 255 color 199
|
|
||||||
218 72 0 color 200
|
|
||||||
218 72 85 color 201
|
|
||||||
218 72 170 color 202
|
|
||||||
218 72 255 color 203
|
|
||||||
218 109 0 color 204
|
|
||||||
218 109 85 color 205
|
|
||||||
218 109 170 color 206
|
|
||||||
218 109 255 color 207
|
|
||||||
218 145 0 color 208
|
|
||||||
218 145 85 color 209
|
|
||||||
218 145 170 color 210
|
|
||||||
218 145 255 color 211
|
|
||||||
218 182 0 color 212
|
|
||||||
218 182 85 color 213
|
|
||||||
218 182 170 color 214
|
|
||||||
218 182 255 color 215
|
|
||||||
218 218 0 color 216
|
|
||||||
218 218 85 color 217
|
|
||||||
218 218 170 color 218
|
|
||||||
218 218 255 color 219
|
|
||||||
218 255 0 color 220
|
|
||||||
218 255 85 color 221
|
|
||||||
218 255 170 color 222
|
|
||||||
218 255 255 color 223
|
|
||||||
255 0 0 color 224
|
|
||||||
255 0 85 color 225
|
|
||||||
255 0 170 color 226
|
|
||||||
255 0 255 color 227
|
|
||||||
255 36 0 color 228
|
|
||||||
255 36 85 color 229
|
|
||||||
255 36 170 color 230
|
|
||||||
255 36 255 color 231
|
|
||||||
255 72 0 color 232
|
|
||||||
255 72 85 color 233
|
|
||||||
255 72 170 color 234
|
|
||||||
255 72 255 color 235
|
|
||||||
255 109 0 color 236
|
|
||||||
255 109 85 color 237
|
|
||||||
255 109 170 color 238
|
|
||||||
255 109 255 color 239
|
|
||||||
255 145 0 color 240
|
|
||||||
255 145 85 color 241
|
|
||||||
255 145 170 color 242
|
|
||||||
255 145 255 color 243
|
|
||||||
255 182 0 color 244
|
|
||||||
255 182 85 color 245
|
|
||||||
255 182 170 color 246
|
|
||||||
255 182 255 color 247
|
|
||||||
255 218 0 color 248
|
|
||||||
255 218 85 color 249
|
|
||||||
255 218 170 color 250
|
|
||||||
255 218 255 color 251
|
|
||||||
255 255 0 color 252
|
|
||||||
255 255 85 color 253
|
|
||||||
255 255 170 color 254
|
|
||||||
255 255 255 color 255
|
|
BIN
NEWFOL~1/GEC.JPG
Before Width: | Height: | Size: 50 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 766 B |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 766 B |
BIN
NEWFOL~1/gec.kra
225
base.css
|
@ -1,225 +0,0 @@
|
||||||
@import url(fonts/muller/muller.css);
|
|
||||||
@import url(fonts/noto/noto.css);
|
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
--gradient:
|
|
||||||
linear-gradient(135deg,
|
|
||||||
hsl(42deg, 92%, 70%),
|
|
||||||
hsl(348deg, 92%, 70%),
|
|
||||||
hsl(334deg, 100%, 80%),
|
|
||||||
hsl(234deg, 100%, 76%),
|
|
||||||
hsl(195deg, 100%, 67%),
|
|
||||||
hsl(155deg, 70%, 62%)
|
|
||||||
);
|
|
||||||
*/
|
|
||||||
|
|
||||||
--gradient:
|
|
||||||
linear-gradient(135deg,
|
|
||||||
oklch(93% 0.16 86),
|
|
||||||
oklch(84% 0.17 15),
|
|
||||||
oklch(78% 0.18 304),
|
|
||||||
oklch(78% 0.18 233),
|
|
||||||
oklch(78% 0.18 162)
|
|
||||||
);
|
|
||||||
--size: 15pt;
|
|
||||||
--weight: 600;
|
|
||||||
--link-color: hsl(196deg, 100%, 85%);
|
|
||||||
--hover-color: hsl(50deg, 100%, 82%);
|
|
||||||
|
|
||||||
background:
|
|
||||||
image-set(url(media/bg.png) 1x,
|
|
||||||
url(media/bg_2x.png) 2x)
|
|
||||||
top center fixed,
|
|
||||||
var(--gradient) fixed;
|
|
||||||
background-blend-mode: overlay;
|
|
||||||
|
|
||||||
font-family: 'Muller';
|
|
||||||
font-size: var(--size);
|
|
||||||
font-weight: var(--weight);
|
|
||||||
color: white;
|
|
||||||
text-shadow:
|
|
||||||
1px 1px 0 black,
|
|
||||||
-1px 1px 0 black,
|
|
||||||
1px -1px 0 black,
|
|
||||||
-1px -1px 0 black,
|
|
||||||
4px 4px 4px hsla(0, 0%, 0%, 70%);
|
|
||||||
text-align: center;
|
|
||||||
margin: 2em 1em 0.5em;
|
|
||||||
}
|
|
||||||
|
|
||||||
main {
|
|
||||||
--default-bg: hsla(316deg, 100%, 95%, 45%);
|
|
||||||
background: var(--default-bg);
|
|
||||||
border-radius: 2em;
|
|
||||||
--glow-col: hsla(318deg, 100%, 98%, 100%);
|
|
||||||
border: 1px solid var(--glow-col);
|
|
||||||
box-shadow: 0 0 25px var(--glow-col) inset;
|
|
||||||
|
|
||||||
padding: 1em;
|
|
||||||
margin: 0 auto 1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
header p, h1, h2, h3, h4, h5, h6 {
|
|
||||||
font-weight: 700;
|
|
||||||
margin-top: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 {
|
|
||||||
font-size: 200%;
|
|
||||||
}
|
|
||||||
|
|
||||||
h2, header p {
|
|
||||||
font-size: 150%;
|
|
||||||
}
|
|
||||||
|
|
||||||
b {
|
|
||||||
font-weight: 800;
|
|
||||||
}
|
|
||||||
|
|
||||||
hr {
|
|
||||||
height: 4px;
|
|
||||||
width: 75%;
|
|
||||||
background-color: hsla(0, 0%, 100%, 85%);
|
|
||||||
box-shadow: 0 0 3px hsl(0, 0%, 100%, 50%);
|
|
||||||
border: none;
|
|
||||||
text-shadow: none;
|
|
||||||
margin: 20px auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ipa {
|
|
||||||
font-family: NotoSans;
|
|
||||||
font-weight: 900;
|
|
||||||
font-size: 90%;
|
|
||||||
}
|
|
||||||
|
|
||||||
a[href] {
|
|
||||||
color: var(--link-color);
|
|
||||||
font-weight: 800;
|
|
||||||
text-decoration: none;
|
|
||||||
transition: color 0.2s ease-in-out;
|
|
||||||
}
|
|
||||||
a[href]:where(:hover,:focus) {
|
|
||||||
color: var(--hover-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
dl {
|
|
||||||
display: grid;
|
|
||||||
grid-template-columns: repeat(4, auto);
|
|
||||||
grid-row-gap: 6px;
|
|
||||||
grid-column-gap: 1em;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
dt {
|
|
||||||
text-align: right;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
dd {
|
|
||||||
font-weight: 700;
|
|
||||||
text-align: left;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
:is(rt, h1, h2)::before, :is(rt, h1, h2)::after {
|
|
||||||
padding: 0 0.25em;
|
|
||||||
vertical-align: middle;
|
|
||||||
display: inline-block;
|
|
||||||
height: 1em; width: 1em;
|
|
||||||
mix-blend-mode: overlay;
|
|
||||||
content: var(--around-image);
|
|
||||||
}
|
|
||||||
|
|
||||||
rt::before { margin-left: -1.25em; }
|
|
||||||
rt::after { margin-right: -1.25em; }
|
|
||||||
|
|
||||||
/* hacky fix for firefox mobile 68 freaking out at blend modes ☹ */
|
|
||||||
@media (-moz-touch-enabled) {
|
|
||||||
:root {
|
|
||||||
background: var(--gradient) fixed;
|
|
||||||
background-blend-mode: initial;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.emojo {
|
|
||||||
vertical-align: middle;
|
|
||||||
height: 1.2em; width: 1.2em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pixel {
|
|
||||||
/* firefox doesn't support "pixelated" but does treat "crisp-edges"
|
|
||||||
* to mean that */
|
|
||||||
image-rendering: crisp-edges;
|
|
||||||
image-rendering: pixelated;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/******************************/
|
|
||||||
/* actual accessibility stuff */
|
|
||||||
/******************************/
|
|
||||||
|
|
||||||
@media (prefers-reduced-motion: reduce) {
|
|
||||||
/* see also the alternate source in #mlem > picture */
|
|
||||||
.mlem-text {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
@media (prefers-contrast: high), (prefers-color-scheme: dark) {
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
--gradient:
|
|
||||||
linear-gradient(135deg,
|
|
||||||
hsl(42deg, 56%, 55%),
|
|
||||||
hsl(348deg, 56%, 55%),
|
|
||||||
hsl(334deg, 60%, 43%),
|
|
||||||
hsl(234deg, 60%, 40%),
|
|
||||||
hsl(195deg, 60%, 44%),
|
|
||||||
hsl(155deg, 60%, 55%)
|
|
||||||
);
|
|
||||||
*/
|
|
||||||
|
|
||||||
--gradient:
|
|
||||||
linear-gradient(135deg,
|
|
||||||
/* oklch(33% 0.16 86), */
|
|
||||||
oklch(30% 0.17 15),
|
|
||||||
oklch(30% 0.18 304),
|
|
||||||
oklch(30% 0.18 233),
|
|
||||||
oklch(30% 0.18 162)
|
|
||||||
);
|
|
||||||
|
|
||||||
background:
|
|
||||||
image-set(url(media/bg_dim.png) 1x,
|
|
||||||
url(media/bg_2x_dim.png) 2x)
|
|
||||||
top center fixed,
|
|
||||||
var(--gradient) fixed;
|
|
||||||
background-blend-mode: multiply;
|
|
||||||
}
|
|
||||||
|
|
||||||
main {
|
|
||||||
--default-bg: hsla(0, 0%, 0%, 60%);
|
|
||||||
--glow-col: hsla(0, 0%, 0%, 60%);
|
|
||||||
}
|
|
||||||
|
|
||||||
:is(#links ul, rt, h1, h2)::before, :is(#links ul, rt, h1, h2)::after {
|
|
||||||
mix-blend-mode: screen;
|
|
||||||
}
|
|
||||||
|
|
||||||
hr {
|
|
||||||
background: white;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (prefers-reduced-transparency) {
|
|
||||||
:root {
|
|
||||||
background: var(--gradient) fixed;
|
|
||||||
background-blend-mode: initial;
|
|
||||||
}
|
|
||||||
|
|
||||||
:is(#links ul, rt, h1, h2)::before, :is(#links ul, rt, h1, h2)::after {
|
|
||||||
mix-blend-mode: initial;
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,8 +0,0 @@
|
||||||
@font-face {
|
|
||||||
font-family: NotoSans;
|
|
||||||
font-weight: 900;
|
|
||||||
src:
|
|
||||||
local('Noto Sans Black'),
|
|
||||||
url(NotoSans-Black.ttf) format('ttf');
|
|
||||||
}
|
|
||||||
|
|
49
id.css
|
@ -1,49 +0,0 @@
|
||||||
@import url(base.css);
|
|
||||||
|
|
||||||
main {
|
|
||||||
max-width: 950px;
|
|
||||||
padding: 2em;
|
|
||||||
|
|
||||||
background:
|
|
||||||
url(media/quobl2.png) bottom left 5% / 30% no-repeat,
|
|
||||||
var(--default-bg);
|
|
||||||
background-blend-mode: multiply;
|
|
||||||
}
|
|
||||||
|
|
||||||
footer {
|
|
||||||
margin-top: 6em;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
.flags {
|
|
||||||
list-style: none;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.flags li {
|
|
||||||
display: inline-block;
|
|
||||||
padding: 0 .25em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.flags img {
|
|
||||||
height: 1.25em;
|
|
||||||
border: 2px solid oklch(37.28% 0.1488 17.16 / 80%);
|
|
||||||
transform: rotate(-3deg);
|
|
||||||
}
|
|
||||||
|
|
||||||
dl {
|
|
||||||
grid-template-columns: repeat(2, auto);
|
|
||||||
row-gap: 1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
p {
|
|
||||||
margin: 0 0 .5em 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.note {
|
|
||||||
font-size: 80%;
|
|
||||||
}
|
|
||||||
|
|
||||||
ul {
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
55
id.html
|
@ -1,55 +0,0 @@
|
||||||
<!doctype html>
|
|
||||||
<html lang=en>
|
|
||||||
<meta charset=utf-8>
|
|
||||||
|
|
||||||
<link rel=icon href=media/icon.svg>
|
|
||||||
<link rel=stylesheet href=id.css>
|
|
||||||
|
|
||||||
<title>identity matrix</title>
|
|
||||||
|
|
||||||
<main>
|
|
||||||
<h1>identity matrix</h1>
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
<dl>
|
|
||||||
<dt>name
|
|
||||||
<dd>
|
|
||||||
<ul>
|
|
||||||
<li> <b>niss</b> or <b>q.t.</b>
|
|
||||||
<li> <b>rhiannon</b>/<b>rhi</b> when necessary
|
|
||||||
<li> always lowercase
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<dt>pronouns
|
|
||||||
<dd>
|
|
||||||
<ul>
|
|
||||||
<li> <b>she</b>, <b>they</b>, or <b>it</b> in english. pick whichever
|
|
||||||
<li> <b>sie</b> auf deutsch
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<dt>shapes
|
|
||||||
<dd>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
<a href=https://gallery.niss.website/by-any/#require_niss;require_nisse;hide_filters>gold dust day gecko</a> ×2,
|
|
||||||
from “real life”
|
|
||||||
<li><a href=https://gallery.niss.website/by-any/#require_q_t_;hide_filters>quox</a>,
|
|
||||||
from the tower of druaga
|
|
||||||
<li><a href=https://gallery.niss.website/by-any/#require_kesi;hide_filters>bubble dragon</a>, from bubble bobble
|
|
||||||
<li>some others that come and go
|
|
||||||
</ul>
|
|
||||||
</dl>
|
|
||||||
|
|
||||||
<ul class=flags>
|
|
||||||
<li> <img src=media/flags/nb.png alt=non-binary title=non-binary>
|
|
||||||
<li> <img src=media/flags/gf.png alt=genderfluid title=genderfluid>
|
|
||||||
<li> <img src=media/flags/pan.png alt=pansexual title=pansexual>
|
|
||||||
<li> <img src=media/flags/quoi.png alt=quoiromantic title=quoiromantic>
|
|
||||||
<li> <img src=media/flags/polyam.png alt=polyamorous title=polyamorous>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<a href=/>main</a>
|
|
||||||
</footer>
|
|
||||||
</main>
|
|
59
index.css
|
@ -1,59 +0,0 @@
|
||||||
@import url(base.css);
|
|
||||||
|
|
||||||
:root {
|
|
||||||
width: 100vw; height: 100vh;
|
|
||||||
margin: 0; padding: 0;
|
|
||||||
display: grid;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
main {
|
|
||||||
width: 35em;
|
|
||||||
padding: 2em;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#mlem {
|
|
||||||
margin: 36px auto -50px;
|
|
||||||
position: relative;
|
|
||||||
height: 219px;
|
|
||||||
width: 420px;
|
|
||||||
cursor-events: none;
|
|
||||||
}
|
|
||||||
.mlem-text {
|
|
||||||
font-size: 110%;
|
|
||||||
position: absolute;
|
|
||||||
font-weight: 700;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
.niss { bottom: 100%; left: 20px; }
|
|
||||||
.nisse { bottom: 85%; right: 0; }
|
|
||||||
#mlem img {
|
|
||||||
/* firefox doesn't support "pixelated" but does treat "crisp-edges"
|
|
||||||
* to mean that */
|
|
||||||
image-rendering: crisp-edges;
|
|
||||||
image-rendering: pixelated;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#links img {
|
|
||||||
margin-right: 0.75em;
|
|
||||||
height: 1.5em;
|
|
||||||
width: 1.5em;
|
|
||||||
filter: drop-shadow(0 0 10px var(--glow-col));
|
|
||||||
vertical-align: middle;
|
|
||||||
}
|
|
||||||
|
|
||||||
menu {
|
|
||||||
display: grid;
|
|
||||||
gap: 1em;
|
|
||||||
grid-template-columns: 1fr 1fr;
|
|
||||||
|
|
||||||
max-width: 85%;
|
|
||||||
margin: auto;
|
|
||||||
padding: 0;
|
|
||||||
font-size: 125%;
|
|
||||||
}
|
|
||||||
|
|
||||||
li { list-style: none; }
|
|
453
index.html
|
@ -1,48 +1,435 @@
|
||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html lang=en>
|
<html lang=en>
|
||||||
<meta charset=utf-8>
|
<meta charset=utf-8>
|
||||||
|
<meta name=viewport content="width=device-width, initial-scale=0.7">
|
||||||
|
|
||||||
<link rel=me href=//chitter.xyz/@niss>
|
<title>the gec zone</title>
|
||||||
<link rel=me href=//cohost.org/niss>
|
|
||||||
<link rel=me href=//yiff.life/@niss>
|
|
||||||
|
|
||||||
<link rel=stylesheet href=index.css>
|
<link rel=me href=https://chitter.xyz/@niss>
|
||||||
<link rel=icon href=media/icon.svg>
|
<link rel=me href=https://cohost.org/niss>
|
||||||
|
|
||||||
<title>🦎 the gec zone 🦎</title>
|
<link rel=icon href=media/favicon.png>
|
||||||
|
<link rel=stylesheet href=style/base.css>
|
||||||
|
<link rel=stylesheet href=style/cube.css>
|
||||||
|
<link rel=stylesheet href=style/flat.css>
|
||||||
|
<noscript>
|
||||||
|
<link rel=stylesheet href=style/static.css>
|
||||||
|
</noscript>
|
||||||
|
|
||||||
<main>
|
<meta property=og:type content=article>
|
||||||
<header id=mlem>
|
<meta property=og:title content="the gec zone">
|
||||||
<p class='mlem-text niss'>“mlem”</p>
|
<meta property=og:description content="lair of the creature known as “niss”">
|
||||||
<p class='mlem-text nisse'>“mlem also”</p>
|
<meta property=og:url content="https://yummy.cricket">
|
||||||
<picture>
|
<meta property=og:image content=media/opengraph.png>
|
||||||
<source srcset=media/mlem_static.png class=pixel
|
<meta property=og:image:width content=400>
|
||||||
media='(prefers-reduced-motion)'>
|
<meta property=og:image:height content=400>
|
||||||
<img src=media/mlem.gif class=pixel alt='— the gecs'>
|
<meta property=og:image content=media/twittercard.png>
|
||||||
</picture>
|
<meta property=og:image:width content=800>
|
||||||
</header>
|
<meta property=og:image:height content=418>
|
||||||
|
<meta name=twitter:card content=summary_large_image>
|
||||||
|
<meta name=twitter:image content=media/twittercard.png>
|
||||||
|
|
||||||
<hr>
|
<script src=script/shuffle.js type=module></script>
|
||||||
|
<script src=script/run.js type=module></script>
|
||||||
|
|
||||||
<menu id=links>
|
<nav id=face-menu>
|
||||||
<li> <a href=id.html><img src=media/info.svg> identity</a>
|
<menu class='menu hide-boxes'>
|
||||||
<li> <a href=where.html><img src=media/contact.svg> contact</a>
|
<li> <input name=tab id=b-hello type=radio checked>
|
||||||
<li> <a href=//gallery.niss.website><img src=media/art.svg> art</a>
|
<label for=b-hello>hello</label>
|
||||||
<li> <a href=//commiss.io/niss><img src=media/money.svg> comms</a>
|
<li> <input name=tab id=b-id type=radio>
|
||||||
<li> <a href=//git.rhiannon.website><img src=media/code.svg> code</a>
|
<label for=b-id>id</label>
|
||||||
<li> <a href=//lang.niss.website><img src=media/speech.svg> conlangs</a>
|
<li> <input name=tab id=b-activities type=radio>
|
||||||
|
<label for=b-activities>activities</label>
|
||||||
|
<li> <input name=tab id=b-links type=radio>
|
||||||
|
<label for=b-links>links</label>
|
||||||
|
<li> <input name=tab id=b-friends type=radio>
|
||||||
|
<label for=b-friends>friends</label>
|
||||||
|
<li> <input name=tab id=b-six type=radio>
|
||||||
|
<label for=b-six>tbd</label>
|
||||||
</menu>
|
</menu>
|
||||||
|
</nav>
|
||||||
|
|
||||||
<hr>
|
<div id=outer>
|
||||||
|
<div id=cube>
|
||||||
|
<section id=hello>
|
||||||
|
<h2> hey </h2>
|
||||||
|
|
||||||
<footer>
|
<p> i’m niss. what’s up
|
||||||
<a href=//cohost.org/candiedreptile/post/3942660-socked-quox-in-b>
|
|
||||||
<img src=media/quoxtrans.png width=88 height=31 class=pixel>
|
<noscript>
|
||||||
|
<p> this page needs javascript for the full effect, sorry.
|
||||||
|
|
||||||
|
<p> it was hard enough to make it work cross-browser as it is.
|
||||||
|
<small>[grumbles at safari]</small>
|
||||||
|
</noscript>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section id=id>
|
||||||
|
<h2> so what’s your deal </h2>
|
||||||
|
|
||||||
|
<dl>
|
||||||
|
<dt>name
|
||||||
|
<dd>
|
||||||
|
<ul>
|
||||||
|
<li> <b>niss</b> or <b>q.t.</b>
|
||||||
|
<li> always lowercase
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<dt>pronouns
|
||||||
|
<dd>
|
||||||
|
<ul>
|
||||||
|
<li> <b>she</b>, <b>they</b>, or <b>it</b> in english. pick whichever
|
||||||
|
<li> <b>sie</b> auf deutsch
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<dt>shapes
|
||||||
|
<dd>
|
||||||
|
<ul>
|
||||||
|
<li><a href=https://gallery.niss.website/by-any/#gecs>gold dust day gecko</a>
|
||||||
|
×2, from “real life”
|
||||||
|
<li><a href=https://gallery.niss.website/by-any/#qt>quox</a>,
|
||||||
|
from the tower of druaga
|
||||||
|
<li><a href=https://gallery.niss.website/by-any/#kesi>bubble dragon</a>,
|
||||||
|
from bubble bobble
|
||||||
|
<li>some others that come and go
|
||||||
|
</ul>
|
||||||
|
</dl>
|
||||||
|
|
||||||
|
<div id=flags>
|
||||||
|
<img src=media/flags/nb.png alt=non-binary title=non-binary>
|
||||||
|
<img src=media/flags/gf.png alt=genderfluid title=genderfluid>
|
||||||
|
<img src=media/flags/pan.png alt=pansexual title=pansexual>
|
||||||
|
<img src=media/flags/quoi.png alt=quoiromantic title=quoiromantic>
|
||||||
|
<img src=media/flags/polyam.png alt=polyamorous title=polyamorous>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section id=activities>
|
||||||
|
<h2> what do you do </h2>
|
||||||
|
|
||||||
|
<p> <strong>i draw furry art!</strong> you can see that
|
||||||
|
<a href=https://gallery.niss.website>here</a>. i enjoy creatures with
|
||||||
|
weird body plans. if you want me to draw you something then
|
||||||
|
<a href=https://commiss.io/niss>please step this way</a>
|
||||||
|
|
||||||
|
<p> <strong>i like type systems!</strong> i’m slowly working on a language
|
||||||
|
called <strong>quox</strong>, which lives
|
||||||
|
<a href=https://git.rhiannon.website/rhi/quox>here</a>.
|
||||||
|
i haven’t got around to making a website for it yet
|
||||||
|
|
||||||
|
<p> <strong>i like conlangs!</strong> i have a couple
|
||||||
|
<a href=https://lang.niss.website>here</a>. they are extremely
|
||||||
|
“conlanger’s notes” quality, which means incomplete and incomprehensible
|
||||||
|
to anyone other than their author
|
||||||
|
|
||||||
|
<p> i’m sure there’s other stuff but talking about yourself is hard
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section id=links>
|
||||||
|
<h2> where else do you exist </h2>
|
||||||
|
|
||||||
|
<section id=gecsites>
|
||||||
|
<h3> gec sites </h3>
|
||||||
|
|
||||||
|
<ul class=zoom>
|
||||||
|
<li id=gallery> <a href=https://gallery.niss.website>gallery</a>
|
||||||
|
<li id=code> <a href=https://git.rhiannon.website>code</a>
|
||||||
|
<li id=blog> <a href=https://blog.niss.website>blog</a>
|
||||||
|
</ul>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section id=galleries>
|
||||||
|
<h3> gallery sites </h3>
|
||||||
|
|
||||||
|
<ul class=zoom>
|
||||||
|
<li id=itaku> <a href=https://itaku.ee/profile/niss>itaku</a>
|
||||||
|
<li id=weasyl> <a href=https://www.weasyl.com/~niss>weasyl</a>
|
||||||
|
<li id=fa> <a href=https://furaffinity.net/user/niss>furaffinity</a>
|
||||||
|
<li id=da> <a href=https://www.deviantart.com/2gecs>deviantart</a>
|
||||||
|
<li id=kofi> <a href=https://ko-fi.com/nissss>ko-fi</a>
|
||||||
|
<!-- <li id=artfight> <a href=https://artfight.net/~nissss>art fight</a> -->
|
||||||
|
</ul>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section id=sociallinks>
|
||||||
|
<h3> other stuff </h3>
|
||||||
|
|
||||||
|
<ul class=zoom>
|
||||||
|
<li id=chitter> <a href=https://chitter.xyz/@niss>fediverse</a>
|
||||||
|
<!-- <li id=cohost> <a href=https://cohost.org/niss>cohost</a> -->
|
||||||
|
<li id=bluesky> <a href=https://niss.yummy.cricket>bluesky</a>
|
||||||
|
</ul>
|
||||||
|
</section>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section id=friends>
|
||||||
|
<h2> more websites please </h2>
|
||||||
|
|
||||||
|
<section id=friendlinks>
|
||||||
|
<h3> friends of gecs </h3>
|
||||||
|
|
||||||
|
<!-- btw unless i say otherwise, all these buttons are made by
|
||||||
|
who they link to -->
|
||||||
|
|
||||||
|
<ul class='zoom shuffle'>
|
||||||
|
<li id=dino>
|
||||||
|
<a href=https://flussence.eu title=dino>
|
||||||
|
<img src=media/buttons/dino.png alt=dino>
|
||||||
</a>
|
</a>
|
||||||
</footer>
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<!--
|
<li id=goaty>
|
||||||
mutant standard emoji by caius nocturne: 👉 mutant.tech 👈
|
<a href=https://goatygoats.com title=goaty>
|
||||||
(licensed cc-by-nc-sa 4.0)
|
<picture>
|
||||||
|
<source srcset=media/buttons/goaty_still.gif
|
||||||
|
media='(prefers-reduced-motion: reduce)'>
|
||||||
|
<img src=media/buttons/goaty.gif alt=goaty>
|
||||||
|
</picture>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<li id=tenna>
|
||||||
|
<a href=https://tenna.zip title=tenna class=txt>tenna</a>
|
||||||
|
|
||||||
|
<li id=gulfie>
|
||||||
|
<a href=https://gulfie.online title=gulfie>
|
||||||
|
<picture>
|
||||||
|
<source srcset=media/buttons/gulfie_still.png
|
||||||
|
media='(prefers-reduced-motion: reduce)'>
|
||||||
|
<img src=media/buttons/gulfie.png alt=gulfie>
|
||||||
|
</picture>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<li id=river>
|
||||||
|
<a href=https://sleepingriverden.neocities.org
|
||||||
|
title=river class=txt>river</a>
|
||||||
|
|
||||||
|
<li id=khr>
|
||||||
|
<a href=https://khr.monster title=khr class=txt>khr</a>
|
||||||
|
|
||||||
|
<li id=codl>
|
||||||
|
<a href=https://codl.fr title=codl class=txt>codl</a>
|
||||||
|
|
||||||
|
<li id=myno>
|
||||||
|
<a href=https://zatzhing.me title=myno>
|
||||||
|
<picture>
|
||||||
|
<source srcset=media/buttons/myno_still.png
|
||||||
|
media='(prefers-reduced-motion: reduce)'>
|
||||||
|
<img src=media/buttons/myno.gif alt=myno>
|
||||||
|
</picture>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<li id=abyss>
|
||||||
|
<a href=https://kobold60.com title=abyss>
|
||||||
|
<picture>
|
||||||
|
<source srcset=media/buttons/abyss_still.png
|
||||||
|
media='(prefers-reduced-motion: reduce)'>
|
||||||
|
<img src=media/buttons/abyss.gif alt=abyss>
|
||||||
|
</picture>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<li id=cr>
|
||||||
|
<a href=https://candiedreptile.club/bloglet/ title=candiedreptile>
|
||||||
|
<picture>
|
||||||
|
<source srcset=media/buttons/candiedreptile_still.png
|
||||||
|
media='(prefers-reduced-motion: reduce)'>
|
||||||
|
<img src=media/buttons/candiedreptile.gif alt=candiedreptile>
|
||||||
|
</picture>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<li id=spiral>
|
||||||
|
<a href=https://spiralcyr.carrd.co title=spiral class=txt>spiral</a>
|
||||||
|
|
||||||
|
<li id=dex>
|
||||||
|
<a href=https://dexthedragon.co.uk title=dex>
|
||||||
|
<img src=media/buttons/dex.png alt=dex>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<li id=pebble>
|
||||||
|
<a href=https://pebble.pet title=pebble>
|
||||||
|
<picture>
|
||||||
|
<source srcset=media/buttons/pebble_still.png
|
||||||
|
media='(prefers-reduced-motion: reduce)'>
|
||||||
|
<img src=media/buttons/pebble.gif alt=pebble>
|
||||||
|
</picture>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<li id=beeps>
|
||||||
|
<a href=https://beeps.website title=beeps>
|
||||||
|
<picture>
|
||||||
|
<source srcset=media/buttons/beeps_still.png
|
||||||
|
media='(prefers-reduced-motion: reduce)'>
|
||||||
|
<img src=media/buttons/beeps.gif alt=beeps>
|
||||||
|
</picture>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<li id=grace>
|
||||||
|
<a href=https://princess.software title=grace>
|
||||||
|
<img src=media/buttons/grace.png alt=grace>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<li id=dusty>
|
||||||
|
<a href=https://chcl.se title=dusty>
|
||||||
|
<picture>
|
||||||
|
<source srcset=media/buttons/dusty_still.png
|
||||||
|
media='(prefers-reduced-motion: reduce)'>
|
||||||
|
<img src=media/buttons/dusty.gif alt=dusty>
|
||||||
|
</picture>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<li id=tsunderdog>
|
||||||
|
<a href=https://www.tsunderdog.art title=tsunderdog>
|
||||||
|
<picture>
|
||||||
|
<source srcset=media/buttons/tsunderdog_still.png
|
||||||
|
media='(prefers-reduced-motion: reduce)'>
|
||||||
|
<img src=media/buttons/tsunderdog.gif alt=tsunderdog>
|
||||||
|
</picture>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<li id=ionchy>
|
||||||
|
<a href=https://ionathan.ch title=ionchy class=txt>ionchy</a>
|
||||||
|
|
||||||
|
<li id=cial>
|
||||||
|
<a href=http://www.demon-sushi.com title=cial>
|
||||||
|
<img src=media/buttons/inhuman.png alt=cial>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<li id=tuxedodragon>
|
||||||
|
<a href=https://tuxedodragon.art title=tuxedodragon>
|
||||||
|
<picture>
|
||||||
|
<source srcset=media/buttons/tuxedodragon_still.gif
|
||||||
|
media='(prefers-reduced-motion: reduce)'>
|
||||||
|
<img src=media/buttons/tuxedodragon.gif alt=tuxedodragon>
|
||||||
|
</picture>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<li id=hthrflwrs>
|
||||||
|
<a href=https://heather.flowers title=hthrflwrs>
|
||||||
|
<img src=media/buttons/hthrflwrs.png alt=hthrflwrs>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<li id=creature0354>
|
||||||
|
<a href=https://creature0354.neocities.org title=creature0354>
|
||||||
|
<picture>
|
||||||
|
<source srcset=media/buttons/creature0354_still.png
|
||||||
|
media='(prefers-reduced-motion: reduce)'>
|
||||||
|
<img src=media/buttons/creature0354.gif alt=creature0354>
|
||||||
|
</picture>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<li id=violet>
|
||||||
|
<a href=https://violet.pm title=violet class=txt>violet</a>
|
||||||
|
|
||||||
|
<li id=alloyed>
|
||||||
|
<a href=https://alloyed.me title='Kit!'>
|
||||||
|
<picture>
|
||||||
|
<source srcset=media/buttons/alloyed_still.png
|
||||||
|
media='(prefers-reduced-motion: reduce)'>
|
||||||
|
<img src=media/buttons/alloyed.gif alt='Kit!'>
|
||||||
|
</picture>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<li id=renko>
|
||||||
|
<a href=https://https://renkotsuban.com title=renkotsuban>
|
||||||
|
<img src=media/buttons/renkotsuban.gif alt=renkotsuban>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<li id=craw>
|
||||||
|
<a href=https://craw.com title=craw>
|
||||||
|
<img src=media/buttons/craw.png alt=craw>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<li id=FaeAlchemist>
|
||||||
|
<a href=https://faealchemist.neocities.org title=faealchemist>
|
||||||
|
<picture>
|
||||||
|
<source srcset=media/buttons/FaeAlchemist_still.png
|
||||||
|
media='(prefers-reduced-motion: reduce)'>
|
||||||
|
<img src=media/buttons/FaeAlchemist.gif alt=faealchemist>
|
||||||
|
</picture>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<li id=suricrasia>
|
||||||
|
<a href=https://suricrasia.online title=suricrasia>
|
||||||
|
<img src=media/buttons/suricrasia.gif alt=suricrasia>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<li id=brin>
|
||||||
|
<a href=https://brinsolomon.com title=brin class=txt>brin</a>
|
||||||
|
</ul>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section id=otherlinks>
|
||||||
|
<h3> other cool things </h3>
|
||||||
|
|
||||||
|
<ul class='zoom shuffle'>
|
||||||
|
<li>
|
||||||
|
<a href=https://cohost.org id=cohost-button title='i was on cohost'>
|
||||||
|
<picture>
|
||||||
|
<source srcset=media/buttons/cohost_still.gif
|
||||||
|
media='(prefers-reduced-motion: reduce)'>
|
||||||
|
<img src=media/buttons/cohost.gif alt='i was on cohost'>
|
||||||
|
</picture>
|
||||||
|
<!-- button by https://mykocalico.neocities.org/ -->
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href=https://oakreef.ie/transy id=transy title='transy!'>
|
||||||
|
<img src=media/buttons/transy.gif alt='transy!'>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href=https://cdrom.ca id=cdromca title='cd-rom journal'>
|
||||||
|
<img src=media/buttons/cdromca.png alt='cd-rom journal'>
|
||||||
|
<!-- button by https://candiedreptile.club -->
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href=https://corru.observer id=corru title='corru.observer'>
|
||||||
|
<picture>
|
||||||
|
<source srcset=media/buttons/corru_still.gif
|
||||||
|
media='(prefers-reduced-motion: reduce)'>
|
||||||
|
<img src=media/buttons/corru.gif alt='corru.observer'>
|
||||||
|
</picture>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href=https://krita.org id=krita title=krita>
|
||||||
|
<img src=media/buttons/krita.png alt=krita>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href=http://crouton.net id=crouton title=crouton>
|
||||||
|
<img src=media/buttons/crouton.png alt=crouton>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href=https://www.runawaytothestars.com id=rtts
|
||||||
|
title='runaway to the stars'>
|
||||||
|
<img src=media/buttons/rtts.png alt='runaway to the stars'>
|
||||||
|
</a>
|
||||||
|
</ul>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section id=nissbuttons>
|
||||||
|
<p>if you wanna link to me:</p>
|
||||||
|
<img src=8831.png alt='niss button' title='by me'>
|
||||||
|
<img src=8831-quox.png alt='q.t. button' title='by candiedreptile'>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section id=six>
|
||||||
|
<h2> a sixth thing </h2>
|
||||||
|
|
||||||
|
<p> <a href=http://crouton.net>wow</a>
|
||||||
|
|
||||||
|
<p class=artcredit>
|
||||||
|
art by <a href=https://wutizit45.bsky.social>gray</a>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- not set up yet sorry
|
||||||
|
<footer>
|
||||||
|
<input type=checkbox id=no-cube>
|
||||||
|
<label for=no-cube> no cube please </label>
|
||||||
|
</footer>
|
||||||
-->
|
-->
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.41421" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><clipPath id="a"><path clip-rule="evenodd" d="m0 0h32v32h-32z"/></clipPath><metadata/><path d="m0 0h32v32h-32z" fill="none"/><g clip-path="url(#a)"><circle cx="16" cy="16" r="16"/><circle cx="16" cy="16" fill="#e02a33" r="14"/><circle cx="16" cy="16" r="12"/><g fill="#fff" fill-rule="nonzero"><path d="m8.523 12.595-1.975 1.43v-2.418l1.975-1.481h2.23v11.748h-2.23z"/><path d="m16.321 22.061c-.693 0-1.311-.139-1.856-.417s-.974-.678-1.286-1.2-.468-1.124-.468-1.805v-.392c0-.533.125-1.024.375-1.472.249-.449.601-.803 1.055-1.064-.363-.216-.655-.52-.877-.911-.221-.392-.332-.843-.332-1.354v-.306c0-.579.139-1.113.418-1.601.278-.488.672-.877 1.183-1.166.511-.29 1.112-.434 1.805-.434.692 0 1.297.144 1.813.434.516.289.911.678 1.183 1.166.273.488.409 1.022.409 1.601v.306c0 .499-.114.948-.341 1.345s-.516.704-.868.92c.454.272.803.632 1.047 1.081.244.448.366.928.366 1.438v.392c0 .692-.156 1.3-.468 1.822s-.743.922-1.294 1.2c-.55.278-1.172.417-1.864.417zm.017-7.236c.386 0 .692-.128.919-.383s.341-.582.341-.979v-.323c0-.375-.117-.687-.349-.937-.233-.25-.537-.374-.911-.374-.375 0-.679.124-.911.374-.233.25-.349.562-.349.937v.323c0 .409.113.738.34.988.227.249.534.374.92.374zm0 5.346c.442 0 .797-.141 1.064-.425s.4-.664.4-1.141v-.409c0-.454-.133-.823-.4-1.106-.267-.284-.622-.426-1.064-.426-.432 0-.784.142-1.056.426-.272.283-.409.652-.409 1.106v.409c0 .465.131.843.392 1.132.261.29.619.434 1.073.434z"/><path d="m22.834 16.943h-2.073v-1.886h2.073v-2.073h1.886v2.073h2.073v1.886h-2.073v2.073h-1.886z"/></g></g></svg>
|
|
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 5.1 KiB |
|
@ -1 +0,0 @@
|
||||||
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.41421" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><clipPath id="a"><path clip-rule="evenodd" d="m0 0h32v32h-32z"/></clipPath><metadata/><path d="m0 0h32v32h-32z" fill="none"/><g clip-path="url(#a)"><path d="m29 10c0-2.209-1.791-4-4-4-5.534 0-15.466 0-21 0-2.209 0-4 1.791-4 4v12c0 2.209 1.791 4 4 4h21c2.209 0 4-1.791 4-4 0-3.486 0-8.514 0-12z"/><path d="m32 14c0-1.657-1.343-3-3-3-2.27 0-5 0-5 0v10h5c1.657 0 3-1.343 3-3 0-1.265 0-2.735 0-4z"/><path d="m30 14c0-.265-.105-.52-.293-.707-.187-.188-.442-.293-.707-.293-1.185 0-3 0-3 0v6h3c.265 0 .52-.105.707-.293.188-.187.293-.442.293-.707 0-1.11 0-2.89 0-4z" fill="#999"/><path d="m27 10c0-.53-.211-1.039-.586-1.414s-.884-.586-1.414-.586c-4.683 0-16.317 0-21 0-.53 0-1.039.211-1.414.586s-.586.884-.586 1.414v12c0 .53.211 1.039.586 1.414s.884.586 1.414.586h21c.53 0 1.039-.211 1.414-.586s.586-.884.586-1.414c0-3.074 0-8.926 0-12z" fill="#fff"/><path d="m10.08 10c0-.552-.448-1-1-1-1.339 0-3.701 0-5.04 0-.552 0-1 .448-1 1v12c0 .552.448 1 1 1h5.04c.552 0 1-.448 1-1 0-2.577 0-9.423 0-12z" fill="#e82731"/></g></svg>
|
|
Before Width: | Height: | Size: 1.2 KiB |
BIN
media/bg.kra
BIN
media/bg.png
(Stored with Git LFS)
BIN
media/bg/60309.png
(Stored with Git LFS)
Normal file
BIN
media/bg/60309_neon.png
(Stored with Git LFS)
Normal file
BIN
media/bg/kesi.png
(Stored with Git LFS)
Normal file
BIN
media/bg/kesi_neon.png
(Stored with Git LFS)
Normal file
BIN
media/bg/korai.png
(Stored with Git LFS)
Normal file
BIN
media/bg/korai_neon.png
(Stored with Git LFS)
Normal file
BIN
media/bg/mirai.png
(Stored with Git LFS)
Normal file
BIN
media/bg/mirai_neon.png
(Stored with Git LFS)
Normal file
BIN
media/bg/niss.png
(Stored with Git LFS)
Normal file
BIN
media/bg/niss2.png
(Stored with Git LFS)
Normal file
BIN
media/bg/niss2_neon.png
(Stored with Git LFS)
Normal file
BIN
media/bg/niss_neon.png
(Stored with Git LFS)
Normal file
BIN
media/bg/nisse.png
(Stored with Git LFS)
Normal file
BIN
media/bg/nisse_neon.png
(Stored with Git LFS)
Normal file
BIN
media/bg/prickly.png
(Stored with Git LFS)
Normal file
BIN
media/bg/prickly_neon.png
(Stored with Git LFS)
Normal file
BIN
media/bg/qt.png
(Stored with Git LFS)
Normal file
BIN
media/bg/qt2.png
(Stored with Git LFS)
Normal file
BIN
media/bg/qt2_neon.png
(Stored with Git LFS)
Normal file
BIN
media/bg/qt_neon.png
(Stored with Git LFS)
Normal file
BIN
media/bg_2x.png
(Stored with Git LFS)
BIN
media/buttons/FaeAlchemist.gif
(Stored with Git LFS)
Normal file
BIN
media/buttons/FaeAlchemist_still.gif
(Stored with Git LFS)
Normal file
BIN
media/buttons/abyss.gif
(Stored with Git LFS)
Normal file
BIN
media/buttons/abyss_still.gif
(Stored with Git LFS)
Normal file
BIN
media/buttons/alloyed.gif
(Stored with Git LFS)
Normal file
BIN
media/buttons/alloyed_still.png
(Stored with Git LFS)
Normal file
BIN
media/buttons/beeps.gif
(Stored with Git LFS)
Normal file
BIN
media/buttons/beeps_still.png
(Stored with Git LFS)
Normal file
BIN
media/buttons/candiedreptile.gif
(Stored with Git LFS)
Normal file
BIN
media/buttons/candiedreptile_still.png
(Stored with Git LFS)
Normal file
BIN
media/buttons/cdromca.png
(Stored with Git LFS)
Normal file
BIN
media/buttons/cobalt.png
(Stored with Git LFS)
Normal file
BIN
media/buttons/cohost.gif
(Stored with Git LFS)
Normal file
BIN
media/buttons/cohost_still.gif
(Stored with Git LFS)
Normal file
BIN
media/buttons/corru.gif
(Stored with Git LFS)
Normal file
BIN
media/buttons/corru_still.gif
(Stored with Git LFS)
Normal file
BIN
media/buttons/craw.png
(Stored with Git LFS)
Normal file
BIN
media/buttons/creature0354.gif
(Stored with Git LFS)
Normal file
BIN
media/buttons/creature0354_still.png
(Stored with Git LFS)
Normal file
BIN
media/buttons/crouton.png
(Stored with Git LFS)
Normal file
BIN
media/buttons/dex.png
(Stored with Git LFS)
Normal file
BIN
media/buttons/dino.png
(Stored with Git LFS)
Normal file
BIN
media/buttons/dusty.gif
(Stored with Git LFS)
Normal file
BIN
media/buttons/dusty_still.png
(Stored with Git LFS)
Normal file
BIN
media/buttons/goaty.gif
(Stored with Git LFS)
Normal file
BIN
media/buttons/goaty_still.gif
(Stored with Git LFS)
Normal file
BIN
media/buttons/grace.png
(Stored with Git LFS)
Normal file
BIN
media/buttons/gulfie.png
(Stored with Git LFS)
Normal file
BIN
media/buttons/gulfie_still.png
(Stored with Git LFS)
Normal file
BIN
media/buttons/hthrflwrs.png
(Stored with Git LFS)
Normal file
BIN
media/buttons/inhuman.png
(Stored with Git LFS)
Normal file
BIN
media/buttons/krita.kra
Normal file
BIN
media/buttons/krita.png
(Stored with Git LFS)
Normal file
BIN
media/buttons/myno.gif
(Stored with Git LFS)
Normal file
BIN
media/buttons/myno_still.png
(Stored with Git LFS)
Normal file
BIN
media/buttons/pebble.gif
(Stored with Git LFS)
Normal file
BIN
media/buttons/pebble_still.png
(Stored with Git LFS)
Normal file
BIN
media/buttons/renkotsuban.gif
(Stored with Git LFS)
Normal file
BIN
media/buttons/rtts.png
(Stored with Git LFS)
Normal file
BIN
media/buttons/suricrasia.gif
(Stored with Git LFS)
Normal file
BIN
media/buttons/transy.gif
(Stored with Git LFS)
Normal file
BIN
media/buttons/tsunderdog.gif
(Stored with Git LFS)
Normal file
BIN
media/buttons/tsunderdog_still.png
(Stored with Git LFS)
Normal file
BIN
media/buttons/tuxedodragon.gif
(Stored with Git LFS)
Normal file
BIN
media/buttons/tuxedodragon_still.gif
(Stored with Git LFS)
Normal file
BIN
media/chitter.png
(Stored with Git LFS)
|
@ -1 +0,0 @@
|
||||||
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1.5" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><clipPath id="a"><path clip-rule="evenodd" d="m0 0h32v32h-32z"/></clipPath><metadata/><path d="m0 0h32v32h-32z" fill="none"/><g clip-path="url(#a)"><path d="m10.425 7.363c.022-1.278.484-2.545 1.372-3.56h.001c1.06-1.212 2.592-1.907 4.202-1.907s3.142.695 4.202 1.907h.001c.888 1.015 1.35 2.282 1.372 3.56.001.063.001.126 0 .189v1.811c.014.848-.165 1.701-.543 2.49 1.366-.525 2.898-.504 4.268.087 1.705.736 2.94 2.262 3.305 4.084.02.101.04.201.06.302.069.344.105.692.108 1.037h.001v2h-.001c.013 1.299-.427 2.574-1.264 3.595-1.06 1.292-2.644 2.042-4.315 2.042-.001 0-.002 0-.003 0-1.973 0-3.795-1.057-4.774-2.77l-.535-.936 1.118 6.706v2h-6v-2l1.126-6.753-.587 1.015c-.978 1.694-2.786 2.738-4.742 2.738h-.003c-1.668 0-3.249-.748-4.307-2.039-.85-1.036-1.291-2.335-1.261-3.654v-1.754c-.009-.404.026-.811.106-1.215.021-.105.042-.209.063-.314.365-1.822 1.6-3.348 3.305-4.084 1.37-.591 2.902-.612 4.268-.087-.378-.789-.557-1.642-.543-2.49v-1.811c-.001-.063-.001-.126 0-.189z" fill="none" stroke="#000" stroke-width="4"/><path d="m10.834 7.363c.227-.558.549-1.086.963-1.56h.001c1.06-1.212 2.592-1.907 4.202-1.907s3.142.695 4.202 1.907h.001c.414.474.736 1.002.963 1.56h.409v2c.019 1.099-.288 2.207-.931 3.171-.868 1.302-1.644 2.466-1.644 2.466s.417-.261 1.061-.663c1.575-.985 3.533-1.133 5.239-.397 1.494.645 2.628 1.897 3.131 3.423h.343v2h-.001c.013 1.299-.427 2.574-1.264 3.595-1.06 1.292-2.644 2.042-4.315 2.042-.001 0-.002 0-.003 0-1.973 0-3.795-1.057-4.774-2.77l-1.144-2.003 1.727 7.773v2h-6v-2l1.736-7.81-1.197 2.072c-.978 1.694-2.786 2.738-4.742 2.738h-.003c-1.668 0-3.249-.748-4.307-2.039-.85-1.036-1.291-2.335-1.261-3.654v-1.944h.343c.503-1.526 1.637-2.778 3.131-3.423 1.706-.736 3.664-.588 5.239.397.644.402 1.061.663 1.061.663s-.776-1.164-1.644-2.466c-.643-.964-.95-2.072-.931-3.171v-2z" fill="#474747"/><path d="m14.594 18.435-1.055 1.827c-.978 1.694-2.786 2.738-4.742 2.738h-.003c-1.668 0-3.249-.748-4.307-2.039-1.058-1.29-1.482-2.987-1.155-4.623.021-.105.042-.209.063-.314.365-1.822 1.6-3.348 3.305-4.084 1.706-.736 3.664-.588 5.239.397.644.402 1.061.663 1.061.663s-.776-1.164-1.644-2.466c-1.39-2.085-1.21-4.844.441-6.731h.001c1.06-1.212 2.592-1.907 4.202-1.907s3.142.695 4.202 1.907h.001c1.651 1.887 1.831 4.646.441 6.731-.868 1.302-1.644 2.466-1.644 2.466s.417-.261 1.061-.663c1.575-.985 3.533-1.133 5.239-.397 1.705.736 2.94 2.262 3.305 4.084.02.101.04.201.06.302.328 1.639-.096 3.339-1.156 4.632-1.06 1.292-2.644 2.042-4.315 2.042-.001 0-.002 0-.003 0-1.973 0-3.795-1.057-4.774-2.77l-1.005-1.759 1.588 9.529h-6z" fill="#717171"/></g></svg>
|
|
Before Width: | Height: | Size: 2.7 KiB |
|
@ -1 +0,0 @@
|
||||||
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.41421" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><clipPath id="a"><path clip-rule="evenodd" d="m0 0h32v32h-32z"/></clipPath><metadata/><path d="m0 0h32v32h-32z" fill="none"/><g clip-path="url(#a)"><path d="m0 0h32v32h-32z"/><path d="m30 2h-28v22l1 .5-1 .5v5h28v-5l-1-.5 1-.5z" fill="#4d4d4d"/><path d="m2 24h28v1h-28z" fill="#333"/><g fill="#808080"><path d="m4 26h2v1h-2z"/><path d="m4 28h2v1h-2z"/><path d="m7 26h2v1h-2z"/><path d="m7 28h2v1h-2z"/><path d="m10 26h2v1h-2z"/><path d="m10 28h2v1h-2z"/></g><path d="m25 26h3v3h-3z" fill="#219555"/><circle cx="14.5" cy="27.5" fill="#333" r="1.5"/><circle cx="18.5" cy="27.5" fill="#333" r="1.5"/><circle cx="22.5" cy="27.5" fill="#333" r="1.5"/><path d="m24 4 1 .501 1-.501h.002c1.103 0 1.998.895 1.998 1.998v2.002l-.157.23.037 8.55.12.205v3.015c0 1.105-.895 2-2 2-2.37 0-6 0-6 0l-1-.239-1 .239h-6l-1-.211-1 .211h-4l-1.664-2 .014-6.683-.35-.317v-7c0-.53.211-1.039.586-1.414.124-.125.264-.231.414-.318l1 .304 1-.572h5l1 .376 1-.376h2l1 .535 1-.535z"/><path d="m6 4h1v4h-2v-3.732c.301-.174.646-.268 1-.268z" fill="#060"/><path d="m8 7h2v7h-2z" fill="#060"/><path d="m8 13h2v3h-2z" fill="#0f0"/><path d="m10 14h2v7h-2z" fill="#060"/><path d="m10 20h2v2h-2z" fill="#0f0"/><path d="m12 4h2v5h-2z" fill="#060"/><path d="m12 8h2v3h-2z" fill="#0f0"/><path d="m18 15h2v7h-2z" fill="#060"/><path d="m18 21h2v1h-2z" fill="#0f0"/><path d="m16 4h2v2h-2z" fill="#060"/><path d="m16 5h2v3h-2z" fill="#0f0"/><path d="m22 12h2v7h-2z" fill="#060"/><path d="m22 18h2v3h-2z" fill="#0f0"/><path d="m5 7h2v3h-2z" fill="#0f0"/><path d="m24 4h2v5h-2z" fill="#060"/><path d="m24 8h2v3h-2z" fill="#0f0"/><path d="m15 11h2v7h-2z" fill="#060"/><path d="m15 17h2v3h-2z" fill="#0f0"/><path d="m27 8h1v7h-1z" fill="#060"/><path d="m27 14h1v3h-1z" fill="#0f0"/><path d="m4 13h2v7h-2z" fill="#060"/><path d="m6 19h-2v1c0 1.105.895 2 2 2z" fill="#0f0"/><path d="m20 5h2v7h-2z" fill="#060"/><path d="m20 11h2v3h-2z" fill="#0f0"/></g></svg>
|
|
Before Width: | Height: | Size: 2 KiB |