Skip to content

Commit

Permalink
Update gorilla-type.html
Browse files Browse the repository at this point in the history
  • Loading branch information
VocalNutria9174 committed Feb 9, 2022
1 parent 73b8678 commit 7389ccc
Showing 1 changed file with 46 additions and 19 deletions.
65 changes: 46 additions & 19 deletions gorilla-type.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
<!-- Gorilla-Type is based off of the original monkeytype from CodePen. -->
<!-- https://codepen.io/Miodec/pen/wvaQQRR -->

<!-- Remade by: VocalNutria9174 -->
<!-- [https://github.com/VocalNutria9174/epic-site] -->
<!-- [|=)] -->
<!-- [|=)] -->
<!DOCTYPE html>
<html lang="en">
<head>
Expand Down Expand Up @@ -54,28 +53,28 @@
<div class="mainLogo">gorilla-type</div>
</div>
<div id="menu">
<div onclick="restartTest();" title="New Test" class="button" tabindex="2">
<div onclick="restartTest();" title="New Test!" class="button" tabindex="2">
<div class="icon">
<i class="fas fa-fw fa-keyboard"></i>
</div>
<div class="text">
Test
</div>
</div>
<div class="button" tabindex="2">
<div onclick="readmeRedir();" title="Info Page!" class="button" tabindex="2">
<div class="icon">
<i class="fas fa-fw fa-info"></i>
</div>
<div class="text">
About
</div>
</div>
</div>
<div class="button" tabindex="2">
<div class="icon">
<i class="fas fa-fw fa-cog"></i>
<i title="Open Command Line!" onclick="showCommandLine()" class="fas fa-fw fa-cog"></i>
</div>
<div class="text">
Settings
Commands
</div>
</div>
</div>
Expand Down Expand Up @@ -143,8 +142,9 @@
<div id="liveWpm" class="hidden">-</div>
</div>
<div id="bottom">
<img src="gorllia-icon.png" title="A Good Gorilla! =]" width="20" height="20"> Created by <a href="https://codepen.io/Miodec/pen/wvaQQRR">Miodec</a><br>
<img src="gorllia-icon.png" title="Another Good Gorilla! =]" width="20" height="20"> Recreated by <a href="https://github.com/VocalNutria9174/epic-site">VocalNutria9174</a><br>
<img src="gorilla-icon.png" title="A Good Gorilla! =]" width="20" height="20"> Created by <a href="https://codepen.io/Miodec/pen/wvaQQRR/">Miodec</a> <img src="gorilla-icon.png" title="A Good Gorilla! =]" width="20" height="20"><br>
<img src="gorilla-icon.png" title="Another Good Gorilla! =]" width="20" height="20"> Recreated by <a href="https://github.com/VocalNutria9174/epic-site/">VocalNutria9174</a> <img src="gorilla-icon.png" title="Another Good Gorilla! =]" width="20" height="20"><br>
<img src="gorilla-icon.png" title="Another Gorilla, but even better! =]" width="20" height="20"> - <a href="https://github.com/VocalNutria9174/gorilla-type/" title="Github is PogChamp!">Github</a> - <img src="gorilla-icon.png" title="Oh would you look at that, another Gorilla! =]" width="20" height="20"><br>
</div>
</div>
<br>
Expand Down Expand Up @@ -360,7 +360,22 @@
"type",
"escape",
"study",
"social"];
"social",
"result",
"jump",
"left",
"north",
"south",
"east",
"west",
"quick",
"vigilant",
"dog",
"cat",
"word",
"drink",
"slide",
"cloud"];

let wordsList = [];
let currentWordIndex = 0;
Expand Down Expand Up @@ -1171,6 +1186,14 @@
exec: () => {
currentCommands = commandsWordCount;
showCommandLine();
} },

{
id: "",
display: "Close Command Line...",
subgroup: true,
exec: () => {
hideCommandLine();
} }] };


Expand Down Expand Up @@ -1393,6 +1416,10 @@
}
$(window).on('load', function() {
restartTest();});

function readmeRedir() {
window.location.href = "https://github.com/VocalNutria9174/gorilla-type/blob/main/README.md";
}
</script>
<style>
@import url("https://fonts.googleapis.com/css?family=Roboto+Mono&display=swap");
Expand All @@ -1405,7 +1432,7 @@
--roundness: 0.25rem;
}

/*
/*
:root {
--main-color: #111;
--sub-color: #444;
Expand Down Expand Up @@ -1927,14 +1954,14 @@

.mainLogo {
font-family: "Roboto Mono";
-webkit-animation: rainbow 5s infinite;
-webkit-animation: rainbow 5s infinite;
-ms-animation: rainbow 5s infinite;
animation: rainbow 5s infinite;
animation: rainbow 5s infinite;
}

@-webkit-keyframes rainbow{
0%{color: orange;}
10%{color: purple;}
0%{color: orange;}
10%{color: purple;}
20%{color: red;}
30%{color: CadetBlue;}
40%{color: yellow;}
Expand All @@ -1947,8 +1974,8 @@
}

@-ms-keyframes rainbow{
0%{color: orange;}
10%{color: purple;}
0%{color: orange;}
10%{color: purple;}
20%{color: red;}
30%{color: CadetBlue;}
40%{color: yellow;}
Expand All @@ -1961,8 +1988,8 @@
}

@keyframes rainbow{
0%{color: orange;}
10%{color: purple;}
0%{color: orange;}
10%{color: purple;}
20%{color: red;}
30%{color: CadetBlue;}
40%{color: yellow;}
Expand Down

0 comments on commit 7389ccc

Please sign in to comment.