# HG changeset patch # User Steve Losh # Date 1317269307 14400 # Node ID c8dc1c1f12029e8dc98360a707cf46f004afda1e # Parent 0f766eda5d9f219cc09324e1819626514e105a50 Styling.; diff -r 0f766eda5d9f -r c8dc1c1f1202 resources/public/css/style.less --- 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; +} diff -r 0f766eda5d9f -r c8dc1c1f1202 src/newseasons/templates/main.clj --- 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 “" query "”") - [:ul.sixteen.columns + [:ul.sixteen.columns.search-results (map result results)]))