| 1 |
div[class^="gr_custom_container"] { |
| 2 |
/* customize your Goodreads widget container here*/ |
| 3 |
border: 1px solid gray; |
| 4 |
border-radius:10px; |
| 5 |
padding: 10px 5px 10px 5px; |
| 6 |
background-color: #FFF; |
| 7 |
color: #000; |
| 8 |
} |
| 9 |
|
| 10 |
div[class^="gr_custom_container"] a { |
| 11 |
color: #000; |
| 12 |
} |
| 13 |
|
| 14 |
h2[class^="gr_custom_header"] { |
| 15 |
/* customize your Goodreads header here*/ |
| 16 |
display: none; |
| 17 |
} |
| 18 |
div[class^="gr_custom_each_container"] { |
| 19 |
/* customize each individual book container here */ |
| 20 |
width: 100%; |
| 21 |
clear: both; |
| 22 |
margin-bottom: 10px; |
| 23 |
overflow: auto; |
| 24 |
padding-bottom: 4px; |
| 25 |
border-bottom: 1px solid #aaa; |
| 26 |
} |
| 27 |
div[class^="gr_custom_book_container"] { |
| 28 |
/* customize your book covers here */ |
| 29 |
float: right; |
| 30 |
overflow: hidden; |
| 31 |
height: 60px; |
| 32 |
margin-left: 4px; |
| 33 |
width: 39px; |
| 34 |
} |
| 35 |
div[class^="gr_custom_author"] { |
| 36 |
/* customize your author names here */ |
| 37 |
font-size: 10px; |
| 38 |
} |
| 39 |
div[class^="gr_custom_tags"] { |
| 40 |
/* customize your tags here */ |
| 41 |
font-size: 10px; |
| 42 |
color: gray; |
| 43 |
} |
| 44 |
div[class^="gr_custom_review"] { |
| 45 |
} |
| 46 |
div[class^="gr_custom_rating"] { |
| 47 |
display: none; |
| 48 |
} |
| 49 |
|