commit f6530fa5e60a85a4e526d9f91e0382223f80bc2a Author: Rushil Umaretiya Date: Tue Aug 18 22:07:50 2020 -0400 Added under construction diff --git a/css/styles.css b/css/styles.css new file mode 100644 index 0000000..8ec3942 --- /dev/null +++ b/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; +} \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..ed2a7f1 --- /dev/null +++ b/index.html @@ -0,0 +1,18 @@ + + + + Under Construction + + + + + +
+

hi. Welcome to DearAnon

+

The podcast's site is currently under construction (i'm not magic), but feel free to hit this button while you wait.

+ +
+
+ + + \ No newline at end of file diff --git a/js/index.js b/js/index.js new file mode 100644 index 0000000..86d9c79 --- /dev/null +++ b/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?"); +} \ No newline at end of file