_devices.scss 883 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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(/assets/img/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. }
  32. .device.screenshot {
  33. width: 341px;
  34. height: 688px;
  35. }
  36. .device.screenshot .frame {
  37. position: absolute;
  38. width: 100%;
  39. height: 100%;
  40. z-index:1;
  41. pointer-events: none;
  42. background-image: url(/assets/img/iphonex.png);
  43. background-size: 100%;
  44. }
  45. .device.screenshot img {
  46. position: absolute;
  47. width: 300px;
  48. height: 650px;
  49. margin-left: 19px;
  50. margin-top: 25px;
  51. z-index:0;
  52. }