]> gitweb.fperrin.net Git - djsite.git/blob - quotes/static/quotes/style.css
Add a 'work' concept
[djsite.git] / quotes / static / quotes / style.css
1 body {
2     color: black;
3     background-color: #d6d6d6;
4     font-family: Calibri, sans-serif;
5 }
6
7 a { color: black; }
8
9 a:hover {
10     text-decoration: none;
11 }
12
13 .quote {
14     background-color: #fccb51;
15     border: 7px solid darkorange;
16     border-radius: 15px;
17     padding: 1.5em 2em;
18     margin: 2em 30em;
19 }
20
21 .quote .author {
22     text-align: right;
23 }
24
25 .quote .author .work_name {
26     font-style: italic;
27 }
28
29 .permalink {
30     font-size: 0.8em;
31     text-align: right;
32 }
33
34 .hidden_details {
35     /* displayed through Javascript */
36     height: 0;
37     overflow: hidden;
38     transition: height 3s linear;
39     /* visibility: hidden; */
40     /* opacity: 0; */
41     /* transition: opacity 2s linear; */
42
43 }
44
45 .tag_link {
46     font-weight: bold;
47     text-decoration: none;
48 }