| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- //
- // 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(/assets/img/iphonex.png);
- background-size: 100%;
- }
- .device.appetize iframe {
- position: absolute;
- width: 375px;
- height: 812px;
- margin-left: 24px;
- margin-top: 31px;
- z-index:0;
- }
- .device.screenshot {
- width: 341px;
- height: 688px;
- }
- .device.screenshot .frame {
- position: absolute;
- width: 100%;
- height: 100%;
- z-index:1;
- pointer-events: none;
- background-image: url(/assets/img/iphonex.png);
- background-size: 100%;
- }
- .device.screenshot img {
- position: absolute;
- width: 300px;
- height: 650px;
- margin-left: 19px;
- margin-top: 25px;
- z-index:0;
- }
|