No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_wifisection.scss 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. .wifiSection {
  2. overflow-x: hidden;
  3. position: relative;
  4. // .wifiSectionImg {
  5. // width: 100vw;
  6. // height: 100vh;
  7. // margin: 10rem 0;
  8. // background-image: url("./../../dist/assets/imgs/productoverview/wifilap.png");
  9. // background-color: white;
  10. // background-size: cover;
  11. // background-repeat: no-repeat;
  12. // background-position: center;
  13. // }
  14. .wifiSectionDes{
  15. display: none;
  16. }
  17. .textWifiContainer {
  18. position: relative;
  19. .wifiSection_des {
  20. max-width: 500px;
  21. position: absolute;
  22. right: 0;
  23. top: -48%;
  24. width: 100%;
  25. height: 100%;
  26. }
  27. .textWifiContainerHeading {
  28. >h1 {
  29. font-size: 5rem;
  30. }
  31. }
  32. }
  33. }
  34. @media (max-width:1200px) {
  35. .wifiSection{
  36. .textWifiContainer {
  37. .textWifiContainerHeading {
  38. >h1 {
  39. font-size: 5rem;
  40. }
  41. }
  42. }
  43. }
  44. }
  45. @media (max-width:1000px) {
  46. .wifiSection{
  47. .textWifiContainer {
  48. display: none;
  49. }
  50. .wifiSectionDes{
  51. padding: 2rem;
  52. display: block;
  53. .wifiSection_des {
  54. >p{
  55. font-size: 1rem;
  56. }
  57. }
  58. }
  59. }
  60. }