Compare commits
No commits in common. "9281aec34d8ac7a3cd909c81b864058cd8e37b31" and "633d2f77738e267266494fba5ea3163ae773f02a" have entirely different histories.
9281aec34d
...
633d2f7773
7 changed files with 9 additions and 38 deletions
|
@ -345,12 +345,6 @@
|
|||
"YIP"
|
||||
],
|
||||
"italicized": true
|
||||
},
|
||||
{
|
||||
"words": [
|
||||
"Miley"
|
||||
],
|
||||
"color": "rgb(255, 255, 175)"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -507,8 +507,6 @@ module.exports = {
|
|||
data = new cssMinifier().minify(data).styles
|
||||
} else if (filePath.includes(".js")) {
|
||||
data = javascriptCache[filePath]
|
||||
} else {
|
||||
data = fs.readFileSync(filePath)
|
||||
}
|
||||
|
||||
res.send(data)
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 0 B |
|
@ -19,8 +19,6 @@
|
|||
|
||||
<title>Violet's Purgatory</title>
|
||||
|
||||
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
||||
|
||||
<meta name="darkreader-lock">
|
||||
|
||||
<meta content="Violet's Purgatory" property="og:title" />
|
||||
|
@ -102,12 +100,6 @@
|
|||
|
||||
{SELECTED_VIDEO}
|
||||
|
||||
<hr>
|
||||
<h2>Credits</h2>
|
||||
<ul>
|
||||
<li>New favicon created by <a href="https://x.com/sandyisnumber1">Miley!! (@sandyisnumber1)</a> on Twitter</li>
|
||||
</ul>
|
||||
|
||||
{PATH_STATS}
|
||||
|
||||
<p>{WEATHER_TEXT}</p>
|
||||
|
|
|
@ -42,8 +42,12 @@ function socketeer() {
|
|||
if (data.op == 4) {
|
||||
$("#apiConnected").text("true")
|
||||
globalSpins = data.spins
|
||||
$(".globalSpins").text(globalSpins);
|
||||
|
||||
if (firsttimeDebounce == true) {
|
||||
firsttimeDebounce = false
|
||||
$(".globalSpins").innerHTML = globalSpins + 1;
|
||||
} else {
|
||||
$(".globalSpins").innerHTML = globalSpins;
|
||||
}
|
||||
} else if (data.op == 0) {
|
||||
var lanyard = data.d
|
||||
var statusInfo = discStatuses[lanyard.discord_status]
|
||||
|
|
|
@ -31,7 +31,8 @@
|
|||
<main>
|
||||
<p>Here's most of the sites you can find me on!</p>
|
||||
{SOCIALS}(Full)
|
||||
<p>Sites with a Gray border are my most active.</p>
|
||||
<p>Gray border = preferred, Yellow = neutral, Red = not preferred. <br>
|
||||
Interacting via any site is perfectly fine! E.G. if you use both Fedi and Twitter, Twitter is red, so you should contact me through Fedi instead! But if you don't have Fedi, then just contact me through Twitter!</p>
|
||||
<br>
|
||||
</main>
|
||||
<div id="activityHtml">
|
||||
|
|
|
@ -76,7 +76,7 @@ body, html {
|
|||
}
|
||||
|
||||
a {
|
||||
display: inline;
|
||||
display: inline-block;
|
||||
transition: 1.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
|
||||
}
|
||||
|
||||
|
@ -84,15 +84,6 @@ a[href] {
|
|||
color: rgb(175, 225, 255);
|
||||
}
|
||||
|
||||
a:not(.chip)[href] {
|
||||
text-decoration: none;
|
||||
|
||||
background-image: linear-gradient(rgb(175, 225, 255), rgb(175, 225, 255));
|
||||
background-size: 100% 1px;
|
||||
background-position-y: 100%;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
|
||||
h3 {
|
||||
font-size: 1.5rem;
|
||||
|
@ -276,15 +267,6 @@ ul, ol {
|
|||
max-width: 90%;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
ul > li::before {
|
||||
content: "-";
|
||||
padding-right: 8px;
|
||||
}
|
||||
|
||||
li {
|
||||
font-size: 1.2rem;
|
||||
padding: 5px 0;
|
||||
|
|
Loading…
Reference in a new issue