This repository has been archived by the owner on Jul 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8460818
commit 1fac9cc
Showing
27 changed files
with
252 additions
and
39 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
function search_tags() { | ||
let input = document.getElementById('searchbar').value | ||
input=input.toLowerCase(); | ||
let hide_title = document.getElementsByClassName('hide_on_search'); | ||
let x = document.getElementsByClassName('search_tags'); | ||
let count = 0; | ||
for (i = 0; i < x.length; i++) { | ||
if (!x[i].innerHTML.toLowerCase().includes(input)) { | ||
x[i].closest("div > a").parentElement.style.display="none"; | ||
} | ||
else { | ||
x[i].closest("div > a").parentElement.style.display="initial"; | ||
count+=1; | ||
} | ||
} | ||
if (input != ""){ | ||
if (count > 0){ | ||
document.getElementById("search_result_count").innerHTML = count + " results found." | ||
} | ||
else { | ||
document.getElementById("search_result_count").innerHTML = "no tags found, try again using another keyword." | ||
} | ||
for (i = 0; i < hide_title.length; i++) { | ||
hide_title[i].style.display="none"; | ||
hide_title[i].parentElement.classList.remove("border-b-2","py-10"); | ||
hide_title[i].parentElement.classList.add("py-1"); | ||
} | ||
} | ||
else { | ||
document.getElementById("search_result_count").innerHTML = ""; | ||
for (i = 0; i < hide_title.length; i++) { | ||
hide_title[i].style.display="flex"; | ||
hide_title[i].parentElement.classList.add("py-1"); | ||
hide_title[i].parentElement.classList.add("border-b-2","py-10"); | ||
} | ||
} | ||
} | ||
function search_table() { | ||
let input = document.getElementById('searchbar').value | ||
input=input.toLowerCase(); | ||
let x = document.getElementsByClassName('search_column'); | ||
let count = 0; | ||
for (i = 0; i < x.length; i++) { | ||
if (!x[i].innerHTML.toLowerCase().includes(input)) { | ||
x[i].parentElement.style.display="none"; | ||
console.log(x[i].parentElement) | ||
} | ||
else { | ||
x[i].parentElement.style.display=""; | ||
console.log(x[i].parentElement) | ||
count+=1; | ||
} | ||
} | ||
if (input != ""){ | ||
if (count > 0){ | ||
document.getElementById("search_result_count").innerHTML = count + " results found." | ||
} | ||
else { | ||
document.getElementById("search_result_count").innerHTML = "no tags found, try again using another keyword." | ||
} | ||
} | ||
else { | ||
document.getElementById("search_result_count").innerHTML = ""; | ||
} | ||
} | ||
//coded by someone awesome lol |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
.logo { | ||
background: linear-gradient(217deg, #c54a2e, #da14e4, #2b4ac8); | ||
background-size: 600% 600%; | ||
|
||
-webkit-animation: LogoBlinking 2s ease infinite; | ||
-moz-animation: LogoBlinking 2s ease infinite; | ||
-o-animation: LogoBlinking 2s ease infinite; | ||
animation: LogoBlinking 2s ease infinite; | ||
} | ||
|
||
@-webkit-keyframes LogoBlinking { | ||
0%{background-position:90% 0%} | ||
50%{background-position:11% 100%} | ||
100%{background-position:90% 0%} | ||
} | ||
@-moz-keyframes LogoBlinking { | ||
0%{background-position:90% 0%} | ||
50%{background-position:11% 100%} | ||
100%{background-position:90% 0%} | ||
} | ||
@-o-keyframes LogoBlinking { | ||
0%{background-position:90% 0%} | ||
50%{background-position:11% 100%} | ||
100%{background-position:90% 0%} | ||
} | ||
@keyframes LogoBlinking { | ||
0%{background-position:90% 0%} | ||
50%{background-position:11% 100%} | ||
100%{background-position:90% 0%} | ||
} | ||
|
||
pre { | ||
margin-top: 10px; | ||
margin-bottom: 10px; | ||
padding: 5px; | ||
background-color: rgb(128, 128, 128, 0.2); | ||
} | ||
|
||
code { | ||
padding: 3px; | ||
background: black; | ||
color: rgb(167,139,250); | ||
} | ||
|
||
p a { | ||
color: #da14e4; | ||
text-decoration: underline; | ||
} | ||
h1{ | ||
font-size: 140% !important; | ||
font-weight: bold; | ||
} | ||
h2{ | ||
font-size: 130% !important; | ||
font-weight: bold; | ||
} | ||
h3{ | ||
font-size: 115% !important; | ||
font-weight: bold; | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.