This commit is contained in:
blank X 2019-03-04 01:53:36 +07:00
parent 540db095b3
commit 63b9bfd277
Signed by: blankie
GPG Key ID: CC15FC822C7F61F5
2 changed files with 28 additions and 13 deletions

View File

@ -33,7 +33,7 @@ p, a, h1, h2, li {
p, p.white_fix, i.white, li, a.white {
color: white;
}
a, h1, p.green, i, h2 {
a, h1, p.green, i, h2, a.green {
color: lime;
}
body {
@ -111,7 +111,7 @@ div.no {
font-size: 0px;
display: none;
}
a.quoting, p.quoting {
a.quoting {
line-height: 1.6;
color: white;
}

View File

@ -19,38 +19,53 @@
<a class='quoting'>"What is going on right now?"</a><p class='h' aria-hidden='true'></p>
<a class='quoting'>"The blank entity has exhibited signs of awareness. - 02/05/19, The Ape"</a><p class='h' aria-hidden='true'></p>
<a class='quoting'>"This is quote town"</a><p class='h' aria-hidden='true'></p>
<a class='quoting'>"This <p class='quoting' id='ret'>------</p>ed guy is the one who started it :----------D"</a><p class='h' aria-hidden='true'></p>
<a class='quoting' id='ret'>"This ------ed guy is the one who started it :----------D"</a><p class='h' aria-hidden='true'></p>
<a class='quoting'>"Touhou Garbage"</a><p class='h' aria-hidden='true'></p>
<a class='quoting'>"Were you the ball?"</a><p class='h' aria-hidden='true'></p>
<a class='quoting'>"Ok, let's listen to the best song in the entire world."</a><p class='h' aria-hidden='true'></p>
<a class='quoting'>"Remember the Commodore 64 please."</a><p class='h' aria-hidden='true'></p>
<a class='quoting'>"I'M A RAT!"</a><p class='h' aria-hidden='true'></p>
<a class='quoting'>"I'm not a Ni ga <!-- the n word basically -->"</a><p class='h' aria-hidden='true'></p>
<a class='quoting'>"I'm a <p class='quoting' id='wus'>----</a>"</p><p class='h' aria-hidden='true'></p>
<a class='quoting'>"Kanji is basically... complex <p class='white' id='shi'>----</p>"</a><p class='h' aria-hidden='true'></p>
<a class='quoting'>"No <p class='quoting' id='shi'>----</p>"</a><p class='h' aria-hidden='true'></p>
<a class='quoting' id='wus'>"I'm a ----"</p><p class='h' aria-hidden='true'></p>
<a class='quoting' id='shiz'>"Kanji is basically... complex ----"</a><p class='h' aria-hidden='true'></p>
<a class='quoting' id='shio'>"No ----"</a><p class='h' aria-hidden='true'></p>
<a class='quoting' href='https://youtu.be/dAqC07wsbOk?t=274'>"Hiss and scratch"</a><p class='h' aria-hidden='true'></p>
<script src='toc.js'></script>
<p aria-hidden=true class='h' id='hh'>0</p>
<script>
var ret-unun = "\"This ------ed guy is the one who started it :----------D\"";
var ret-un = "\"This retarded guy is the one who started it :----------D\"";
var wus-unun = "\"I'm a ----\"";
var wus-un = "\"I'm a wuss\"";
var shiz-unun = "\"Kanji is basically... complex -----\"";
var shiz-un = "\"Kanji is basically... complex shit\"";
var shio-unun = "\"No ----\"";
var shio-un = "\"No shit\"";
var p = "<p id='sho' onclick='s()'>Show swear words (Yes, this is clickable)</p>";
var inn = document.getElementById("shodiv");
inn.innerHTML = p;
var rett = document.getElementById("ret");
var wuss = document.getElementById("wus");
var shii = document.getElementById("shi");
var shiz = document.getElementById("shiz");
var shii = document.getElementById("shio");
var shoo = document.getElementById("sho");
var ffff = document.getElementById("hh");
function shows() {
rett.innerHTML = "retard";
wuss.innerHTML = "wuss";
shii.innerHTML = "shit";
rett.innerHTML = ret-un;
wuss.innerHTML = wus-un;
shiz.innerHTML = shiz-un;
shio.innerHTML = shio-un;
shoo.innerHTML = "Hide swear words";
}
function hides() {
rett.innerHTML = "------";
wuss.innerHTML = "----";
shii.innerHTML = "----";
rett.innerHTML = ret-unun;
wuss.innerHTML = wus-unun;
shiz.innerHTML = shiz-unun;
shio.innerHTML = shio-unun;
shoo.innerHTML = "Show swear words";
}
function s() {