diff options
| author | Rosemary Sanchez <rsanchez@madebyuppercut.com> | 2013-07-19 16:54:05 -0600 |
|---|---|---|
| committer | Rosemary Sanchez <rsanchez@madebyuppercut.com> | 2013-07-19 16:55:15 -0600 |
| commit | 99c6eb7a2539189abcc250bd89b31617c71e07d9 (patch) | |
| tree | 52066a2eede0b9befebf7e7f260f085f8e1f665f /app | |
| parent | d0f13438f2885d1199bf38e6f007be569ac5dcd6 (diff) | |
Preliminary styles.
Diffstat (limited to 'app')
| -rw-r--r-- | app/assets/stylesheets/custom.css.scss | 28 | ||||
| -rw-r--r-- | app/views/layouts/application.html.erb | 5 | ||||
| -rw-r--r-- | app/views/sign_ups/new.html.erb | 8 |
3 files changed, 37 insertions, 4 deletions
diff --git a/app/assets/stylesheets/custom.css.scss b/app/assets/stylesheets/custom.css.scss index 32b03a1..8004595 100644 --- a/app/assets/stylesheets/custom.css.scss +++ b/app/assets/stylesheets/custom.css.scss @@ -7,7 +7,35 @@ body { background-color: $beige; } +footer{ + background-color: $blue; + position: fixed; + bottom: 0; + width: 100%; + padding: 20px 20px 220px; + .content{ + color: white; + margin: 0 auto; + + a{ + color: white; + &:hover{ text-decoration: underline; } + } + } +} + +h1#logo{ + +} + +h2 { font-size: 44px; line-height: 48px; color: #333;} + +.about { + font: 36px/48px "Helvetica Neue"; + font-weight: 200; + color: #666; +} .customers{ color: $blue; } .product{ color: $green; } .features{ color: $orange; } diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index 0c4a1c3..9abe7a7 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -27,6 +27,11 @@ </div> </div> <!--! end of .container --> </div> <!--! end of #main --> + <footer> + <div class="content"> + <%= link_to "Privacy Policy" %> © 2013 + </div> + </footer> <%= javascript_include_tag :application %> <!--[if lt IE 9]> <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> diff --git a/app/views/sign_ups/new.html.erb b/app/views/sign_ups/new.html.erb index 489b72e..ac5a51f 100644 --- a/app/views/sign_ups/new.html.erb +++ b/app/views/sign_ups/new.html.erb @@ -1,7 +1,3 @@ -<h2>Just the HR performance management features you want. Nothing else.</h2> - -<p>We created Parley <span class="customers">for small and medium-sized businesses</span> to engage employees and retain great talent through continuous conversation. Parley brings you <span class="product">just the performance management features you need</span> in one affordable tool, like the ability to set <span class="features">regular check-ins</span>, get <span class="features">meaningful peer reviews</span> and create <span class="features">flexible, authentic goals</span> your employees actually want to achieve.</p> - <%= form_for(@sign_up) do |f| %> <% if @sign_up.errors.any? %> <div id="error_explanation"> @@ -22,3 +18,7 @@ </div> <% end %> +<h2>Just the HR performance management features you want. Nothing else.</h2> + +<p class="about">We created Parley <span class="customers">for small and medium-sized businesses</span> to engage employees and retain great talent through continuous conversation. Parley brings you <span class="product">just the performance management features you need</span> in one affordable tool, like the ability to set <span class="features">regular check-ins</span>, get <span class="features">meaningful peer reviews</span> and create <span class="features">flexible, authentic goals</span> your employees actually want to achieve.</p> + |
