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