media-quieries.css 492 B

1234567891011121314151617181920212223242526272829
  1. @media screen and (max-width: 1000px) {
  2. h3{
  3. transition: all 1.5s ease;
  4. font-size: 7rem;
  5. line-height: 6rem;
  6. }
  7. #ddb .txt{
  8. transition: all 1.5s ease;
  9. left: 110px;
  10. }
  11. #ddb .txt img{
  12. transition: all 1.5s ease;
  13. top: 50px;
  14. left: 0;
  15. }
  16. #showroom .content img:nth-of-type(1){
  17. transition: all 1.5s ease;
  18. left: 90px;
  19. top: 650px;
  20. }
  21. #showroom .content img:nth-of-type(2){
  22. transition: all 1.5s ease;
  23. top: 170px;
  24. left: 330px;
  25. }
  26. }