_devices.scss 493 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // DEVICES
  3. //
  4. .device {
  5. position: relative;
  6. background-size: cover;
  7. }
  8. //
  9. // iPhone X White
  10. //
  11. .device.appetize {
  12. width: 426px;
  13. height: 859px;
  14. }
  15. .device.appetize .frame {
  16. position: absolute;
  17. width: 100%;
  18. height: 100%;
  19. z-index:1;
  20. pointer-events: none;
  21. background-image: url(../../images/iphonex.png);
  22. background-size: 100%;
  23. }
  24. .device.appetize iframe {
  25. position: absolute;
  26. width: 375px;
  27. height: 812px;
  28. margin-left: 24px;
  29. margin-top: 31px;
  30. z-index:0;
  31. }