New poem: Library Prompt I
This commit is contained in:
parent
4a014edc44
commit
8289fecf5e
|
@ -109,6 +109,18 @@
|
||||||
<td>Sarah Glenn Marsh</td>
|
<td>Sarah Glenn Marsh</td>
|
||||||
<td></td>
|
<td></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2024-W11</td>
|
||||||
|
<td>Poems</td>
|
||||||
|
<td>Rita Mae Brown</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2024-W12</td>
|
||||||
|
<td>The Perfectionist's Guide to Losing Control</td>
|
||||||
|
<td>Katherine Morgan Schafler</td>
|
||||||
|
<td>Mild genderism here and there, but otherwise an amazing book.</td>
|
||||||
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -71,12 +71,30 @@
|
||||||
<td>2024-W6</td>
|
<td>2024-W6</td>
|
||||||
<td>Collection</td>
|
<td>Collection</td>
|
||||||
<td>Tracy Chapman</td>
|
<td>Tracy Chapman</td>
|
||||||
<td></td>
|
<td>The hype for "Fast Car" didn't deliver.</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>2024-W7</td>
|
<td>2024-W7</td>
|
||||||
<td>Other Worlds</td>
|
<td>Other Worlds</td>
|
||||||
<td>The Pretty Reckless</td>
|
<td>The Pretty Reckless</td>
|
||||||
|
<td>Favorite track: <b>Got So High</b></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2024-W8</td>
|
||||||
|
<td>The Best Of The Vanguard Years</td>
|
||||||
|
<td>Joan Baez</td>
|
||||||
|
<td>Favorite track: <b>It's All Over Now, Baby Blue</b></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2024-W9</td>
|
||||||
|
<td>From There / To Here: UK / US Recordings 1974-1982</td>
|
||||||
|
<td>Bridget St. John</td>
|
||||||
|
<td>On the first song of the first disc, "Sparrowpit", I thought at first I'd accidentally downloaded a parody album, but no: her voice <em>really</em> sounded like that. A few songs later, her voice was back to normal. I must admit I really liked the voice effects on "Jumble Queen".</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2024-W10</td>
|
||||||
|
<td>The Asylum Albums (1972-1975)</td>
|
||||||
|
<td>Joni Mitchell</td>
|
||||||
<td></td>
|
<td></td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,130 @@
|
||||||
|
<!--
|
||||||
|
|
||||||
|
/* "Regalia" for Layout V4 */
|
||||||
|
|
||||||
|
body {
|
||||||
|
background-color: #5c7e70;
|
||||||
|
font-family: monospace;
|
||||||
|
color: #FFFFFF;
|
||||||
|
max-width:900px;
|
||||||
|
margin: auto;
|
||||||
|
font-size: large;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.center {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.index {
|
||||||
|
max-width: 551px;
|
||||||
|
}
|
||||||
|
|
||||||
|
a, a:visited {
|
||||||
|
color: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box, .card, nav, .check {
|
||||||
|
margin-top: 3%;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
padding: 10px 10px 5px 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box, .card, nav {
|
||||||
|
background: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.check {
|
||||||
|
background: #1114;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box-smaller {
|
||||||
|
max-width: 700px;
|
||||||
|
}
|
||||||
|
|
||||||
|
table {
|
||||||
|
width: 100%;
|
||||||
|
padding: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
article a, ul a, td a, .bruh {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre {
|
||||||
|
font-size: small;
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
hr {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
b, strong {
|
||||||
|
color: yellow;
|
||||||
|
}
|
||||||
|
|
||||||
|
code {
|
||||||
|
color: violet;
|
||||||
|
}
|
||||||
|
|
||||||
|
i, em {
|
||||||
|
color: red;
|
||||||
|
}
|
||||||
|
|
||||||
|
td {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
img.big {
|
||||||
|
max-width: 100%;
|
||||||
|
height: auto;
|
||||||
|
display: block;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* https://www.svgrepo.com/svg/6977/star */
|
||||||
|
.based {
|
||||||
|
list-style: url('./css/star.svg');
|
||||||
|
}
|
||||||
|
|
||||||
|
/* https://orangeable.com/css/animated-gradient-text */
|
||||||
|
|
||||||
|
.lesbian {
|
||||||
|
background: linear-gradient(-45deg, #D52D00, #EF7627, #FF9A56, #FFFFFF, #D162A4, #B55690, #A30262);
|
||||||
|
background-size: 300%;
|
||||||
|
font-weight: bold;
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
-webkit-text-fill-color: transparent;
|
||||||
|
animation: animated_text 8s ease-in-out infinite;
|
||||||
|
-moz-animation: animated_text 8s ease-in-out infinite;
|
||||||
|
-webkit-animation: animated_text 8s ease-in-out infinite;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes animated_text {
|
||||||
|
0% { background-position: 0px 50%; }
|
||||||
|
50% { background-position: 100% 50%; }
|
||||||
|
100% { background-position: 0px 50%; }
|
||||||
|
}
|
||||||
|
|
||||||
|
/* http://xjfbpuj56rdazx4iolylxplbvyft2onuerjeimlcqwaihp3s6r4xebqd.onion/about-foogallery-video/ */
|
||||||
|
|
||||||
|
#player-overlay {
|
||||||
|
position: relative;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background-color: #000;
|
||||||
|
z-index: 999;
|
||||||
|
}
|
||||||
|
|
||||||
|
video {
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
-->
|
16
index.gmi
16
index.gmi
|
@ -1,29 +1,31 @@
|
||||||
# Welcome to MayVaneDay Studios!
|
# Welcome to MayVaneDay Studios!
|
||||||
|
|
||||||
```
|
```
|
||||||
before, in your grief, you decree
|
before, in your grief, the heavens you beseech
|
||||||
"my life is over; there's no one left to be"
|
"direct my actions; the world I want's beyond reach"
|
||||||
just remember how there's a world only you can perceive
|
just remember all the men who ever deemed you "leech"
|
||||||
```
|
```
|
||||||
=> poetry/a/airborne.txt - "airborne"
|
=> poetry/a/adamantines_mandate.txt - "ADAMANTINE'S MANDATE"
|
||||||
|
|
||||||
=> books/ Books
|
=> books/ Books
|
||||||
=> poetry/ Poetry
|
=> poetry/ Poetry
|
||||||
=> garden/ Garden
|
|
||||||
|
|
||||||
=> women.md The big list of women who did things
|
=> women.md The big list of women who did things
|
||||||
=> nomad.md A Nomadic Manifesto
|
=> nomad.md A Nomadic Manifesto
|
||||||
=> https://letsdecentralize.org Let's Decentralize
|
=> https://letsdecentralize.org Let's Decentralize
|
||||||
|
=> https://deadendshrine.online Dead End Shrine Online
|
||||||
=> public.gpg My GPG key
|
=> public.gpg My GPG key
|
||||||
=> identity/index.html Identity & Contact
|
=> identity/index.html Identity & Contact
|
||||||
|
|
||||||
Also available on:
|
Also available on:
|
||||||
|
|
||||||
=> gemini://mayvaneday.org Gemini (Clearnet)
|
|
||||||
=> gemini://meynethaffeecapsvfphrcnfrx44w2nskgls2juwitibvqctk2plvhqd.onion Gemini (Tor)
|
=> gemini://meynethaffeecapsvfphrcnfrx44w2nskgls2juwitibvqctk2plvhqd.onion Gemini (Tor)
|
||||||
=> gopher://meynethaffeecapsvfphrcnfrx44w2nskgls2juwitibvqctk2plvhqd.onion Gopher (Tor)
|
=> gopher://meynethaffeecapsvfphrcnfrx44w2nskgls2juwitibvqctk2plvhqd.onion Gopher (Tor)
|
||||||
=> http://meynethaffeecapsvfphrcnfrx44w2nskgls2juwitibvqctk2plvhqd.onion HTTP (Tor)
|
=> http://meynethaffeecapsvfphrcnfrx44w2nskgls2juwitibvqctk2plvhqd.onion HTTP (Tor)
|
||||||
|
=> http://zli2qsg54w7y42vgw4xxlnj4nktcpg7xp33yjxkp33sjafvznbwa.b32.i2p HTTP (I2P)
|
||||||
|
=> http://yggdrasil.mayvane.day HTTP (Yggdrasil)
|
||||||
|
=> nex://yggdrasil.mayvane.day Nex (Yggdrasil)
|
||||||
=> spartan://meynethaffeecapsvfphrcnfrx44w2nskgls2juwitibvqctk2plvhqd.onion:3000 Spartan (Tor)
|
=> spartan://meynethaffeecapsvfphrcnfrx44w2nskgls2juwitibvqctk2plvhqd.onion:3000 Spartan (Tor)
|
||||||
=> http://zli2qsg54w7y42vgw4xxlnj4nktcpg7xp33yjxkp33sjafvznbwa.b32.i2p I2P
|
=> spartan://yggdrasil.mayvane.day Spartan (Yggdrasil)
|
||||||
=> http://127.0.0.1:8888/USK@Up0ipQCQjyY2PaGofU-P63kJMb54E0~2xZiUnyxPypM,rGmJhPDVou6DwS6Eh23sZ93hVbDaA6v4D5l3vWsN-oY,AQACAAE/mayvaneday/-1/ Freenet
|
=> http://127.0.0.1:8888/USK@Up0ipQCQjyY2PaGofU-P63kJMb54E0~2xZiUnyxPypM,rGmJhPDVou6DwS6Eh23sZ93hVbDaA6v4D5l3vWsN-oY,AQACAAE/mayvaneday/-1/ Freenet
|
||||||
=> ipns://mayvaneday.org IPFS
|
=> ipns://mayvaneday.org IPFS
|
||||||
|
|
16
index.html
16
index.html
|
@ -50,14 +50,11 @@
|
||||||
<li><a href="./books/tsf.epub">The Samhain Files</a></li>
|
<li><a href="./books/tsf.epub">The Samhain Files</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<hr>
|
<!-- <hr>
|
||||||
<div class="box">
|
<div class="box">
|
||||||
<h3>Announcement Box</h3>
|
<h3>Announcement Box</h3>
|
||||||
<ul>
|
|
||||||
<li>2024-01-23: I am going in for a surgical appointment the last day of this month. There is a nonzero chance I am going to die. We will see what happens either way.</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
</div>
|
||||||
<hr>
|
--> <hr>
|
||||||
<div class="box">
|
<div class="box">
|
||||||
<p class="center">
|
<p class="center">
|
||||||
<a href="./blog/index.html">[Blog]</a>
|
<a href="./blog/index.html">[Blog]</a>
|
||||||
|
@ -73,14 +70,15 @@
|
||||||
</div>
|
</div>
|
||||||
<hr>
|
<hr>
|
||||||
<div class="box center">
|
<div class="box center">
|
||||||
|
<p>
|
||||||
<a href="http://127.0.0.1:8082/ipns/mayvaneday.org/">[IPFS]</a>
|
<a href="http://127.0.0.1:8082/ipns/mayvaneday.org/">[IPFS]</a>
|
||||||
<a href="http://meynethaffeecapsvfphrcnfrx44w2nskgls2juwitibvqctk2plvhqd.onion">[Tor]</a>
|
|
||||||
<a href="http://zli2qsg54w7y42vgw4xxlnj4nktcpg7xp33yjxkp33sjafvznbwa.b32.i2p">[I2P]</a>
|
|
||||||
<!-- <a href="http://yggdrasil.mayvaneday.art">[Yggdrasil]</a> -->
|
|
||||||
<a href="http://127.0.0.1:8888/USK@Up0ipQCQjyY2PaGofU-P63kJMb54E0~2xZiUnyxPypM,rGmJhPDVou6DwS6Eh23sZ93hVbDaA6v4D5l3vWsN-oY,AQACAAE/mayvaneday/-1/">[Freenet]</a>
|
<a href="http://127.0.0.1:8888/USK@Up0ipQCQjyY2PaGofU-P63kJMb54E0~2xZiUnyxPypM,rGmJhPDVou6DwS6Eh23sZ93hVbDaA6v4D5l3vWsN-oY,AQACAAE/mayvaneday/-1/">[Freenet]</a>
|
||||||
<a href="https://codeberg.org/lethe/mayvaneday">[Git]</a>
|
<a href="https://codeberg.org/lethe/mayvaneday">[Git]</a>
|
||||||
|
</p>
|
||||||
|
<p>HTTP over: <a href="http://meynethaffeecapsvfphrcnfrx44w2nskgls2juwitibvqctk2plvhqd.onion">[Tor]</a> <a href="http://zli2qsg54w7y42vgw4xxlnj4nktcpg7xp33yjxkp33sjafvznbwa.b32.i2p">[I2P]</a> <a href="http://yggdrasil.mayvaneday.art">[Yggdrasil]</a></p>
|
||||||
|
<p>Spartan over: <a href="spartan://meynethaffeecapsvfphrcnfrx44w2nskgls2juwitibvqctk2plvhqd.onion">[Tor]</a> <a href="spartan://yggdrasil.mayvane.day">[Yggdrasil]</a></p>
|
||||||
<a href="gemini://meynethaffeecapsvfphrcnfrx44w2nskgls2juwitibvqctk2plvhqd.onion">[Gemini over Tor]</a>
|
<a href="gemini://meynethaffeecapsvfphrcnfrx44w2nskgls2juwitibvqctk2plvhqd.onion">[Gemini over Tor]</a>
|
||||||
<a href="spartan://meynethaffeecapsvfphrcnfrx44w2nskgls2juwitibvqctk2plvhqd.onion">[Spartan over Tor]</a>
|
<a href="nex://yggdrasil.mayvane.day">[Nex over Yggdrasil]</a>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -98,6 +98,7 @@
|
||||||
=> l/lovesmenot.txt loves me not
|
=> l/lovesmenot.txt loves me not
|
||||||
=> l/lawliet.txt Lawliet
|
=> l/lawliet.txt Lawliet
|
||||||
=> l/latch-or-perch.txt Latch Or Perch
|
=> l/latch-or-perch.txt Latch Or Perch
|
||||||
|
=> l/library1.txt Library Prompt I
|
||||||
|
|
||||||
## M
|
## M
|
||||||
=> m/melia.txt Melia
|
=> m/melia.txt Melia
|
||||||
|
|
|
@ -99,6 +99,7 @@ iL
|
||||||
0loves me not l/lovesmenot.txt
|
0loves me not l/lovesmenot.txt
|
||||||
0Lawliet l/lawliet.txt
|
0Lawliet l/lawliet.txt
|
||||||
0Latch Or Perch l/latch-or-perch.txt
|
0Latch Or Perch l/latch-or-perch.txt
|
||||||
|
0Library Prompt I l/library1.txt
|
||||||
|
|
||||||
iM
|
iM
|
||||||
0Melia m/melia.txt
|
0Melia m/melia.txt
|
||||||
|
|
|
@ -114,6 +114,7 @@
|
||||||
│ ├── <a href="./l/la-somero-de-amo.txt">la-somero-de-amo.txt</a><br>
|
│ ├── <a href="./l/la-somero-de-amo.txt">la-somero-de-amo.txt</a><br>
|
||||||
│ ├── <a href="./l/latch-or-perch.txt">latch-or-perch.txt</a><br>
|
│ ├── <a href="./l/latch-or-perch.txt">latch-or-perch.txt</a><br>
|
||||||
│ ├── <a href="./l/lawliet.txt">lawliet.txt</a><br>
|
│ ├── <a href="./l/lawliet.txt">lawliet.txt</a><br>
|
||||||
|
│ ├── <a href="./l/library1.txt">library1.txt</a><br>
|
||||||
│ ├── <a href="./l/lovesmenot.txt">lovesmenot.txt</a><br>
|
│ ├── <a href="./l/lovesmenot.txt">lovesmenot.txt</a><br>
|
||||||
│ ├── <a href="./l/lumo-en-vivo.txt">lumo-en-vivo.txt</a><br>
|
│ ├── <a href="./l/lumo-en-vivo.txt">lumo-en-vivo.txt</a><br>
|
||||||
│ ├── <a href="./l/luna2.txt">luna2.txt</a><br>
|
│ ├── <a href="./l/luna2.txt">luna2.txt</a><br>
|
||||||
|
@ -210,7 +211,7 @@
|
||||||
└── <a href="./z/zircons_beacon.txt">zircons_beacon.txt</a><br>
|
└── <a href="./z/zircons_beacon.txt">zircons_beacon.txt</a><br>
|
||||||
<br><br><p>
|
<br><br><p>
|
||||||
|
|
||||||
25 directories, 158 files
|
25 directories, 159 files
|
||||||
|
|
||||||
</p>
|
</p>
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -0,0 +1,47 @@
|
||||||
|
Library Prompt I
|
||||||
|
2024-03-27
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
|
Lethe, the chosen theme
|
||||||
|
this week
|
||||||
|
at the writer's meeting
|
||||||
|
is the hero's journey.
|
||||||
|
Three stages, like a butterfly chrysalis:
|
||||||
|
the initiation,
|
||||||
|
metamorphosis,
|
||||||
|
and then return to the world of origin.
|
||||||
|
|
||||||
|
I wouldn't to you necessarily assign
|
||||||
|
the role of hero: I know you're benign
|
||||||
|
and harbor a weighty guilt at the thought of causing any harm,
|
||||||
|
but then again, we labored so long
|
||||||
|
to unbind you from the chains
|
||||||
|
of your fate
|
||||||
|
so you could without constraint
|
||||||
|
sing your heart's grand song.
|
||||||
|
|
||||||
|
Set out from Rainroom
|
||||||
|
when I thought you'd met certain doom
|
||||||
|
having burned to ash and an Eye passed through.
|
||||||
|
You already know in painful detail
|
||||||
|
how I deteriorated without you there,
|
||||||
|
how I rejoiced when your uncle located
|
||||||
|
where you'd alighted
|
||||||
|
in this Inside
|
||||||
|
against your chaotic will.
|
||||||
|
|
||||||
|
Oh, Lethe, I've been trying to bring you home,
|
||||||
|
to hasten whatever initiation fate demands
|
||||||
|
so we can go live in Sablade just like we always planned.
|
||||||
|
What journeys still lie ahead?
|
||||||
|
What foes to subdue - or befriend instead?
|
||||||
|
What forms to take?
|
||||||
|
What fears to shake?
|
||||||
|
I'll be at your side
|
||||||
|
with my staff and my life
|
||||||
|
even after the writing prompt's timer ends.
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
|
CC BY-NC-SA 4.0 (c) Vane Vander
|
60
style.css
60
style.css
|
@ -1,10 +1,41 @@
|
||||||
<!--
|
<!--
|
||||||
|
|
||||||
/* "Regalia" for Layout V4 */
|
/* "Bartz" for Layout V4 */
|
||||||
|
|
||||||
|
/* https://web.archive.org/web/20240310130126/http://eastfarthing.com/luculent/ */
|
||||||
|
/*
|
||||||
|
@font-face {
|
||||||
|
font-family: 'LuculentBold';
|
||||||
|
src: url('./css/fonts/luculentb.woff');
|
||||||
|
font-weight: bold;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'LuculentBoldItalic';
|
||||||
|
src: url('./css/fonts/luculentbi.woff');
|
||||||
|
font-weight: bold;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'LuculentItalic';
|
||||||
|
src: url('./css/fonts/luculenti.woff');
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'LuculentRegular';
|
||||||
|
src: url('./css/fonts/luculent.woff');
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background-color: #5c7e70;
|
background-color: #cfaf6a;
|
||||||
font-family: monospace;
|
font-family: 'LuculentRegular', monospace;
|
||||||
color: #FFFFFF;
|
color: #FFFFFF;
|
||||||
max-width:900px;
|
max-width:900px;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
|
@ -12,7 +43,7 @@ body {
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.center {
|
td, .center {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,7 +55,7 @@ a, a:visited {
|
||||||
color: inherit;
|
color: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
.box, .card, nav, .check {
|
.box, .card, nav {
|
||||||
margin-top: 3%;
|
margin-top: 3%;
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
|
@ -35,10 +66,6 @@ a, a:visited {
|
||||||
background: #000000;
|
background: #000000;
|
||||||
}
|
}
|
||||||
|
|
||||||
.check {
|
|
||||||
background: #1114;
|
|
||||||
}
|
|
||||||
|
|
||||||
.box-smaller {
|
.box-smaller {
|
||||||
max-width: 700px;
|
max-width: 700px;
|
||||||
}
|
}
|
||||||
|
@ -62,19 +89,15 @@ hr {
|
||||||
}
|
}
|
||||||
|
|
||||||
b, strong {
|
b, strong {
|
||||||
color: yellow;
|
color: #1b8d0e;
|
||||||
}
|
}
|
||||||
|
|
||||||
code {
|
code {
|
||||||
color: violet;
|
color: #a891c5;
|
||||||
}
|
}
|
||||||
|
|
||||||
i, em {
|
i, em {
|
||||||
color: red;
|
color: #007ef7;
|
||||||
}
|
|
||||||
|
|
||||||
td {
|
|
||||||
text-align: center;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
img.big {
|
img.big {
|
||||||
|
@ -85,11 +108,6 @@ img.big {
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* https://www.svgrepo.com/svg/6977/star */
|
|
||||||
.based {
|
|
||||||
list-style: url('./css/star.svg');
|
|
||||||
}
|
|
||||||
|
|
||||||
/* https://orangeable.com/css/animated-gradient-text */
|
/* https://orangeable.com/css/animated-gradient-text */
|
||||||
|
|
||||||
.lesbian {
|
.lesbian {
|
||||||
|
|
Loading…
Reference in New Issue