_cover.scss 447 B

12345678910111213141516171819202122232425
  1. // A cover block is a full size cover with a fixed background for smaller screens.
  2. @include td-box-height-modifiers(".td-cover-block");
  3. .td-cover-logo {
  4. margin-right: 0.5em;
  5. }
  6. .td-cover-block {
  7. position: relative;
  8. padding-top: 5rem;
  9. padding-bottom: 5rem;
  10. background: {
  11. repeat: no-repeat;
  12. position: 50% 0;
  13. size: cover;
  14. }
  15. & > .byline {
  16. @extend .small;
  17. position: absolute;
  18. bottom: 2px;
  19. right: 4px;
  20. }
  21. }