HAAAAAAAAAAAAAAAA
This commit is contained in:
parent
5a830f0a6f
commit
cdcbb640f7
|
|
@ -96,6 +96,7 @@
|
||||||
<img src="/assets/88x31/queerpride.gif" alt="Queer pride" loading="lazy">
|
<img src="/assets/88x31/queerpride.gif" alt="Queer pride" loading="lazy">
|
||||||
<img src="/assets/88x31/girlsnow.png" alt="Girls Now" loading="lazy">
|
<img src="/assets/88x31/girlsnow.png" alt="Girls Now" loading="lazy">
|
||||||
<img src="/assets/88x31/skirt.gif" alt="Let boys wear skirts" loading="lazy">
|
<img src="/assets/88x31/skirt.gif" alt="Let boys wear skirts" loading="lazy">
|
||||||
|
<img src="/assets/88x31/cutesocks.gif" alt="I wear cute socks!" loading="lazy">
|
||||||
<!-- causes -->
|
<!-- causes -->
|
||||||
<a href="https://archive.org/details/zines-anti-fascism" target="_blank" rel="noopener noreferrer"><img src="/assets/88x31/antifa.gif" alt="No fascism, no bigotry" loading="lazy"></a>
|
<a href="https://archive.org/details/zines-anti-fascism" target="_blank" rel="noopener noreferrer"><img src="/assets/88x31/antifa.gif" alt="No fascism, no bigotry" loading="lazy"></a>
|
||||||
<a href="https://www.youtube.com/watch?v=7AQbhes-Ntw" target="_blank" rel="noopener noreferrer"><img src="/assets/88x31/meltice.gif" alt="Melt ICE" loading="lazy"></a>
|
<a href="https://www.youtube.com/watch?v=7AQbhes-Ntw" target="_blank" rel="noopener noreferrer"><img src="/assets/88x31/meltice.gif" alt="Melt ICE" loading="lazy"></a>
|
||||||
|
|
@ -111,6 +112,9 @@
|
||||||
<img src="/assets/88x31/pokemon.gif" alt="Pokémon" loading="lazy">
|
<img src="/assets/88x31/pokemon.gif" alt="Pokémon" loading="lazy">
|
||||||
<a href="https://www.youtube.com/watch?v=VEj0cuqVJ-I" target="_blank" rel="noopener noreferrer"><img src="/assets/88x31/caramelldansen.gif" alt="Caramelldansen" loading="lazy"></a>
|
<a href="https://www.youtube.com/watch?v=VEj0cuqVJ-I" target="_blank" rel="noopener noreferrer"><img src="/assets/88x31/caramelldansen.gif" alt="Caramelldansen" loading="lazy"></a>
|
||||||
<img src="/assets/88x31/blink.gif" alt="Anime blink" loading="lazy">
|
<img src="/assets/88x31/blink.gif" alt="Anime blink" loading="lazy">
|
||||||
|
<img src="/assets/88x31/miku.gif" alt="This site is Miku approved" loading="lazy">
|
||||||
|
<img src="/assets/88x31/tummy.gif" alt="Anime tummy supporter" loading="lazy">
|
||||||
|
<img src="/assets/88x31/badapple.gif" alt="Bad Apple!!" loading="lazy">
|
||||||
</aside>
|
</aside>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -50,6 +50,9 @@
|
||||||
// observer key off it). Mini friend cards must not duplicate the id.
|
// observer key off it). Mini friend cards must not duplicate the id.
|
||||||
if (!opts.mini) card.id = "discord";
|
if (!opts.mini) card.id = "discord";
|
||||||
card.className = "presence-card" + (opts.mini ? " is-mini" : "") + (opts.tier ? " tier-" + opts.tier : "");
|
card.className = "presence-card" + (opts.mini ? " is-mini" : "") + (opts.tier ? " tier-" + opts.tier : "");
|
||||||
|
// Discord cards default to gg sans (Discord's own font) instead of the page's
|
||||||
|
// Comic Code. Per-name display fonts (set on .pc-name below) still override this.
|
||||||
|
card.style.fontFamily = "'DDN gg sans', sans-serif";
|
||||||
card.hidden = true;
|
card.hidden = true;
|
||||||
card.innerHTML =
|
card.innerHTML =
|
||||||
'<img class="pc-banner" alt="" referrerpolicy="no-referrer" hidden>' +
|
'<img class="pc-banner" alt="" referrerpolicy="no-referrer" hidden>' +
|
||||||
|
|
|
||||||
|
|
@ -81,6 +81,9 @@
|
||||||
var section = document.createElement("section");
|
var section = document.createElement("section");
|
||||||
section.className = "section";
|
section.className = "section";
|
||||||
section.id = slugify(group.title); // anchor target, e.g. #alts
|
section.id = slugify(group.title); // anchor target, e.g. #alts
|
||||||
|
// gg sans (Discord's font) as the default for the whole friends widget —
|
||||||
|
// group headers, subtitles and the cards inside — over the page's Comic Code.
|
||||||
|
section.style.fontFamily = "'DDN gg sans', sans-serif";
|
||||||
|
|
||||||
var h2 = document.createElement("h2");
|
var h2 = document.createElement("h2");
|
||||||
h2.className = "section-title";
|
h2.className = "section-title";
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue