diff --git a/README.md b/README.md index 7370c38..92af5c3 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ # wethepeople.win -Source code for http://wethepeople.win \ No newline at end of file +Source code for http://wethepeople.win diff --git a/public/assets/beach.webp b/public/assets/beach.webp new file mode 100644 index 0000000..d46e95e Binary files /dev/null and b/public/assets/beach.webp differ diff --git a/public/assets/curb.mp3 b/public/assets/curb.mp3 new file mode 100644 index 0000000..64d10a5 Binary files /dev/null and b/public/assets/curb.mp3 differ diff --git a/public/assets/main.css b/public/assets/main.css new file mode 100644 index 0000000..7b0da8d --- /dev/null +++ b/public/assets/main.css @@ -0,0 +1,66 @@ +body, html { + font-family: sans-serif; + font-size: 100%; + height: 100%; +} + +.bg { + background-image: url("/assets/beach.webp"); + background-position: center; + background-repeat: no-repeat; + background-size: cover; + height: 100%; +} + +.modalBackground { + background-color: #848484; + height: 100%; + left: 0; + position: fixed; + top: 0; + width: 100%; + z-index: 50; +} + +.modalWrapper { + height: 100%; + position: absolute; + width: 100%; + z-index: 100; +} + +.modal { + background-color: #A9D0F5; + border-radius: 15px; + margin: 100px auto 0 auto; + text-align: center; + width: 70%; +} + +.modalBody { + color: #251833; + padding: 38px 21px; +} + +.modalFooter { + text-align: center; +} + +.button-small { + background-color: #04B404; + border-radius: 5px; + border: solid; + color: #FFFFFF; + font-size: 1em; + padding: 15px 25px; + text-align: center; + transition-duration: 0.3s; +} + +.button-small:hover { + background-color: #FFFFFF; + border-color: #04B404; + border: solid; + color: #000000; + cursor: pointer; +} diff --git a/public/robots.txt b/public/robots.txt new file mode 100644 index 0000000..e69de29 diff --git a/templates/index.html.ep b/templates/index.html.ep new file mode 100644 index 0000000..23e893e --- /dev/null +++ b/templates/index.html.ep @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + The New Republican Party: This is Unity + + + + + + + + + + + +
+ + diff --git a/wethepeople.pl b/wethepeople.pl new file mode 100644 index 0000000..a4fd890 --- /dev/null +++ b/wethepeople.pl @@ -0,0 +1,11 @@ +#!/usr/bin/env perl + +use Mojolicious::Lite; + +get '/' => sub { + my ($c) = @_; + + $c->render(); +} => 'index'; + +app->start();