| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- //
- // DEVICES
- //
- .device {
- position: relative;
- background-size: cover;
- margin: auto;
- }
- //
- // 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;
- }
|