Tweaked the feed stylesheet.
authorNeil Smith <neil.git@njae.me.uk>
Wed, 8 Jan 2014 18:36:05 +0000 (18:36 +0000)
committerNeil Smith <neil.git@njae.me.uk>
Wed, 8 Jan 2014 18:36:05 +0000 (18:36 +0000)
app/assets/stylesheets/feed.css.scss
app/views/feed/show.html.erb

index 075c75417f2cc2d0dca4ca8ec0f9362b44b4e1c0..533a1f58b448aa5b1ae4db1b22d052b7ac1c52dd 100644 (file)
@@ -1,3 +1,25 @@
 // Place all the styles related to the feed controller here.
 // They will automatically be included in application.css.
 // You can use Sass (SCSS) here: http://sass-lang.com/
+
+body {
+  font-family: Verdana, sans-serif;
+}
+
+li {
+  padding: 0.2em 0;
+}
+
+dd {
+  padding: 0 0 0.3em;
+}
+
+/* START:notice */
+#notice {
+  border: 2px solid red;
+  padding: 1em;
+  margin-bottom: 2em;
+  background-color: #f0f0f0;
+  font: bold smaller sans-serif;
+}
+/* END:notice */
index 789debd9573fc0f0edf7fecafd2dc46895e429e6..90045f7462c7ba44c89978453e850441d69bf4c9 100644 (file)
@@ -1,4 +1,4 @@
-<h1>Contents of feed <%= h params[:feed_name] %></h1>
+<h1>Contents of <%= h params[:feed_name] %></h1>
 <p><%= link_to("List of all feeds", index_path) %></p>
 
 <%= form_tag update_path do %>