From 8a62b530aa065968a987e57331ebe843dce0a96d Mon Sep 17 00:00:00 2001 From: joshua stein Date: Thu, 31 Mar 2016 14:24:57 -0500 Subject: [PATCH] apply a basic style to #l_holder lobste.rs is overriding this in local.css but at least other sites can get a basic thing there. mention in README that local css should go into a directory. --- README.md | 2 ++ app/assets/stylesheets/application.css | 11 +++++++++++ 2 files changed, 13 insertions(+) diff --git a/README.md b/README.md index c9d183c..b6bbedf 100644 --- a/README.md +++ b/README.md @@ -78,6 +78,8 @@ in a `config/initializers/production.rb` or similar file: Rails.application.routes.default_url_options[:host] = Rails.application.domain +* Put your site's custom CSS in `app/assets/stylesheets/local`. + * Seed the database to create an initial administrator user and at least one tag: lobsters$ rake db:seed diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index 659a98f..8109f12 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -273,6 +273,17 @@ div#inside { text-decoration: none; } +#l_holder { + background-position: center; + float: left; + display: block; + width: 16px; + height: 16px; + padding: 1px; + margin-left: 4px; + margin-right: 11px; +} + #headertitle { padding-right: 0.75em; }