| 1 |
/* subscribe.css PowerPress subscribe widget */ |
| 2 |
|
| 3 |
.pp-sub-widget { |
| 4 |
width: 100%; |
| 5 |
margin: 10px auto; |
| 6 |
font-family: sans-serif; |
| 7 |
background-color: #FFFFFF; |
| 8 |
padding: 0 32px; |
| 9 |
} |
| 10 |
@media (min-width: 1200px) { |
| 11 |
.container { |
| 12 |
width: 85%; |
| 13 |
} |
| 14 |
} |
| 15 |
.pp-sub-widget .pp-sub-bx { |
| 16 |
-webkit-column-count: 2; |
| 17 |
-moz-column-count: 2; |
| 18 |
column-count: 2; |
| 19 |
-webkit-column-gap: 20px; |
| 20 |
-moz-column-gap: 20px; |
| 21 |
column-gap: 20px; |
| 22 |
width: auto; |
| 23 |
height: auto; |
| 24 |
margin: 0 10px; |
| 25 |
} |
| 26 |
|
| 27 |
.pp-sub-widget div.pp-sub-h { |
| 28 |
margin: 10px 10px 0 10px; |
| 29 |
font-size: 90%; |
| 30 |
font-weight: bold; |
| 31 |
color: rgb(25,118,210); |
| 32 |
} |
| 33 |
.pp-sub-widget div.pp-sub-t { |
| 34 |
font-weight: bold; |
| 35 |
margin: 10px 10px 0 10px; |
| 36 |
padding: 0; |
| 37 |
font-size: 150%; |
| 38 |
color: #444444; |
| 39 |
|
| 40 |
} |
| 41 |
.pp-sub-widget-include div.pp-sub-t { |
| 42 |
margin: 15px 10px 0 10px !important; |
| 43 |
padding: 0 !important; |
| 44 |
font-weight: bold !important; |
| 45 |
font-size: 150% !important; |
| 46 |
color: #444444 !important; |
| 47 |
} |
| 48 |
.pp-sub-widget p.pp-sub-st { |
| 49 |
margin: 5px 10px 0 10px; |
| 50 |
padding: 0; |
| 51 |
font-size: 100%; |
| 52 |
color: #222222; |
| 53 |
} |
| 54 |
.pp-sub-widget-include p.pp-sub-st { |
| 55 |
margin: 5px 10px 0 10px !important; |
| 56 |
padding: 0 !important; |
| 57 |
font-size: 100% !important; |
| 58 |
color: #222222 !important; |
| 59 |
} |
| 60 |
.pp-sub-widget .pp-sub-a { |
| 61 |
font-weight: bold; |
| 62 |
margin: 5px 10px 1em 10px; |
| 63 |
padding: 0; |
| 64 |
font-size: 120%; |
| 65 |
color: #1976d2; |
| 66 |
} |
| 67 |
.pp-sub-widget-include .pp-sub-a { |
| 68 |
margin: 5px 10px 1em 10px !important; |
| 69 |
padding: 0 !important; |
| 70 |
font-weight: bold !important; |
| 71 |
font-size: 120% !important; |
| 72 |
color: #1976d2 !important; |
| 73 |
} |
| 74 |
|
| 75 |
/*Styling for square buttons */ |
| 76 |
.pp-sub-widget a.pp-sub-btn-sq { |
| 77 |
height: 72px; |
| 78 |
display: inline-block; |
| 79 |
text-decoration: none; |
| 80 |
vertical-align: middle; |
| 81 |
line-height: calc(72px - 2em); |
| 82 |
overflow: hidden; |
| 83 |
width: 250px; |
| 84 |
border-radius: 5px; |
| 85 |
box-sizing: border-box; |
| 86 |
} |
| 87 |
.pp-sub-widget-include a.pp-sub-btn-sq { |
| 88 |
width: 250px !important; |
| 89 |
} |
| 90 |
.pp-sub-widget-modern a.pp-sub-btn-sq { |
| 91 |
color: #444444; |
| 92 |
margin: 0 0 3vw 0; |
| 93 |
border: 1px solid #707070; |
| 94 |
padding: 1em; |
| 95 |
background-position: center; |
| 96 |
transition: background 0.8s; |
| 97 |
font-size: 100%; |
| 98 |
font-weight: bold; |
| 99 |
} |
| 100 |
.pp-sub-widget-modern.pp-sub-widget-include a.pp-sub-btn-sq { |
| 101 |
font-size: 100% !important; |
| 102 |
} |
| 103 |
/*Styling for round buttons */ |
| 104 |
.pp-sub-widget a.pp-sub-btn { |
| 105 |
height: 72px; |
| 106 |
display: inline-block; |
| 107 |
text-decoration: none; |
| 108 |
vertical-align: middle; |
| 109 |
line-height: calc(72px - 2em); |
| 110 |
overflow: hidden; |
| 111 |
border-radius: 50px; |
| 112 |
width: 250px; |
| 113 |
box-sizing: border-box; |
| 114 |
} |
| 115 |
.pp-sub-widget-include a.pp-sub-btn { |
| 116 |
width: 250px !important; |
| 117 |
} |
| 118 |
.pp-sub-widget-modern a.pp-sub-btn { |
| 119 |
color: #444444; |
| 120 |
margin: 0 1ch 3vw 1ch; |
| 121 |
border: 1px solid #707070; |
| 122 |
padding: 1em; |
| 123 |
background-position: center; |
| 124 |
transition: background 0.8s; |
| 125 |
font-size: 100%; |
| 126 |
width: 250px; |
| 127 |
font-weight: bold; |
| 128 |
} |
| 129 |
.filling-empty-space { |
| 130 |
width: 250px; |
| 131 |
margin: 0; |
| 132 |
height:0; |
| 133 |
} |
| 134 |
.pp-sub-widget ~ p, .pp-sub-widget ~ h3, header.entry-header { |
| 135 |
margin-left: 32px; |
| 136 |
} |
| 137 |
header.entry-header h1 { |
| 138 |
color: #444444; |
| 139 |
} |
| 140 |
.pp-sub-widget-modern.pp-sub-widget-include a.pp-sub-btn { |
| 141 |
font-size: 100% !important; |
| 142 |
} |
| 143 |
|
| 144 |
body .entry-content .pp-sub-widget a:link, |
| 145 |
body .entry-content .pp-sub-widget a:visited, |
| 146 |
body .entry-content .pp-sub-widget a:active, |
| 147 |
body .entry-content .pp-sub-widget a:hover, |
| 148 |
body .pp-sub-widget a:link, |
| 149 |
body .pp-sub-widget a:visited, |
| 150 |
body .pp-sub-widget a:active, |
| 151 |
body .pp-sub-widget a:hover { |
| 152 |
text-decoration: none; |
| 153 |
} |
| 154 |
body .entry-content .pp-sub-widget-include a:link, |
| 155 |
body .entry-content .pp-sub-widget-include a:visited, |
| 156 |
body .entry-content .pp-sub-widget-include a:active, |
| 157 |
body .entry-content .pp-sub-widget-include a:hover, |
| 158 |
body .pp-sub-widget-include a:link, |
| 159 |
body .pp-sub-widget-include a:visited, |
| 160 |
body .pp-sub-widget-include a:active, |
| 161 |
body .pp-sub-widget-include a:hover { |
| 162 |
text-decoration: none !important; |
| 163 |
} |
| 164 |
/* Ripple effects for horizontal modern buttons */ |
| 165 |
.pp-sub-widget-modern a.pp-sub-btn:hover, .pp-sub-widget-modern a.pp-sub-btn-sq:hover { |
| 166 |
background: #ebebeb radial-gradient(circle, transparent 1%, #ebebeb 1%) center/15000%; |
| 167 |
} |
| 168 |
.pp-sub-widget-modern .pp-sub-itunes.pp-sub-btn:active, .pp-sub-widget-modern .pp-sub-itunes.pp-sub-btn-sq:active { |
| 169 |
background-color: #AB42DF; |
| 170 |
background-size: 100%; |
| 171 |
transition: background 0s; |
| 172 |
} |
| 173 |
.pp-sub-widget-modern .pp-sub-android.pp-sub-btn:active, .pp-sub-widget-modern .pp-sub-android.pp-sub-btn-sq:active { |
| 174 |
background-color: #75BA26; |
| 175 |
background-size: 100%; |
| 176 |
transition: background 0s; |
| 177 |
} |
| 178 |
.pp-sub-widget-modern .pp-sub-email.pp-sub-btn:active, .pp-sub-widget-modern .pp-sub-email.pp-sub-btn-sq:active { |
| 179 |
background-color: #018C8B; |
| 180 |
background-size: 100%; |
| 181 |
transition: background 0s; |
| 182 |
} |
| 183 |
.pp-sub-widget-modern .pp-sub-gp.pp-sub-btn:active, .pp-sub-widget-modern .pp-sub-gp.pp-sub-btn-sq:active { |
| 184 |
background-color: #F9BA01; |
| 185 |
background-size: 100%; |
| 186 |
transition: background 0s; |
| 187 |
} |
| 188 |
.pp-sub-widget-modern .pp-sub-stitcher.pp-sub-btn:active, .pp-sub-widget-modern .pp-sub-stitcher.pp-sub-btn-sq:active { |
| 189 |
background-color: #2B91C9; |
| 190 |
background-size: 100%; |
| 191 |
transition: background 0s; |
| 192 |
} |
| 193 |
.pp-sub-widget-modern .pp-sub-tunein.pp-sub-btn:active, .pp-sub-widget-modern .pp-sub-tunein.pp-sub-btn-sq:active { |
| 194 |
background-color: #1C1F3D; |
| 195 |
background-size: 100%; |
| 196 |
transition: background 0s; |
| 197 |
} |
| 198 |
.pp-sub-widget-modern .pp-sub-spotify.pp-sub-btn:active, .pp-sub-widget-modern .pp-sub-spotify.pp-sub-btn-sq:active { |
| 199 |
background-color: #3EB559; |
| 200 |
background-size: 100%; |
| 201 |
transition: background 0s; |
| 202 |
} |
| 203 |
.pp-sub-widget-modern .pp-sub-iheartradio.pp-sub-btn:active, .pp-sub-widget-modern .pp-sub-iheartradio.pp-sub-btn-sq:active { |
| 204 |
background-color: #960d16; |
| 205 |
background-size: 100%; |
| 206 |
transition: background 0s; |
| 207 |
} |
| 208 |
.pp-sub-widget-modern .pp-sub-deezer.pp-sub-btn:active, .pp-sub-widget-modern .pp-sub-deezer.pp-sub-btn-sq:active { |
| 209 |
background-color: #007feb; |
| 210 |
background-size: 100%; |
| 211 |
transition: background 0s; |
| 212 |
} |
| 213 |
.pp-sub-widget-modern .pp-sub-anghami.pp-sub-btn:active, .pp-sub-widget-modern .pp-sub-anghami.pp-sub-btn-sq:active { |
| 214 |
background-color: #a316b4; |
| 215 |
background-size: 100%; |
| 216 |
transition: background 0s; |
| 217 |
} |
| 218 |
.pp-sub-widget-modern .pp-sub-pandora.pp-sub-btn:active, .pp-sub-widget-modern .pp-sub-pandora.pp-sub-btn-sq:active { |
| 219 |
background-color: #3668ff; |
| 220 |
background-size: 100%; |
| 221 |
transition: background 0s; |
| 222 |
} |
| 223 |
.pp-sub-widget-modern .pp-sub-rss.pp-sub-btn:active, .pp-sub-widget-modern .pp-sub-rss.pp-sub-btn-sq:active { |
| 224 |
background-color: #FF6600; |
| 225 |
background-size: 100%; |
| 226 |
transition: background 0s; |
| 227 |
} |
| 228 |
.pp-sub-widget-modern .pp-sub-amazon.pp-sub-btn:active, .pp-sub-widget-modern .pp-sub-amazon.pp-sub-btn-sq:active { |
| 229 |
background-color: #4400FF; |
| 230 |
background-size: 100%; |
| 231 |
transition: background 0s; |
| 232 |
} |
| 233 |
.pp-sub-widget-modern .pp-sub-pcindex.pp-sub-btn:active, .pp-sub-widget-modern .pp-sub-pcindex.pp-sub-btn-sq:active { |
| 234 |
background-color: #AB0000; |
| 235 |
background-size: 100%; |
| 236 |
transition: background 0s; |
| 237 |
} |
| 238 |
.pp-sub-widget-modern .pp-sub-jiosaavn.pp-sub-btn:active, .pp-sub-widget-modern .pp-sub-jiosaavn.pp-sub-btn-sq:active { |
| 239 |
background-color: #2BC5B4; |
| 240 |
background-size: 100%; |
| 241 |
transition: background 0s; |
| 242 |
} |
| 243 |
.pp-sub-widget-modern .pp-sub-gaana.pp-sub-btn:active, .pp-sub-widget-modern .pp-sub-gaana.pp-sub-btn-sq:active { |
| 244 |
background-color: #E62C2F; |
| 245 |
background-size: 100%; |
| 246 |
transition: background 0s; |
| 247 |
} |
| 248 |
.pp-sub-widget-modern .pp-sub-podchaser.pp-sub-btn:active, .pp-sub-widget-modern .pp-sub-podchaser.pp-sub-btn-sq:active { |
| 249 |
background-color: #000000; |
| 250 |
background-size: 100%; |
| 251 |
transition: background 0s; |
| 252 |
} |
| 253 |
.pp-sub-widget-modern .pp-sub-more.pp-sub-btn:active, .pp-sub-widget-modern .pp-sub-more.pp-sub-btn-sq:active { |
| 254 |
background-color: #333333; |
| 255 |
background-size: 100%; |
| 256 |
transition: background 0s; |
| 257 |
} |
| 258 |
.pp-sub-widget-modern .pp-sub-youtube.pp-sub-btn:active, .pp-sub-widget-modern .pp-sub-youtube.pp-sub-btn-sq:active { |
| 259 |
background-color: #E1251B;; |
| 260 |
background-size: 100%; |
| 261 |
transition: background 0s; |
| 262 |
} |
| 263 |
|
| 264 |
.pp-sub-widget img.pp-sub-l { |
| 265 |
max-width: 300px; |
| 266 |
padding: 0; |
| 267 |
margin: 0 2em 2em 0; |
| 268 |
float: left; |
| 269 |
box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2); |
| 270 |
width: 50%; |
| 271 |
height: auto; |
| 272 |
} |
| 273 |
|
| 274 |
.pp-sub-widget .pp-sub-widget-head { |
| 275 |
margin-bottom: 2em; |
| 276 |
} |
| 277 |
.pp-sub-widget-include img.pp-sub-l { |
| 278 |
width: 50% !important; |
| 279 |
height: auto !important; |
| 280 |
} |
| 281 |
.pp-sub-widget .pp-sub-btns { |
| 282 |
margin: 0; |
| 283 |
padding: 0; |
| 284 |
display: flex; |
| 285 |
justify-content: space-between; |
| 286 |
flex-direction: row; |
| 287 |
flex-wrap: wrap; |
| 288 |
width: 100%; |
| 289 |
} |
| 290 |
.pp-sub-widget-include .pp-sub-btns { |
| 291 |
width: 100% !important; |
| 292 |
} |
| 293 |
.pp-sub-widget .pp-sub-m { |
| 294 |
clear: both; |
| 295 |
margin: 10px; |
| 296 |
} |
| 297 |
.pp-sub-widget p.pp-sub-m-p { |
| 298 |
margin: 0; |
| 299 |
font-size: 90%; |
| 300 |
color: rgb(25,118,210); |
| 301 |
} |
| 302 |
.pp-sub-widget .pp-sub-m-i { |
| 303 |
width: 80%; |
| 304 |
color: #333333; |
| 305 |
font-size: 85%; |
| 306 |
border: 1px solid #999999; |
| 307 |
padding: 5px; |
| 308 |
} |
| 309 |
.pp-sub-widget-modern a.pp-sub-btn:hover, .pp-sub-widget-modern a.pp-sub-bub-sq:hover { |
| 310 |
color: #444444; |
| 311 |
} |
| 312 |
@media screen and (max-width: 400px) { |
| 313 |
.pp-sub-widget .pp-sub-bx { |
| 314 |
-webkit-column-count: 1; |
| 315 |
-moz-column-count: 1; |
| 316 |
column-count: 1; |
| 317 |
-webkit-column-gap: 0; |
| 318 |
-moz-column-gap: 0; |
| 319 |
column-gap: 0; |
| 320 |
} |
| 321 |
.pp-sub-widget .pp-sub-t { |
| 322 |
font-size: 150%; |
| 323 |
} |
| 324 |
} |
| 325 |
|
| 326 |
/*Styling for icons */ |
| 327 |
.pp-sub-ic { |
| 328 |
display: inline-block; |
| 329 |
width: 48px; |
| 330 |
height: 48px; |
| 331 |
border: 0; |
| 332 |
vertical-align: middle; |
| 333 |
background-repeat: no-repeat; |
| 334 |
margin-right: 1em; |
| 335 |
background-size: 50px; |
| 336 |
} |
| 337 |
.pp-sub-widget-modern .pp-sub-ic { |
| 338 |
transform: scale(1.5); |
| 339 |
padding-left: 15px; |
| 340 |
box-sizing: border-box; |
| 341 |
background-image: url('../images/modern_icon_sprite_2024_2.svg'); |
| 342 |
} |
| 343 |
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { |
| 344 |
/* IE10+ CSS styles go here */ |
| 345 |
.pp-sub-widget-modern a .pp-sub-ic { |
| 346 |
background-image: url('../images/modern_icon_sprite_2024.png'); |
| 347 |
} |
| 348 |
} |
| 349 |
|
| 350 |
|
| 351 |
/*Sprite background positions for modern buttons*/ |
| 352 |
.pp-sub-widget-modern .pp-sub-itunes .pp-sub-ic { |
| 353 |
background-position: 0 -5px; |
| 354 |
} |
| 355 |
.pp-sub-widget-modern .pp-sub-android .pp-sub-ic { |
| 356 |
background-position: 0 -55px; |
| 357 |
} |
| 358 |
.pp-sub-widget-modern .pp-sub-email .pp-sub-ic { |
| 359 |
background-position: 0 -106px; |
| 360 |
} |
| 361 |
.pp-sub-widget-modern .pp-sub-gp .pp-sub-ic { |
| 362 |
background-position: 0 -155px; |
| 363 |
} |
| 364 |
.pp-sub-widget-modern .pp-sub-stitcher .pp-sub-ic { |
| 365 |
background-position: 0 -205px; |
| 366 |
} |
| 367 |
.pp-sub-widget-modern .pp-sub-tunein .pp-sub-ic { |
| 368 |
background-position: 0 -255px; |
| 369 |
} |
| 370 |
.pp-sub-widget-modern .pp-sub-spotify .pp-sub-ic { |
| 371 |
background-position: 0 -307px; |
| 372 |
} |
| 373 |
.pp-sub-widget-modern .pp-sub-iheartradio .pp-sub-ic { |
| 374 |
background-position: 0 -456px; |
| 375 |
} |
| 376 |
.pp-sub-widget-modern .pp-sub-deezer .pp-sub-ic { |
| 377 |
background-position: 0 -507px; |
| 378 |
} |
| 379 |
.pp-sub-widget-modern .pp-sub-anghami .pp-sub-ic { |
| 380 |
background-position: 0 -1254px; |
| 381 |
} |
| 382 |
.pp-sub-widget-modern .pp-sub-pandora .pp-sub-ic { |
| 383 |
background-position: 0 -555px; |
| 384 |
} |
| 385 |
.pp-sub-widget-modern .pp-sub-rss .pp-sub-ic { |
| 386 |
background-position: 0 -355px; |
| 387 |
} |
| 388 |
.pp-sub-widget-modern .pp-sub-more .pp-sub-ic { |
| 389 |
background-position: 0 -405px; |
| 390 |
} |
| 391 |
.pp-sub-widget-modern .pp-sub-amazon .pp-sub-ic { |
| 392 |
background-position: 0 -1003px; |
| 393 |
} |
| 394 |
.pp-sub-widget-modern .pp-sub-pcindex .pp-sub-ic { |
| 395 |
background-position: 0 -1053px; |
| 396 |
} |
| 397 |
.pp-sub-widget-modern .pp-sub-jiosaavn .pp-sub-ic { |
| 398 |
background-position: 0 -1103px; |
| 399 |
} |
| 400 |
.pp-sub-widget-modern .pp-sub-gaana .pp-sub-ic { |
| 401 |
background-position: 0 -1203px; |
| 402 |
} |
| 403 |
.pp-sub-widget-modern .pp-sub-podchaser .pp-sub-ic { |
| 404 |
background-position: 0 -1153px; |
| 405 |
} |
| 406 |
.pp-sub-widget-modern .pp-sub-youtube .pp-sub-ic { |
| 407 |
background-position: 0 -1306px; |
| 408 |
} |
| 409 |
@media (max-width: 640px) { |
| 410 |
.pp-sub-widget { |
| 411 |
padding: 0 8px; |
| 412 |
} |
| 413 |
|
| 414 |
.pp-sub-widget-include img.pp-sub-l { |
| 415 |
width: 40% !important; |
| 416 |
height: auto !important; |
| 417 |
} |
| 418 |
|
| 419 |
.pp-sub-widget img.pp-sub-l { |
| 420 |
width: 40%; |
| 421 |
height: auto; |
| 422 |
margin: 0 1em 2em 0; |
| 423 |
} |
| 424 |
.pp-sub-widget-include div.pp-sub-t { |
| 425 |
margin: 15px 2px 0 2px !important; |
| 426 |
font-size: 125% !important; |
| 427 |
} |
| 428 |
.pp-sub-widget div.pp-sub-t { |
| 429 |
margin: 15px 2px 0 2px; |
| 430 |
font-size: 125%; |
| 431 |
} |
| 432 |
|
| 433 |
#main.content-area { |
| 434 |
padding: 10px 4px 0 4px; |
| 435 |
} |
| 436 |
} |