diff --git a/static/css/welcome.css b/static/css/welcome.css index 254439d0..ca1c80ab 100644 --- a/static/css/welcome.css +++ b/static/css/welcome.css @@ -14,7 +14,7 @@ #pitch { text-align: center; - padding: 72px 0; + padding: 100px 0; margin: 0; } @@ -26,7 +26,21 @@ #pitch-url { text-align: center; font-family: monospace; - padding-bottom: 72px; + width: 500px; + margin: 10px auto; +} + +#pitch-url-input { + text-align: center; + background: #FFF; + border: 0; + box-shadow: none; + cursor: text; +} + +#pitch-text { + width: 500px; + margin: 0 auto 72px auto; } .nav-tabs { diff --git a/static/js/welcome.js b/static/js/welcome.js new file mode 100644 index 00000000..4e15d200 --- /dev/null +++ b/static/js/welcome.js @@ -0,0 +1,7 @@ +$(function () { + + $("#pitch-url-input").click(function() { + this.select(); + }); + +}); \ No newline at end of file diff --git a/templates/front/welcome.html b/templates/front/welcome.html index 3ddc77b0..dd33de2f 100644 --- a/templates/front/welcome.html +++ b/templates/front/welcome.html @@ -11,9 +11,20 @@
Make a HTTP GET request to this address from your cron job, daemon, script or long running task. + When this address is not requested for a set time period, you will get alerted. Below are snippets that are ready to be copy/pasted into your own scripts.