summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorRosemary Sanchez <rsanchez@madebyuppercut.com>2013-07-19 13:46:00 -0600
committerRosemary Sanchez <rsanchez@madebyuppercut.com>2013-07-19 14:34:32 -0600
commit60079d0a3fde1939ca2017ce092ee997364b53bb (patch)
tree89402d1c4e59d4d513931ff303f741df0c641201 /app
parent7828458de33ce2f171942a37c344169c2c116f64 (diff)
Add supporting css files.
Diffstat (limited to 'app')
-rw-r--r--app/assets/stylesheets/custom.css.scss12
-rw-r--r--app/assets/stylesheets/settings.css.scss4
-rw-r--r--app/views/layouts/application.html.erb1
3 files changed, 16 insertions, 1 deletions
diff --git a/app/assets/stylesheets/custom.css.scss b/app/assets/stylesheets/custom.css.scss
index fc66ab6..32b03a1 100644
--- a/app/assets/stylesheets/custom.css.scss
+++ b/app/assets/stylesheets/custom.css.scss
@@ -1,3 +1,13 @@
@import "bootstrap";
-body { padding-top: 60px; }
@import "bootstrap-responsive";
+@import "settings.css.scss";
+
+body {
+ padding-top: 60px;
+ background-color: $beige;
+}
+
+
+.customers{ color: $blue; }
+.product{ color: $green; }
+.features{ color: $orange; }
diff --git a/app/assets/stylesheets/settings.css.scss b/app/assets/stylesheets/settings.css.scss
new file mode 100644
index 0000000..98e9afd
--- /dev/null
+++ b/app/assets/stylesheets/settings.css.scss
@@ -0,0 +1,4 @@
+$beige: #fffcf3;
+$blue: #719ad0;
+$green: #8bc980;
+$orange: #e17a26;
diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb
index a9bf359..0c4a1c3 100644
--- a/app/views/layouts/application.html.erb
+++ b/app/views/layouts/application.html.erb
@@ -17,6 +17,7 @@
<div class="content">
<div class="row">
<div class="span12">
+ <h1 id="logo">Parley</h1>
<%= render 'layouts/messages' %>
<%= yield %>
</div>