]> gitweb.fperrin.net Git - djsite.git/blobdiff - quotes/static/quotes/style.css
Add a 'work' concept
[djsite.git] / quotes / static / quotes / style.css
index db5467189a4638c85f27d2bd39d3d02042871301..e49678241fcccf381491fd186e3b291c28bcbfae 100644 (file)
@@ -1,23 +1,28 @@
-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 {
+.quote .author .work_name {
     font-style: italic;
 }
 
@@ -25,3 +30,19 @@ a:hover {
     font-size: 0.8em;
     text-align: right;
 }
+
+.hidden_details {
+    /* displayed through Javascript */
+    height: 0;
+    overflow: hidden;
+    transition: height 3s linear;
+    /* visibility: hidden; */
+    /* opacity: 0; */
+    /* transition: opacity 2s linear; */
+
+}
+
+.tag_link {
+    font-weight: bold;
+    text-decoration: none;
+}