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?"); +}