catalogue style change
authorRadek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>
Tue, 24 Jan 2012 16:06:12 +0000 (17:06 +0100)
committerRadek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>
Tue, 24 Jan 2012 16:06:12 +0000 (17:06 +0100)
wolnelektury/static/css/base.css
wolnelektury/static/css/catalogue.css
wolnelektury/templates/catalogue/catalogue.html

index 33223b0..cd59f69 100755 (executable)
@@ -93,6 +93,16 @@ h2 {
     clear: both;
 }
 
+.white-box {
+    border: 1px solid #ddd;
+    padding: 1em;
+    background: #fff;
+    -moz-box-shadow: 2px 2px 2px #ddd;
+    -webkit-box-shadow: 2px 2px 2px #ddd;
+    box-shadow: 2px 2px 2px #ddd;
+}
+
+
 #header-content, div#main-content, div#half-header-content, #footer-content {
     width: 97.5em;
     margin: auto;
index ff7ea4b..b08d99b 100755 (executable)
@@ -66,4 +66,9 @@
 
 
 
-fragment
\ No newline at end of file
+.catalogue-catalogue h2 {
+    font-size: 2em;
+}
+.catalogue-catalogue ul {
+    -moz-column-width: 30em;
+}
\ No newline at end of file
index c84ebbb..8a558ab 100644 (file)
 {% block body %}
     <h1>{% trans "Catalogue" %}</h1>
 
-    <div class="normal-text">
+    <div class="normal-text catalogue-catalogue">
 
     <p><a href="{% url reporting_catalogue_pdf %}">
         {% trans "Download the catalogue in PDF format." %}
     </a></p>
 
-    <h2></a>{% trans "Authors" %}<a name="autorzy"></a></h2>
-    {% tag_list categories.author %}
+    <h2 class="white-box">{% trans "Authors" %}<a name="autorzy"></a></h2>
+    <div class="white-box">{% tag_list categories.author %}</div>
 
-    <h2>{% trans "Kinds" %}<a name="rodzaje"></a></h2>
-    {% tag_list categories.kind %}
+    <h2 class="white-box">{% trans "Kinds" %}<a name="rodzaje"></a></h2>
+    <div class="white-box">{% tag_list categories.kind %}</div>
 
-    <h2>{% trans "Genres" %}<a name="gatunki"></a></h2>
-    {% tag_list categories.genre %}
+    <h2 class="white-box">{% trans "Genres" %}<a name="gatunki"></a></h2>
+    <div class="white-box">{% tag_list categories.genre %}</div>
 
-    <h2>{% trans "Epochs" %}<a name="epoki"></a></h2>
-    {% tag_list categories.epoch %}
+    <h2 class="white-box">{% trans "Epochs" %}<a name="epoki"></a></h2>
+    <div class="white-box">{% tag_list categories.epoch %}</div>
+
+    <h2 class="white-box">{% trans "Themes and topics" %}<a name="motywy"></a></h2>
+    <div class="white-box">{% tag_list fragment_tags %}</div>
 
-    <h2>{% trans "Themes and topics" %}<a name="motywy"></a></h2>
-    {% tag_list fragment_tags %}
     </div>
 {% endblock %}