]> gitweb.fperrin.net Git - djsite.git/blob - quotes/static/quotes/style.css
efd85c9c2cd5c5fe1bc4f1d8a280ca7bdfdf4b71
[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 auto;
19     max-width: 500px;
20 }
21
22 .quote .author {
23     text-align: right;
24 }
25
26 .quote .author .work_name {
27     font-style: italic;
28 }
29
30 .permalink {
31     font-size: 0.8em;
32     text-align: right;
33 }
34
35 .hidden_details {
36     /* displayed through Javascript */
37     height: 0;
38     overflow: hidden;
39     transition: height 3s linear;
40     /* visibility: hidden; */
41     /* opacity: 0; */
42     /* transition: opacity 2s linear; */
43
44 }
45
46 .tag_link {
47     font-weight: bold;
48     text-decoration: none;
49 }