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.
michael@0 | 1 | |
michael@0 | 2 | BookSet { |
michael@0 | 3 | display: block; |
michael@0 | 4 | } |
michael@0 | 5 | |
michael@0 | 6 | Book { |
michael@0 | 7 | display: list-item; |
michael@0 | 8 | float: none; |
michael@0 | 9 | border: none; |
michael@0 | 10 | background: inherit; |
michael@0 | 11 | } |
michael@0 | 12 | |
michael@0 | 13 | BookCover { |
michael@0 | 14 | display: none; |
michael@0 | 15 | } |
michael@0 | 16 | |
michael@0 | 17 | Title { |
michael@0 | 18 | display: block; |
michael@0 | 19 | font-weight: bold; |
michael@0 | 20 | color: blue; |
michael@0 | 21 | text-decoration: underline; |
michael@0 | 22 | cursor: pointer; |
michael@0 | 23 | } |
michael@0 | 24 | |
michael@0 | 25 | Author { |
michael@0 | 26 | display: block; |
michael@0 | 27 | font-style: italic; |
michael@0 | 28 | } |
michael@0 | 29 | |
michael@0 | 30 | Synopsis { |
michael@0 | 31 | display: none; |
michael@0 | 32 | } |
michael@0 | 33 | |
michael@0 | 34 | |
michael@0 | 35 | ListPrice { |
michael@0 | 36 | display: none; |
michael@0 | 37 | text-align: right; |
michael@0 | 38 | padding-right: 15px; |
michael@0 | 39 | text-decoration: line-through; |
michael@0 | 40 | } |
michael@0 | 41 | |
michael@0 | 42 | |
michael@0 | 43 | Price { |
michael@0 | 44 | display: block; |
michael@0 | 45 | color: rgb(20,100,0); |
michael@0 | 46 | font-weight: bold; |
michael@0 | 47 | text-align:left; |
michael@0 | 48 | } |
michael@0 | 49 | |
michael@0 | 50 | |
michael@0 | 51 | Price:before { |
michael@0 | 52 | content: "Our Price: "; |
michael@0 | 53 | } |
michael@0 | 54 | |
michael@0 | 55 | ISBN { |
michael@0 | 56 | display: block; |
michael@0 | 57 | font-family: monospace; |
michael@0 | 58 | font-size: 8pt; |
michael@0 | 59 | } |
michael@0 | 60 | |
michael@0 | 61 |