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