|
| 1 | +.imdb-download-link::before { |
| 2 | + content: '⇩'; |
| 3 | +} |
| 4 | +.title_wrapper .imdb-download-link { |
| 5 | + font-size: .5em; |
| 6 | +} |
| 7 | +a.movie-preview { |
| 8 | + display: inline-block !important; |
| 9 | +} |
| 10 | +.movie-preview-starter { |
| 11 | + display: inline-block; |
| 12 | + position: fixed; |
| 13 | + opacity: 0.85; |
| 14 | + top: 0; |
| 15 | + right: 0; |
| 16 | + z-index: 10000; |
| 17 | + text-align: center; |
| 18 | +} |
| 19 | +.movie-preview-starter--button { |
| 20 | + display: inline-block; |
| 21 | + cursor: pointer; |
| 22 | + margin: 7px; |
| 23 | + padding: 7px; |
| 24 | + font-size: 12pt; |
| 25 | + font-family: Tahoma, Arial; |
| 26 | + border-radius: 5px; |
| 27 | +} |
| 28 | +.movie-preview-box { |
| 29 | + position: fixed; |
| 30 | + z-index:9999; |
| 31 | + width:475px; |
| 32 | + height:283px; |
| 33 | + top: calc(50vh - 150px); |
| 34 | + left: 50vw; |
| 35 | + display: flex; |
| 36 | + color: #000; |
| 37 | + background-color: white; |
| 38 | + border: 3px solid #222; |
| 39 | + border-radius: 5px; |
| 40 | + overflow: hidden; |
| 41 | + opacity: 0; |
| 42 | + visibility: hidden; |
| 43 | + transition: all 0.5s ease-in-out; |
| 44 | +} |
| 45 | +.movie-preview-box.visible { |
| 46 | + opacity: 1; |
| 47 | + visibility: visible; |
| 48 | +} |
| 49 | +.movie-preview-box *, |
| 50 | +.movie-preview-unique-list > * { |
| 51 | + font-size: 10pt; |
| 52 | + font-family: Tahoma, Arial; |
| 53 | + line-height: initial; |
| 54 | +} |
| 55 | +.movie-preview-box.no-trailer .preview--info--trailer { |
| 56 | + display: none; |
| 57 | +} |
| 58 | +.torrent-download-links { |
| 59 | + opacity: 0.8; |
| 60 | + font-size: 90%; |
| 61 | + position: absolute; |
| 62 | + display: none; |
| 63 | +} |
| 64 | +.assisted-torrent-link:hover .torrent-download-links { |
| 65 | + display: inline-block; |
| 66 | +} |
| 67 | +.movie-preview-unique-list { |
| 68 | + width: 50%; |
| 69 | + max-width: 400px; |
| 70 | + max-height: 200px; |
| 71 | + margin: auto; |
| 72 | + overflow: auto; |
| 73 | + text-align: left; |
| 74 | + padding: 5px; |
| 75 | + line-height: 15px; |
| 76 | + color: #000; |
| 77 | + background-color: white; |
| 78 | + border: 3px solid #222; |
| 79 | + border-radius: 5px; |
| 80 | +} |
| 81 | +.movie-preview-unique-list > * { |
| 82 | + margin: 2px; |
| 83 | +} |
| 84 | +.movie-preview-unique-list a { |
| 85 | + border: 0; |
| 86 | +} |
| 87 | +.movie-preview-unique-list a:hover { |
| 88 | + border: 0; |
| 89 | + text-decoration: underline; |
| 90 | +} |
| 91 | +a.movie-preview { |
| 92 | + cursor: pointer; |
| 93 | +} |
| 94 | +a.movie-preview.highlight { |
| 95 | + background-color: rgba(255, 231, 58, 0.59); |
| 96 | +} |
| 97 | +.movie-preview-enhancement { |
| 98 | + display: inline-block; |
| 99 | + max-width: 30px; |
| 100 | + min-width: 30px; |
| 101 | + font-size: 85%; |
| 102 | + margin:0 4px 0 0; |
| 103 | +} |
| 104 | +.movie-preview-enhancement.remarkable { |
| 105 | + font-weight: bold; |
| 106 | +} |
| 107 | +.preview--poster { |
| 108 | + flex-shrink: 0; |
| 109 | + width: 200px; |
| 110 | + height: 283px; |
| 111 | +} |
| 112 | +.preview--poster--img { |
| 113 | + cursor: pointer; |
| 114 | + width: 100%; |
| 115 | + height: 100%; |
| 116 | +} |
| 117 | +.preview--info { |
| 118 | + text-align:left; |
| 119 | + padding:3px; |
| 120 | + height:277px; |
| 121 | + overflow:auto; |
| 122 | + display:inline-block; |
| 123 | +} |
| 124 | +.preview--info--title { |
| 125 | + text-align:center; |
| 126 | + font-size:125%pt; |
| 127 | + font-weight:bold; |
| 128 | +} |
| 129 | +.preview--info--trailer { |
| 130 | + color: #369; |
| 131 | + cursor: pointer; |
| 132 | + display: inline-block; |
| 133 | +} |
| 134 | +.preview--info--trailer:hover { |
| 135 | + text-decoration: underline; |
| 136 | +} |
| 137 | +.preview--info--trailer::before { |
| 138 | + content: '('; |
| 139 | +} |
| 140 | +.preview--info--trailer::after { |
| 141 | + content: '), '; |
| 142 | +} |
| 143 | +.preview--info--imdb-rating, |
| 144 | +.preview--info--imdb-votes { |
| 145 | + font-weight: bold; |
| 146 | +} |
0 commit comments