| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- //
- // DEVICES
- //
- .device {
- position: relative;
- background-size: cover;
- }
- //
- // iPhone X White
- //
- .device.appetize {
- width: 426px;
- height: 859px;
- }
- .device.appetize .frame {
- position: absolute;
- width: 100%;
- height: 100%;
- z-index:1;
- pointer-events: none;
- background-image: url(../../images/iphonex.png);
- background-size: 100%;
- }
- .device.appetize iframe {
- position: absolute;
- width: 375px;
- height: 812px;
- margin-left: 24px;
- margin-top: 31px;
- z-index:0;
- }
- .device.appetize img {
- position: absolute;
- width: 375px;
- height: 812px;
- margin-left: 24px;
- margin-top: 31px;
- z-index:0;
- }
|