From f373a632ed8e642848505ce7589a1125acdee3bc Mon Sep 17 00:00:00 2001 From: rushilwiz Date: Wed, 18 Mar 2020 15:07:20 -0400 Subject: [PATCH] initial commit --- css/styles.css | 0 index.html | 0 js/main.js | 0 under_construction/css/styles.css | 46 +++++++++++++++++++++++++++++++ under_construction/index.html | 18 ++++++++++++ under_construction/js/index.js | 9 ++++++ 6 files changed, 73 insertions(+) create mode 100644 css/styles.css create mode 100644 index.html create mode 100644 js/main.js create mode 100644 under_construction/css/styles.css create mode 100644 under_construction/index.html create mode 100644 under_construction/js/index.js diff --git a/css/styles.css b/css/styles.css new file mode 100644 index 0000000..e69de29 diff --git a/index.html b/index.html new file mode 100644 index 0000000..e69de29 diff --git a/js/main.js b/js/main.js new file mode 100644 index 0000000..e69de29 diff --git a/under_construction/css/styles.css b/under_construction/css/styles.css new file mode 100644 index 0000000..3c7e2a5 --- /dev/null +++ b/under_construction/css/styles.css @@ -0,0 +1,46 @@ + +@import url('https://fonts.googleapis.com/css?family=Major+Mono+Display|Cutive+Mono'); + + +body { + background-color: #ffd1dc; + overflow: hidden; +} + +div { + height: 100%; + color: #090909; + } + + h1 { + margin: 50px; + position: relative; + text-decoration: none; + left: 50%; + transform: translateX(-50%); + text-align: center; + font-weight: 1; + font-family: Major Mono Display, sans-serif; + letter-spacing: 3px; + width: 100%; + font-size: 40px + + } + +h3, h5 { + position: relative; + text-decoration: none; + font-weight: 10; + font-family: Cutive Mono; + left: 50%; + transform: translateX(-50%); + text-align: center; + margin-top: 70px; + width: 100%; +} + +button { + position: relative; + left: 50%; + font-family: monospace, sans-serif; +} diff --git a/under_construction/index.html b/under_construction/index.html new file mode 100644 index 0000000..3fdee5d --- /dev/null +++ b/under_construction/index.html @@ -0,0 +1,18 @@ + + + + Under Construction + + + + + +
+

hi. Welcome to BrAnChEr.ME

+

My website is currently under construction, but feel free to hit this button while you wait.

+ +
+
+ + + diff --git a/under_construction/js/index.js b/under_construction/js/index.js new file mode 100644 index 0000000..dab5970 --- /dev/null +++ b/under_construction/js/index.js @@ -0,0 +1,9 @@ +$(document).ready(function() { + $("#nothing").on("click", function() { + setText(); + }); +}); + +function setText () { + $("#nothing-header").text("don't you have anything better to do?"); +}