c8dc1c1f1202

Styling.;
[view raw] [browse files]
author Steve Losh <steve@stevelosh.com>
date Thu, 29 Sep 2011 00:08:27 -0400
parents 0f766eda5d9f
children 91a2b99c465f
branches/tags (none)
files resources/public/css/style.less src/newseasons/templates/main.clj

Changes

--- a/resources/public/css/style.less	Thu Sep 29 00:04:05 2011 -0400
+++ b/resources/public/css/style.less	Thu Sep 29 00:08:27 2011 -0400
@@ -8,8 +8,11 @@
 footer {
     text-align: center;
     border-top: 2px solid #ddd;
-    padding-top: 12px;
+    padding-top: 16px;
     margin-top: 32px;
+    font-style: italic;
+    font-size: 15px;
+    font-family: Palatino, Georgia, serif;
 }
 h1, h2, h3, h4, h5, h6 {
     a {
@@ -42,3 +45,6 @@
         }
     }
 }
+.search-results {
+    margin-top: 16px;
+}
--- a/src/newseasons/templates/main.clj	Thu Sep 29 00:04:05 2011 -0400
+++ b/src/newseasons/templates/main.clj	Thu Sep 29 00:08:27 2011 -0400
@@ -35,7 +35,9 @@
                 [:footer.sixteen.columns
                  [:p
                   "Made by "
-                  (link-to "http://stevelosh.com" "Steve Losh")
+                  (link-to "http://stevelosh.com/" "Steve Losh")
+                  " with "
+                  (link-to "http://webnoir.org/" "Noir")
                   "."]]]]))
 
 (defpartial inner [title & content]
@@ -82,11 +84,11 @@
              [:h3 (link-to (r "artistViewUrl") (r "artistName"))]
              (form-to [:post "/add"]
                       [:input {:type "hidden" :name "artist-id" :value (r "artistId")}]
-                      (submit-button "Watch for this Show"))])
+                      (submit-button "Add Show to List"))])
 
 (defpartial search [query results]
             (inner (str "Search results for &ldquo;" query "&rdquo;")
-                   [:ul.sixteen.columns
+                   [:ul.sixteen.columns.search-results
                     (map result results)]))