banner-mobile.css 407 B

1234567891011121314151617181920
  1. .banner {
  2. width: 100%;
  3. height: 9rem;
  4. background: black;
  5. position: relative;
  6. background-repeat: no-repeat;
  7. background-size: auto 100%;
  8. background-position: 50%;
  9. }
  10. .banner-title {
  11. height: 1.375rem;
  12. font-size: 1.25rem;
  13. font-weight: normal;
  14. color: #ffffff;
  15. position: absolute;
  16. line-height: 1.375rem;
  17. left: 50%;
  18. top: calc((9rem - 0.6875rem) / 2);
  19. transform: translate(-50%, 0);
  20. }