From c9f921518d1393f05f34b0849844067a10f8aa51 Mon Sep 17 00:00:00 2001
From: Guuq <50501321+Guuq@users.noreply.github.com>
Date: Wed, 11 Dec 2019 20:33:38 +0100
Subject: [PATCH] Big changes to the homepage
---
405.html | 52 +++++++++
contact/index.html | 2 +-
contact/thank-you/index.html | 41 ++++++++
css.css | 140 +++++++++++++------------
feedback/index.html | 2 +-
feedback/js.js | 1 -
index.html | 56 ++++++----
js.js | 12 +++
minify/css.css | 31 ++++++
minify/index.html | 63 +++++++++++
minify/js.js | 9 ++
playground/index.html | 2 +-
resources/css/cssall.css | 10 +-
resources/css/navbar.css | 4 +-
resources/img/codepanta.png | Bin 386 -> 0 bytes
resources/img/cross.png | Bin 6984 -> 0 bytes
resources/img/googlemaps.png | Bin 12192 -> 0 bytes
resources/img/googletranslate.png | Bin 125777 -> 0 bytes
resources/img/magister.png | Bin 4514 -> 0 bytes
resources/img/moon.png | Bin 0 -> 19173 bytes
resources/img/onedrive.png | Bin 4984 -> 0 bytes
resources/img/reddit.png | Bin 6723 -> 0 bytes
resources/img/rocket.png | Bin 0 -> 6309 bytes
resources/img/shortcut.png | Bin 23586 -> 0 bytes
resources/img/spotify.png | Bin 68259 -> 0 bytes
resources/img/w3schools.png | Bin 4886 -> 0 bytes
resources/img/youtube.png | Bin 18724 -> 0 bytes
vuurjongen-en-watermeisje-4/index.html | 67 ------------
28 files changed, 325 insertions(+), 167 deletions(-)
create mode 100644 405.html
create mode 100644 contact/thank-you/index.html
delete mode 100644 feedback/js.js
create mode 100644 minify/css.css
create mode 100644 minify/index.html
create mode 100644 minify/js.js
delete mode 100644 resources/img/codepanta.png
delete mode 100644 resources/img/cross.png
delete mode 100644 resources/img/googlemaps.png
delete mode 100644 resources/img/googletranslate.png
delete mode 100644 resources/img/magister.png
create mode 100644 resources/img/moon.png
delete mode 100644 resources/img/onedrive.png
delete mode 100644 resources/img/reddit.png
create mode 100644 resources/img/rocket.png
delete mode 100644 resources/img/shortcut.png
delete mode 100644 resources/img/spotify.png
delete mode 100644 resources/img/w3schools.png
delete mode 100644 resources/img/youtube.png
delete mode 100644 vuurjongen-en-watermeisje-4/index.html
diff --git a/405.html b/405.html
new file mode 100644
index 0000000..8039a80
--- /dev/null
+++ b/405.html
@@ -0,0 +1,52 @@
+
+
+
+
+
Need more info?
-
© 2019 Guus van Meerveld
+
© 2019 Guus van Meerveld
diff --git a/feedback/js.js b/feedback/js.js
deleted file mode 100644
index c81a963..0000000
--- a/feedback/js.js
+++ /dev/null
@@ -1 +0,0 @@
-sdfsfsdf
\ No newline at end of file
diff --git a/index.html b/index.html
index ed217b7..841e021 100644
--- a/index.html
+++ b/index.html
@@ -13,36 +13,46 @@
-
+
-
-
-
Guus van Meerveld
-
-
-
-
+
+
+
Guus van Meerveld
+
+
+
+
+
+
-
-
-
-
This website is built for those who like to code.
-
And it is built by those who like to code
-
Suggest things you would like to see at contact
+
Mijn naam is Guus van Meerveld
+
Ik ben 15 jaar oud en heb deze website gebouwd
+
Als je suggesties hebt, ga dan naar contact
+
+
+
+
+
+
+
Het doel van deze website is om handig tools aan te bieden.
+
+
+
+
+
@@ -75,7 +85,7 @@
-
© 2019 Guus van Meerveld
+
© 2019 Guus van Meerveld
diff --git a/js.js b/js.js
index e69de29..ef8953f 100644
--- a/js.js
+++ b/js.js
@@ -0,0 +1,12 @@
+$(document).ready(function(){
+ $(".slideUp").on('click', function(event) {
+ if (this.hash !== "") {
+ var hash = this.hash;
+ $('html, body').animate({
+ scrollTop: $(hash).offset().top
+ }, 1000, function(){
+ window.location.hash = hash;
+ });
+ }
+ });
+});
diff --git a/minify/css.css b/minify/css.css
new file mode 100644
index 0000000..0008111
--- /dev/null
+++ b/minify/css.css
@@ -0,0 +1,31 @@
+.mainContent {
+ height: 100vh;
+ width: 100%;
+ padding: 7rem;
+ padding-bottom: 0;
+ background-color: #222226;
+}
+#inputCode {
+ width: 100%;
+ height: 85%;
+}
+.langButton {
+ background-color: rgb(59, 60, 69);
+ border: 0;
+ color: white;
+ float: left;
+ padding: 1rem 1.5rem;
+}
+#run {
+ float: right;
+}
+@media screen and (min-width:0px) and (max-width:1000px) {
+ .mainContent {
+ padding: 2rem;
+ padding-top: 5rem;
+ }
+ .langButton {
+ padding: .5rem 1rem;
+ font-size: 15px;
+ }
+}
diff --git a/minify/index.html b/minify/index.html
new file mode 100644
index 0000000..052fefe
--- /dev/null
+++ b/minify/index.html
@@ -0,0 +1,63 @@
+
+
+
+
+
+
+
Minify
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/minify/js.js b/minify/js.js
new file mode 100644
index 0000000..d086785
--- /dev/null
+++ b/minify/js.js
@@ -0,0 +1,9 @@
+var d = document.getElementById.bind(document);
+var g = document.querySelector.bind(document);
+
+function selectCode(source) {
+ switch (source){
+ case: html
+
+ }
+}
diff --git a/playground/index.html b/playground/index.html
index bf94514..94a4e67 100644
--- a/playground/index.html
+++ b/playground/index.html
@@ -61,7 +61,7 @@
-