Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
2 BookSet {
3 display: block;
4 }
6 Book {
7 display: list-item;
8 float: none;
9 border: none;
10 background: inherit;
11 }
13 BookCover {
14 display: none;
15 }
17 Title {
18 display: block;
19 font-weight: bold;
20 color: blue;
21 text-decoration: underline;
22 cursor: pointer;
23 }
25 Author {
26 display: block;
27 font-style: italic;
28 }
30 Synopsis {
31 display: none;
32 }
35 ListPrice {
36 display: none;
37 text-align: right;
38 padding-right: 15px;
39 text-decoration: line-through;
40 }
43 Price {
44 display: block;
45 color: rgb(20,100,0);
46 font-weight: bold;
47 text-align:left;
48 }
51 Price:before {
52 content: "Our Price: ";
53 }
55 ISBN {
56 display: block;
57 font-family: monospace;
58 font-size: 8pt;
59 }