summary refs log tree commit diff stats
path: root/theme/css/quotes.css
diff options
context:
space:
mode:
Diffstat (limited to 'theme/css/quotes.css')
-rw-r--r--theme/css/quotes.css61
1 files changed, 61 insertions, 0 deletions
diff --git a/theme/css/quotes.css b/theme/css/quotes.css new file mode 100644 index 0000000..72d5189 --- /dev/null +++ b/theme/css/quotes.css
@@ -0,0 +1,61 @@
1ul.quote-list {
2 list-style-type: none;
3}
4
5li.quote {
6 margin: 0 0 1em;
7 padding-bottom: 0.1em;
8 background-color: #FCFCFC;
9}
10
11h3.quote-header {
12 background-color: #F7F7F7;
13 border: 1px solid #F4F4F4;
14 margin: 0;
15 padding: 0.25em 0.75em;
16}
17
18li.quote, h3.quote-header {
19 -moz-border-radius-topleft: 0.5em;
20 -moz-border-radius-topright: 0.5em;
21 -webkit-border-top-left-radius: 0.5em;
22 -webkit-border-top-right-radius: 0.5em;
23 -khtml-border-top-left-radius: 0.5em;
24 -khtml-border-top-right-radius: 0.5em;
25 border-top-left-radius: 0.5em;
26 border-top-right-radius: 0.5em;
27}
28
29span.quote-date {
30 font-size: 70%;
31}
32
33blockquote.quote-body {
34 font-family: Consolas, Monaco, Courier New, monospace;
35 font-size: 12px;
36 margin: 0.5em 0.75em;
37 padding: 0;
38 position: static;
39 width: 100%;
40}
41
42ul.quote-list li:hover {
43 background: #FFFCEC;
44}
45
46ul.quote-list li:hover h3.quote-header {
47 background: #FEC;
48 border-color: #FFE9C9;
49}
50
51span.quote-action-done {
52 opacity: 0.2;
53}
54
55span.quote-update-result {
56 float: right;
57 text-transform: uppercase;
58 font-size: 70%;
59 position: relative;
60 top: -1.2em;
61}