This commit is contained in:
TheEmeraldStarr 2020-09-11 14:35:04 -07:00
parent 7900d0e731
commit f3acf47f19
4 changed files with 1 additions and 97 deletions

File diff suppressed because one or more lines are too long

View file

@ -1,83 +0,0 @@
.gembed {
width: 80%;
height: 800%;
top: 0;
bottom: 0;
left: 0;
right: 0;
position: fixed;
}
.fbody {
background-color: black;
color: rgb(0, 0, 0);
font-family: sans-serif;
}
.glink {
display: block;
text-decoration: none;
color: white;
font: 18px;
border: 1px solid rgb(255, 166, 0);
margin-top: -1px;
background-color: #000000;
padding: 12px;
transition: 0.2s ease;
}
.glink:hover {
background-color: rgb(0, 0, 0);
text-shadow: 0 0 5px rgba(255, 255, 255, 0.4);
}
#gsearchbar {
outline: none;
width: 374px;
top: 12px;
font-size: 16px;
border: 1px solid rgba(255, 115, 0, 0.3);
padding: 12px;
margin-bottom: 12px;
transition: 0.2s ease;
}
#gsearchbar:focus {
background-color: rgb(29, 27, 27);
box-shadow: inset 0 0 5px 1px rgba(0, 0, 0, 0.4);
}
.container {
padding: 20px;
}
.box {
margin: auto;
background-color: wblack;
padding: 10px 10px 15px 10px;
width: 420px;
height: 540px;
}
#glist {
overflow-x: hidden;
overflow-y: scroll;
width: 400px;
height: 520px;
padding: 0;
text-align: center;
}
#glist h2 {
display: block;
text-decoration: none;
color: white;
font: 18px;
border: 1px solid #060606;
margin: -1px 0 0 0;
background-color: #060606;
padding: 12px;
font-weight: bold;
user-select: none;
}

View file

@ -1,3 +0,0 @@
input {
}

View file

@ -1,4 +0,0 @@
function gsearch() {
var e, t, n, a;
for (e = document.getElementById("gsearchbar").value.toUpperCase(), t = document.getElementById("glist"), a = 0; a < t.querySelectorAll("a[href]").length; a++)(n = t.getElementsByTagName("a")[a]).innerHTML.toUpperCase().indexOf(e) > -1 ? n.style.display = "block" : n.style.display = "none"
}