]> gitweb.fperrin.net Git - djsite.git/blobdiff - quotes/static/quotes/style.css
Improve presentation of individual quotes
[djsite.git] / quotes / static / quotes / style.css
index db5467189a4638c85f27d2bd39d3d02042871301..6898422c211255b696c03672593501c7a5c26ca4 100644 (file)
@@ -1,20 +1,25 @@
-a {
+body {
     color: black;
+    background-color: #d6d6d6;
+    font-family: Calibri, sans-serif;
 }
 
+a { color: black; }
+
 a:hover {
     text-decoration: none;
 }
 
 .quote {
-    background-color: #ffbd33;
-    border: 3px solid #ff5733;
+    background-color: #fccb51;
+    border: 7px solid darkorange;
+    border-radius: 15px;
     padding: 1.5em 2em;
     margin: 2em 30em;
 }
 
 .quote .author {
-    padding-left: 5em;
+    text-align: right;
 }
 
 .quote .author .name {
@@ -25,3 +30,13 @@ a:hover {
     font-size: 0.8em;
     text-align: right;
 }
+
+.hidden_details {
+    /* displayed through Javascript */
+    display: none;
+}
+
+.tag_link {
+    font-weight: bold;
+    text-decoration: none;
+}