| 1 |
/** |
| 2 |
* Jetpack Portfolio Shortcode |
| 3 |
*/ |
| 4 |
|
| 5 |
.site .portfolio-entry { |
| 6 |
margin-bottom: 1.6em; |
| 7 |
} |
| 8 |
|
| 9 |
.site .portfolio-entry-title, |
| 10 |
.site .portfolio-entry-meta, |
| 11 |
.site .portfolio-entry-content { |
| 12 |
font-size: 1.2rem; |
| 13 |
font-size: 12px; |
| 14 |
line-height: 1.5; |
| 15 |
} |
| 16 |
|
| 17 |
.site .portfolio-featured-image + .portfolio-entry-title { |
| 18 |
margin-top: 0.75em; |
| 19 |
margin-bottom: 0.75em; |
| 20 |
} |
| 21 |
|
| 22 |
.site .portfolio-entry-meta { |
| 23 |
font-family: "Noto Sans", sans-serif; |
| 24 |
} |
| 25 |
|
| 26 |
.site .portfolio-entry-content .more-link::after { |
| 27 |
font-size: 16px; |
| 28 |
top: 1px; |
| 29 |
} |
| 30 |
|
| 31 |
/** |
| 32 |
* Jetpack Widgets |
| 33 |
*/ |
| 34 |
|
| 35 |
/* Blog Subscriptions Widget */ |
| 36 |
.jetpack_subscription_widget #subscribe-email input { |
| 37 |
padding: 0.375em; |
| 38 |
width: 100%; |
| 39 |
} |
| 40 |
|
| 41 |
.jetpack_subscription_widget form > :last-child { |
| 42 |
margin-bottom: 0; |
| 43 |
} |
| 44 |
|
| 45 |
/* Display WordPress Posts Widget */ |
| 46 |
.widget_jetpack_display_posts_widget .jetpack-display-remote-posts { |
| 47 |
margin: 0; |
| 48 |
} |
| 49 |
|
| 50 |
.widget_jetpack_display_posts_widget .jetpack-display-remote-posts h4 { |
| 51 |
font-size: inherit; |
| 52 |
margin: 0 0 1.6em; |
| 53 |
} |
| 54 |
|
| 55 |
.widget_jetpack_display_posts_widget .jetpack-display-remote-posts img { |
| 56 |
margin: 0 0 1.6em; |
| 57 |
} |
| 58 |
|
| 59 |
.widget_jetpack_display_posts_widget .jetpack-display-remote-posts p { |
| 60 |
font-size: inherit; |
| 61 |
line-height: 1.6 !important; |
| 62 |
margin: 0 0 1.6em !important; |
| 63 |
} |
| 64 |
|
| 65 |
.widget_jetpack_display_posts_widget .jetpack-display-remote-posts > :last-child { |
| 66 |
margin-bottom: 0 !important; |
| 67 |
} |
| 68 |
|
| 69 |
/* Gallery Widget */ |
| 70 |
.widget-gallery .jetpack-slideshow-window { |
| 71 |
border-radius: 0; |
| 72 |
} |
| 73 |
|
| 74 |
/* Gravatar Profile Widget */ |
| 75 |
.widget-area .widget-grofile .grofile-thumbnail { |
| 76 |
border-radius: 50%; |
| 77 |
max-width: 200px; |
| 78 |
} |
| 79 |
|
| 80 |
.widget-area .widget-grofile h4 { |
| 81 |
margin: 1.6em 0 0; |
| 82 |
} |
| 83 |
|
| 84 |
.widget-area .widget-grofile .grofile-accounts { |
| 85 |
margin-top: 0.8em; |
| 86 |
} |
| 87 |
|
| 88 |
/* Image Widget */ |
| 89 |
.widget_image .wp-caption { |
| 90 |
margin-bottom: 0; |
| 91 |
} |
| 92 |
|
| 93 |
.widget_image .wp-caption-text { |
| 94 |
padding-bottom: 0; |
| 95 |
} |
| 96 |
|
| 97 |
/* RSS Links Widget */ |
| 98 |
.widget_rss_links img { |
| 99 |
position: relative; |
| 100 |
top: -2px; |
| 101 |
} |
| 102 |
|
| 103 |
|
| 104 |
/* List type widgets */ |
| 105 |
.widget_rss_links ul, |
| 106 |
.widget_top-posts ul, |
| 107 |
.widget_upcoming_events_widget ul { |
| 108 |
list-style: none; |
| 109 |
margin: 0; |
| 110 |
} |
| 111 |
|
| 112 |
.widget_rss_links li, |
| 113 |
.widget_top-posts li, |
| 114 |
.widget_upcoming_events_widget li { |
| 115 |
border-top: 1px solid #eaeaea; |
| 116 |
border-top: 1px solid rgba(51, 51, 51, 0.1); |
| 117 |
padding: 0.7667em 0; |
| 118 |
} |
| 119 |
|
| 120 |
.widget_rss_links li:first-child, |
| 121 |
.widget_top-posts li:first-child, |
| 122 |
.widget_upcoming_events_widget li:first-child { |
| 123 |
border-top: 0; |
| 124 |
padding-top: 0; |
| 125 |
} |
| 126 |
|
| 127 |
.widget_rss_links li:last-child, |
| 128 |
.widget_top-posts li:last-child, |
| 129 |
.widget_upcoming_events_widget li:last-child { |
| 130 |
padding-bottom: 0; |
| 131 |
} |
| 132 |
|
| 133 |
/* Authors Widget */ |
| 134 |
.widget_authors > ul > li > a { |
| 135 |
margin-bottom: 1em; |
| 136 |
display: inline-block; |
| 137 |
} |
| 138 |
|
| 139 |
.widget_authors ul { |
| 140 |
list-style: none; |
| 141 |
margin: 0; |
| 142 |
} |
| 143 |
|
| 144 |
.widget_authors li { |
| 145 |
border-top: 1px solid #eaeaea; |
| 146 |
border-top: 1px solid rgba(51, 51, 51, 0.1); |
| 147 |
padding: 0.7667em 0; |
| 148 |
} |
| 149 |
|
| 150 |
.widget_authors li:first-child { |
| 151 |
border-top: 0; |
| 152 |
padding-top: 0; |
| 153 |
} |
| 154 |
|
| 155 |
.widget_authors li:last-child { |
| 156 |
padding-bottom: 0; |
| 157 |
} |
| 158 |
|
| 159 |
/** |
| 160 |
* Shortcodes Embeds |
| 161 |
*/ |
| 162 |
|
| 163 |
/* Facebook */ |
| 164 |
.fb_iframe_widget { |
| 165 |
margin-bottom: 1.6em; |
| 166 |
max-width: 100%; |
| 167 |
} |
| 168 |
|
| 169 |
.fb_iframe_widget span { |
| 170 |
max-width: 100%; |
| 171 |
} |
| 172 |
|
| 173 |
/* Gist */ |
| 174 |
.gist table { |
| 175 |
table-layout: auto; |
| 176 |
} |
| 177 |
|
| 178 |
.site .gist .gist-file { |
| 179 |
margin-bottom: 1.5em; |
| 180 |
} |
| 181 |
|
| 182 |
/* Googlemaps */ |
| 183 |
.googlemaps { |
| 184 |
margin-bottom: 1.6em; |
| 185 |
} |
| 186 |
|
| 187 |
.googlemaps iframe { |
| 188 |
margin-bottom: 0; |
| 189 |
} |
| 190 |
|
| 191 |
/* Crowdsignal */ |
| 192 |
.PDS_Poll, |
| 193 |
.CSS_Poll { |
| 194 |
display: block !important; |
| 195 |
margin-bottom: 1.6em; |
| 196 |
} |
| 197 |
|
| 198 |
.PDS_Poll .pds-box, |
| 199 |
.CSS_Poll .css-box { |
| 200 |
max-width: 100%; |
| 201 |
width: auto; |
| 202 |
} |
| 203 |
|
| 204 |
/* Presentation */ |
| 205 |
.site .presentation-wrapper { |
| 206 |
margin: 0 auto 1.6em; |
| 207 |
} |
| 208 |
|
| 209 |
/* Recipes */ |
| 210 |
.site .jetpack-recipe { |
| 211 |
border: 0; |
| 212 |
margin: 0 0 1.6em; |
| 213 |
padding: 0; |
| 214 |
} |
| 215 |
|
| 216 |
.site .jetpack-recipe-title { |
| 217 |
border: 0; |
| 218 |
margin-top: 0; |
| 219 |
padding: 0; |
| 220 |
} |
| 221 |
|
| 222 |
.site .jetpack-recipe .jetpack-recipe-meta { |
| 223 |
font-size: inherit; |
| 224 |
margin: 0; |
| 225 |
} |
| 226 |
|
| 227 |
/* Slideshow */ |
| 228 |
.site .jetpack-slideshow-window { |
| 229 |
border-radius: 0; |
| 230 |
margin-bottom: 1.6em; |
| 231 |
} |
| 232 |
|
| 233 |
/* Twitter-timeline */ |
| 234 |
iframe[id*="twitter-widget-"] { |
| 235 |
display: block; |
| 236 |
} |
| 237 |
|
| 238 |
/* Vine */ |
| 239 |
.vine-embed { |
| 240 |
display: block; |
| 241 |
} |
| 242 |
|
| 243 |
/* VideoPress */ |
| 244 |
.site .video-player { |
| 245 |
margin-bottom: 1.6em; |
| 246 |
padding: 0; |
| 247 |
} |
| 248 |
|
| 249 |
.video-player object { |
| 250 |
margin-bottom: 0; |
| 251 |
} |
| 252 |
|
| 253 |
|
| 254 |
/** |
| 255 |
* Tiled gallery |
| 256 |
*/ |
| 257 |
|
| 258 |
.site .tiled-gallery { |
| 259 |
margin-bottom: 1.6em; |
| 260 |
} |
| 261 |
|
| 262 |
/** |
| 263 |
* Responsive Videos |
| 264 |
*/ |
| 265 |
|
| 266 |
.jetpack-video-wrapper { |
| 267 |
margin-bottom: 1.6em; |
| 268 |
} |
| 269 |
|
| 270 |
.jetpack-video-wrapper > embed, |
| 271 |
.jetpack-video-wrapper > iframe, |
| 272 |
.jetpack-video-wrapper > object, |
| 273 |
.jetpack-video-wrapper > .wp-video { |
| 274 |
margin-bottom: 0; |
| 275 |
} |
| 276 |
|
| 277 |
/** |
| 278 |
* Jetpack Comments |
| 279 |
*/ |
| 280 |
|
| 281 |
.comment-form iframe { |
| 282 |
margin: 0; |
| 283 |
} |
| 284 |
|
| 285 |
.comment-form .subscribe-label { |
| 286 |
font-weight: 400; |
| 287 |
text-transform: none; |
| 288 |
} |
| 289 |
|
| 290 |
.comment-subscription-form { |
| 291 |
font-size: 12px; |
| 292 |
font-size: 1.2rem; |
| 293 |
/* stylelint-disable-next-line declaration-property-unit-allowed-list -- this should be changed to a unitless value: https://developer.wordpress.org/coding-standards/wordpress-coding-standards/css/#values */ |
| 294 |
line-height: 1.5em; |
| 295 |
margin: 2em 0 0; |
| 296 |
} |
| 297 |
|
| 298 |
.comment-subscription-form + .comment-subscription-form { |
| 299 |
margin-top: 1em; |
| 300 |
} |
| 301 |
|
| 302 |
|
| 303 |
/** |
| 304 |
* Sharing |
| 305 |
*/ |
| 306 |
|
| 307 |
.hentry div.sharedaddy h3.sd-title, |
| 308 |
.hentry h3.sd-title { |
| 309 |
font-family: "Noto Sans", sans-serif; |
| 310 |
font-size: 12px; |
| 311 |
font-size: 1.2rem; |
| 312 |
line-height: 1; |
| 313 |
margin: 0 0 1em 0; |
| 314 |
opacity: 0.7; |
| 315 |
text-transform: uppercase; |
| 316 |
} |
| 317 |
|
| 318 |
|
| 319 |
/** |
| 320 |
* Related Posts |
| 321 |
*/ |
| 322 |
|
| 323 |
.hentry #jp-relatedposts { |
| 324 |
margin: 0; |
| 325 |
padding-top: 0; |
| 326 |
} |
| 327 |
|
| 328 |
.hentry .jp-relatedposts-post-title a { |
| 329 |
border-bottom: 0; |
| 330 |
} |
| 331 |
|
| 332 |
.hentry .jp-relatedposts-headline em::before { |
| 333 |
opacity: 0.7; |
| 334 |
} |
| 335 |
|
| 336 |
.hentry div#jp-relatedposts h3.jp-relatedposts-headline { |
| 337 |
font-family: "Noto Sans", sans-serif; |
| 338 |
font-size: 12px; |
| 339 |
font-size: 1.2rem; |
| 340 |
opacity: 0.7; |
| 341 |
text-transform: uppercase; |
| 342 |
} |
| 343 |
|
| 344 |
.hentry div#jp-relatedposts div.jp-relatedposts-items-visual { |
| 345 |
margin-right: 0; |
| 346 |
} |
| 347 |
|
| 348 |
.hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post { |
| 349 |
margin-bottom: 1.6em; |
| 350 |
opacity: 1; |
| 351 |
} |
| 352 |
|
| 353 |
.hentry div#jp-relatedposts div.jp-relatedposts-items-visual h4.jp-relatedposts-post-title, |
| 354 |
.hentry div#jp-relatedposts div.jp-relatedposts-items p { |
| 355 |
font-size: 1.2rem; |
| 356 |
font-size: 12px; |
| 357 |
line-height: 1.5; |
| 358 |
} |
| 359 |
|
| 360 |
.hentry .jp-relatedposts-post-title { |
| 361 |
font-weight: 700; |
| 362 |
} |
| 363 |
|
| 364 |
.hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-title a { |
| 365 |
font-weight: inherit; |
| 366 |
} |
| 367 |
|
| 368 |
.hentry div#jp-relatedposts div.jp-relatedposts-items div.jp-relatedposts-post:hover .jp-relatedposts-post-title a, |
| 369 |
.hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-title a { |
| 370 |
text-decoration: none; |
| 371 |
} |
| 372 |
|
| 373 |
.hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-context, |
| 374 |
.hentry div#jp-relatedposts div.jp-relatedposts-items-visual div.jp-relatedposts-post-nothumbs p.jp-relatedposts-post-excerpt { |
| 375 |
opacity: 0.7; |
| 376 |
} |
| 377 |
|
| 378 |
.hentry .jp-relatedposts-post-img { |
| 379 |
margin-bottom: 0.6em; |
| 380 |
} |
| 381 |
|
| 382 |
|
| 383 |
/** |
| 384 |
* Stats |
| 385 |
*/ |
| 386 |
|
| 387 |
#wpstats { |
| 388 |
display: none; |
| 389 |
} |
| 390 |
|
| 391 |
|
| 392 |
/** |
| 393 |
* Media Queries |
| 394 |
*/ |
| 395 |
|
| 396 |
@media screen and (min-width: 46.25em) { |
| 397 |
|
| 398 |
.site .portfolio-entry { |
| 399 |
margin-bottom: 1.6471em; |
| 400 |
} |
| 401 |
|
| 402 |
.site .portfolio-entry-title, |
| 403 |
.site .portfolio-entry-meta, |
| 404 |
.site .portfolio-entry-content { |
| 405 |
font-size: 1.4rem; |
| 406 |
font-size: 14px; |
| 407 |
} |
| 408 |
|
| 409 |
.site .portfolio-entry-content .more-link::after { |
| 410 |
top: 3px; |
| 411 |
} |
| 412 |
|
| 413 |
.site .hentry .gist .gist-file { |
| 414 |
margin-bottom: 1.75em; |
| 415 |
} |
| 416 |
|
| 417 |
.site .widget .gist .gist-file { |
| 418 |
margin-bottom: 1.3125em; |
| 419 |
} |
| 420 |
|
| 421 |
.hentry .fb_iframe_widget, |
| 422 |
.hentry .googlemaps, |
| 423 |
.hentry .PDS_Poll, |
| 424 |
.hentry .CSS_Poll, |
| 425 |
.site .hentry .presentation-wrapper, |
| 426 |
.site .hentry .jetpack-recipe, |
| 427 |
.site .hentry .jetpack-slideshow-window, |
| 428 |
.site .hentry .video-player { |
| 429 |
margin-bottom: 1.6471em; |
| 430 |
} |
| 431 |
|
| 432 |
.widget .fb_iframe_widget, |
| 433 |
.widget .googlemaps, |
| 434 |
.widget .PDS_Poll, |
| 435 |
.widget .CSS_Poll, |
| 436 |
.site .widget .presentation-wrapper, |
| 437 |
.site .widget .jetpack-recipe, |
| 438 |
.site .widget .jetpack-slideshow-window, |
| 439 |
.site .widget .video-player { |
| 440 |
margin-bottom: 1.5em; |
| 441 |
} |
| 442 |
|
| 443 |
.widget_jetpack_display_posts_widget .jetpack-display-remote-posts h4, |
| 444 |
.widget_jetpack_display_posts_widget .jetpack-display-remote-posts img { |
| 445 |
margin: 0 0 1.5em; |
| 446 |
} |
| 447 |
|
| 448 |
.widget_jetpack_display_posts_widget .jetpack-display-remote-posts p { |
| 449 |
line-height: 1.5 !important; |
| 450 |
margin: 0 0 1.5em !important; |
| 451 |
} |
| 452 |
|
| 453 |
.widget-area .widget-grofile h4 { |
| 454 |
margin: 1.5em 0 0; |
| 455 |
} |
| 456 |
|
| 457 |
.widget-area .widget-grofile .grofile-accounts { |
| 458 |
margin-top: 0.75em; |
| 459 |
} |
| 460 |
|
| 461 |
.jetpack_subscription_widget #subscribe-email input { |
| 462 |
padding: 0.5625em; |
| 463 |
} |
| 464 |
|
| 465 |
.widget_rss_links li, |
| 466 |
.widget_top-posts li, |
| 467 |
.widget_upcoming_events_widget li { |
| 468 |
padding: 0.9643em 0; |
| 469 |
} |
| 470 |
|
| 471 |
.site .tiled-gallery { |
| 472 |
margin-bottom: 1.6471em; |
| 473 |
} |
| 474 |
|
| 475 |
.jetpack-video-wrapper { |
| 476 |
margin-bottom: 1.6471em; |
| 477 |
} |
| 478 |
|
| 479 |
.comment-subscription-form { |
| 480 |
font-size: 14px; |
| 481 |
font-size: 1.4rem; |
| 482 |
} |
| 483 |
|
| 484 |
.hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post { |
| 485 |
margin-bottom: 0; |
| 486 |
} |
| 487 |
|
| 488 |
.hentry div#jp-relatedposts div.jp-relatedposts-items-visual h4.jp-relatedposts-post-title, |
| 489 |
.hentry div#jp-relatedposts div.jp-relatedposts-items p { |
| 490 |
font-size: 1.4rem; |
| 491 |
font-size: 14px; |
| 492 |
} |
| 493 |
|
| 494 |
.jp-relatedposts-post-img { |
| 495 |
margin-bottom: 0.6176em; |
| 496 |
} |
| 497 |
} |
| 498 |
|
| 499 |
@media screen and (min-width: 55em) { |
| 500 |
|
| 501 |
.site .portfolio-entry { |
| 502 |
margin-bottom: 1.6842em; |
| 503 |
} |
| 504 |
|
| 505 |
.site .portfolio-entry-title, |
| 506 |
.site .portfolio-entry-meta, |
| 507 |
.site .portfolio-entry-content { |
| 508 |
font-size: 1.6rem; |
| 509 |
font-size: 16px; |
| 510 |
} |
| 511 |
|
| 512 |
.site .portfolio-entry-content .more-link::after { |
| 513 |
font-size: 24px; |
| 514 |
top: 0; |
| 515 |
} |
| 516 |
|
| 517 |
.site .hentry .gist .gist-file { |
| 518 |
margin-bottom: 2em; |
| 519 |
} |
| 520 |
|
| 521 |
.site .widget .gist .gist-file { |
| 522 |
margin-bottom: 1.5em; |
| 523 |
} |
| 524 |
|
| 525 |
.hentry .fb_iframe_widget, |
| 526 |
.hentry .googlemaps, |
| 527 |
.hentry .PDS_Poll, |
| 528 |
.hentry .CSS_Poll, |
| 529 |
.site .hentry .presentation-wrapper, |
| 530 |
.site .hentry .jetpack-recipe, |
| 531 |
.site .hentry .jetpack-slideshow-window, |
| 532 |
.site .hentry .video-player { |
| 533 |
margin-bottom: 1.6842em; |
| 534 |
} |
| 535 |
|
| 536 |
.site .tiled-gallery { |
| 537 |
margin-bottom: 1.6842em; |
| 538 |
} |
| 539 |
|
| 540 |
.jetpack_subscription_widget #subscribe-email input { |
| 541 |
padding: 0.75em; |
| 542 |
} |
| 543 |
|
| 544 |
.widget_rss_links li, |
| 545 |
.widget_top-posts li, |
| 546 |
.widget_upcoming_events_widget li { |
| 547 |
padding: 0.7188em 0; |
| 548 |
} |
| 549 |
|
| 550 |
.jetpack-video-wrapper { |
| 551 |
margin-bottom: 1.6842em; |
| 552 |
} |
| 553 |
|
| 554 |
.comment-subscription-form { |
| 555 |
font-size: 16px; |
| 556 |
font-size: 1.6rem; |
| 557 |
} |
| 558 |
|
| 559 |
.hentry div#jp-relatedposts div.jp-relatedposts-items-visual h4.jp-relatedposts-post-title, |
| 560 |
.hentry div#jp-relatedposts div.jp-relatedposts-items p { |
| 561 |
font-size: 1.6rem; |
| 562 |
font-size: 16px; |
| 563 |
/* stylelint-disable-next-line declaration-property-unit-allowed-list -- this should be changed to a unitless value: https://developer.wordpress.org/coding-standards/wordpress-coding-standards/css/#values */ |
| 564 |
line-height: 1.5em; |
| 565 |
} |
| 566 |
|
| 567 |
.jp-relatedposts-post-img { |
| 568 |
margin-bottom: 0.6315em; |
| 569 |
} |
| 570 |
} |
| 571 |
|
| 572 |
@media screen and (min-width: 59.6875em) { |
| 573 |
|
| 574 |
.site .portfolio-entry { |
| 575 |
margin-bottom: 1.6em; |
| 576 |
} |
| 577 |
|
| 578 |
.site .portfolio-entry-title, |
| 579 |
.site .portfolio-entry-meta, |
| 580 |
.site .portfolio-entry-content { |
| 581 |
font-size: 1.2rem; |
| 582 |
font-size: 12px; |
| 583 |
} |
| 584 |
|
| 585 |
.site .portfolio-entry-content .more-link::after { |
| 586 |
font-size: 16px; |
| 587 |
top: 1px; |
| 588 |
} |
| 589 |
|
| 590 |
.site .hentry .gist .gist-file { |
| 591 |
margin-bottom: 1.5em; |
| 592 |
} |
| 593 |
|
| 594 |
.site .widget .gist .gist-file { |
| 595 |
margin-bottom: 1.125em; |
| 596 |
} |
| 597 |
|
| 598 |
.hentry .fb_iframe_widget, |
| 599 |
.hentry .googlemaps, |
| 600 |
.hentry .PDS_Poll, |
| 601 |
.hentry .CSS_Poll, |
| 602 |
.site .hentry .presentation-wrapper, |
| 603 |
.site .hentry .jetpack-recipe, |
| 604 |
.site .hentry .jetpack-slideshow-window, |
| 605 |
.site .hentry .video-player { |
| 606 |
margin-bottom: 1.6em; |
| 607 |
} |
| 608 |
|
| 609 |
.site .tiled-gallery { |
| 610 |
margin-bottom: 1.6em; |
| 611 |
} |
| 612 |
|
| 613 |
.jetpack_subscription_widget #subscribe-email input { |
| 614 |
padding: 0.4583em; |
| 615 |
} |
| 616 |
|
| 617 |
.jetpack-video-wrapper { |
| 618 |
margin-bottom: 1.6em; |
| 619 |
} |
| 620 |
|
| 621 |
.widget-area .widget-grofile .grofile-thumbnail { |
| 622 |
max-width: 100%; |
| 623 |
} |
| 624 |
|
| 625 |
.widget_rss_links li, |
| 626 |
.widget_top-posts li, |
| 627 |
.widget_upcoming_events_widget li { |
| 628 |
padding: 0.4583em 0; |
| 629 |
} |
| 630 |
|
| 631 |
.comment-subscription-form { |
| 632 |
font-size: 12px; |
| 633 |
font-size: 1.2rem; |
| 634 |
} |
| 635 |
|
| 636 |
.hentry div#jp-relatedposts div.jp-relatedposts-items-visual h4.jp-relatedposts-post-title, |
| 637 |
.hentry div#jp-relatedposts div.jp-relatedposts-items p { |
| 638 |
font-size: 1.2rem; |
| 639 |
font-size: 12px; |
| 640 |
line-height: 1.5; |
| 641 |
} |
| 642 |
|
| 643 |
.jp-relatedposts-post-img { |
| 644 |
margin-bottom: 0.6em; |
| 645 |
} |
| 646 |
} |
| 647 |
|
| 648 |
@media screen and (min-width: 68.75em) { |
| 649 |
|
| 650 |
.site .portfolio-entry { |
| 651 |
margin-bottom: 1.6471em; |
| 652 |
} |
| 653 |
|
| 654 |
.site .portfolio-entry-title, |
| 655 |
.site .portfolio-entry-meta, |
| 656 |
.site .portfolio-entry-content { |
| 657 |
font-size: 1.4rem; |
| 658 |
font-size: 14px; |
| 659 |
} |
| 660 |
|
| 661 |
.site .portfolio-entry-content .more-link::after { |
| 662 |
top: 3px; |
| 663 |
} |
| 664 |
|
| 665 |
.site .hentry .gist .gist-file { |
| 666 |
margin-bottom: 1.75em; |
| 667 |
} |
| 668 |
|
| 669 |
.site .widget .gist .gist-file { |
| 670 |
margin-bottom: 1.3125em; |
| 671 |
} |
| 672 |
|
| 673 |
.hentry .fb_iframe_widget, |
| 674 |
.hentry .googlemaps, |
| 675 |
.hentry .PDS_Poll, |
| 676 |
.hentry .CSS_Poll, |
| 677 |
.site .hentry .presentation-wrapper, |
| 678 |
.site .hentry .jetpack-recipe, |
| 679 |
.site .hentry .jetpack-slideshow-window, |
| 680 |
.site .hentry .video-player { |
| 681 |
margin-bottom: 1.6471em; |
| 682 |
} |
| 683 |
|
| 684 |
.site .tiled-gallery { |
| 685 |
margin-bottom: 1.6471em; |
| 686 |
} |
| 687 |
|
| 688 |
.jetpack_subscription_widget #subscribe-email input { |
| 689 |
padding: 0.5em; |
| 690 |
} |
| 691 |
|
| 692 |
.widget_rss_links li, |
| 693 |
.widget_top-posts li, |
| 694 |
.widget_upcoming_events_widget li { |
| 695 |
padding: 0.4643em 0; |
| 696 |
} |
| 697 |
|
| 698 |
.jetpack-video-wrapper { |
| 699 |
margin-bottom: 1.6471em; |
| 700 |
} |
| 701 |
|
| 702 |
.comment-subscription-form { |
| 703 |
font-size: 14px; |
| 704 |
font-size: 1.4rem; |
| 705 |
} |
| 706 |
|
| 707 |
.hentry div#jp-relatedposts div.jp-relatedposts-items-visual h4.jp-relatedposts-post-title, |
| 708 |
.hentry div#jp-relatedposts div.jp-relatedposts-items p { |
| 709 |
font-size: 14px; |
| 710 |
font-size: 1.4rem; |
| 711 |
} |
| 712 |
|
| 713 |
.jp-relatedposts-post-img { |
| 714 |
margin-bottom: 0.6176em; |
| 715 |
} |
| 716 |
} |
| 717 |
|
| 718 |
@media screen and (min-width: 77.5em) { |
| 719 |
|
| 720 |
.site .portfolio-entry { |
| 721 |
margin-bottom: 1.6842em; |
| 722 |
} |
| 723 |
|
| 724 |
.site .portfolio-entry-title, |
| 725 |
.site .portfolio-entry-meta, |
| 726 |
.site .portfolio-entry-content { |
| 727 |
font-size: 1.6rem; |
| 728 |
font-size: 16px; |
| 729 |
} |
| 730 |
|
| 731 |
.site .portfolio-entry-content .more-link::after { |
| 732 |
font-size: 24px; |
| 733 |
top: 0; |
| 734 |
} |
| 735 |
|
| 736 |
.site .hentry .gist .gist-file { |
| 737 |
margin-bottom: 2em; |
| 738 |
} |
| 739 |
|
| 740 |
.site .widget .gist .gist-file { |
| 741 |
margin-bottom: 1.5em; |
| 742 |
} |
| 743 |
|
| 744 |
.hentry .fb_iframe_widget, |
| 745 |
.hentry .googlemaps, |
| 746 |
.hentry .PDS_Poll, |
| 747 |
.hentry .CSS_Poll, |
| 748 |
.site .hentry .presentation-wrapper, |
| 749 |
.site .hentry .jetpack-recipe, |
| 750 |
.site .hentry .jetpack-slideshow-window, |
| 751 |
.site .hentry .video-player { |
| 752 |
margin-bottom: 1.6842em; |
| 753 |
} |
| 754 |
|
| 755 |
.widget_rss_links li, |
| 756 |
.widget_top-posts li, |
| 757 |
.widget_upcoming_events_widget li { |
| 758 |
padding: 0.4688em 0; |
| 759 |
} |
| 760 |
|
| 761 |
.site .tiled-gallery { |
| 762 |
margin-bottom: 1.6842em; |
| 763 |
} |
| 764 |
|
| 765 |
.jetpack-video-wrapper { |
| 766 |
margin-bottom: 1.6842em; |
| 767 |
} |
| 768 |
|
| 769 |
.hentry div.sharedaddy h3.sd-title, |
| 770 |
.hentry div#jp-relatedposts h3.jp-relatedposts-headline { |
| 771 |
font-size: 13px; |
| 772 |
font-size: 1.3rem; |
| 773 |
} |
| 774 |
|
| 775 |
.comment-subscription-form { |
| 776 |
font-size: 16px; |
| 777 |
font-size: 1.6rem; |
| 778 |
} |
| 779 |
|
| 780 |
.hentry div#jp-relatedposts div.jp-relatedposts-items-visual h4.jp-relatedposts-post-title, |
| 781 |
.hentry div#jp-relatedposts div.jp-relatedposts-items p { |
| 782 |
font-size: 16px; |
| 783 |
font-size: 1.6rem; |
| 784 |
/* stylelint-disable-next-line declaration-property-unit-allowed-list -- this should be changed to a unitless value: https://developer.wordpress.org/coding-standards/wordpress-coding-standards/css/#values */ |
| 785 |
line-height: 1.5em; |
| 786 |
} |
| 787 |
|
| 788 |
.jp-relatedposts-post-img { |
| 789 |
margin-bottom: 0.6315em; |
| 790 |
} |
| 791 |
} |
| 792 |
|