Compare commits
2 Commits
master
...
landing_pa
Author | SHA1 | Date | |
---|---|---|---|
|
817ac1da36 | ||
|
3f50e1cff6 |
9
bash.exe.stackdump
Normal file
@ -0,0 +1,9 @@
|
||||
Exception: STATUS_STACK_OVERFLOW at rip=7FF8B82CEC07
|
||||
rax=0000000000001250 rbx=00000000FFFF8F90 rcx=0000000000000000
|
||||
rdx=0000000180010018 rsi=00000000FFFF8F98 rdi=000000018028E980
|
||||
r8 =00000000000B1D6A r9 =000000018028E980 r10=00000000FFFF7000
|
||||
r11=00000000FFE03310 r12=0000000000000420 r13=00000000FFFF8E70
|
||||
r14=000000018022F490 r15=00000000FFFF8E10
|
||||
rbp=0000000000000224 rsp=00000000FFFF8C88
|
||||
program=D:\Programs\Git\usr\bin\bash.exe, pid 7044, thread
|
||||
cs=0033 ds=002B es=002B fs=0053 gs=002B ss=002B
|
BIN
ordynacja/__pycache__/__init__.cpython-36.pyc
Normal file
BIN
ordynacja/__pycache__/admin.cpython-36.pyc
Normal file
BIN
ordynacja/__pycache__/apps.cpython-36.pyc
Normal file
BIN
ordynacja/__pycache__/models.cpython-36.pyc
Normal file
BIN
ordynacja/__pycache__/urls.cpython-36.pyc
Normal file
BIN
ordynacja/__pycache__/views.cpython-36.pyc
Normal file
@ -1,8 +0,0 @@
|
||||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
||||
from .models import Komitet, Okreg, Glosy
|
||||
|
||||
admin.site.register(Komitet)
|
||||
admin.site.register(Okreg)
|
||||
admin.site.register(Glosy)
|
BIN
ordynacja/migrations/__pycache__/0001_initial.cpython-36.pyc
Normal file
BIN
ordynacja/migrations/__pycache__/__init__.cpython-36.pyc
Normal file
@ -1,19 +0,0 @@
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import models
|
||||
|
||||
# Create your models here.
|
||||
|
||||
class Komitet(models.Model):
|
||||
name = models.CharField(max_length=255)
|
||||
kw_id = models.IntegerField(primary_key=True)
|
||||
|
||||
class Okreg(models.Model):
|
||||
name = models.CharField(max_length=255)
|
||||
o_id = models.IntegerField(primary_key=True)
|
||||
|
||||
class Glos(models.Model):
|
||||
g_id = models.IntegerField(primary_key=True)
|
||||
liczba = models.IntegerField()
|
||||
komitet = models.ForeignKey(Komitet)
|
||||
okreg = models.ForeignKey(Okreg, related_name="okregi")
|
386
ordynacja/static/css/new-age.css
Normal file
@ -0,0 +1,386 @@
|
||||
html,
|
||||
body {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'Muli', 'Helvetica', 'Arial', 'sans-serif';
|
||||
}
|
||||
|
||||
a {
|
||||
color: #fdcc52;
|
||||
-webkit-transition: all .35s;
|
||||
-moz-transition: all .35s;
|
||||
transition: all .35s;
|
||||
}
|
||||
|
||||
a:hover, a:focus {
|
||||
color: #fcbd20;
|
||||
}
|
||||
|
||||
hr {
|
||||
max-width: 100px;
|
||||
margin: 25px auto 0;
|
||||
border-width: 1px;
|
||||
border-color: rgba(34, 34, 34, 0.1);
|
||||
}
|
||||
|
||||
hr.light {
|
||||
border-color: white;
|
||||
}
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: 'Catamaran', 'Helvetica', 'Arial', 'sans-serif';
|
||||
font-weight: 200;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 18px;
|
||||
line-height: 1.5;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
section {
|
||||
padding: 100px 0;
|
||||
}
|
||||
|
||||
section h2 {
|
||||
font-size: 50px;
|
||||
}
|
||||
|
||||
#mainNav {
|
||||
border-color: rgba(34, 34, 34, 0.05);
|
||||
background-color: white;
|
||||
-webkit-transition: all .35s;
|
||||
-moz-transition: all .35s;
|
||||
transition: all .35s;
|
||||
font-family: 'Catamaran', 'Helvetica', 'Arial', 'sans-serif';
|
||||
font-weight: 200;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
|
||||
#mainNav .navbar-brand {
|
||||
color: #000000;
|
||||
font-family: 'Catamaran', 'Helvetica', 'Arial', 'sans-serif';
|
||||
font-weight: 200;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
|
||||
#mainNav .navbar-brand:hover, #mainNav .navbar-brand:focus {
|
||||
color: #d11732;
|
||||
}
|
||||
|
||||
#mainNav .navbar-toggler {
|
||||
font-size: 12px;
|
||||
padding: 8px 10px;
|
||||
color: #222222;
|
||||
}
|
||||
|
||||
#mainNav .navbar-nav > li > a {
|
||||
font-size: 11px;
|
||||
font-family: 'Lato', 'Helvetica', 'Arial', 'sans-serif';
|
||||
letter-spacing: 2px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
#mainNav .navbar-nav > li > a.active {
|
||||
color: white !important;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
#mainNav .navbar-nav > li > a.active:hover {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
#mainNav .navbar-nav > li > a,
|
||||
#mainNav .navbar-nav > li > a:focus {
|
||||
color: #22222;
|
||||
}
|
||||
|
||||
#mainNav .navbar-nav > li > a:hover,
|
||||
#mainNav .navbar-nav > li > a:focus:hover {
|
||||
color: white;
|
||||
}
|
||||
|
||||
@media (min-width: 992px) {
|
||||
#mainNav {
|
||||
border-color: transparent;
|
||||
background-color: transparent;
|
||||
}
|
||||
#mainNav .navbar-brand {
|
||||
color: fade(white, 70%);
|
||||
}
|
||||
#mainNav .navbar-brand:hover, #mainNav .navbar-brand:focus {
|
||||
color: #d11732;
|
||||
}
|
||||
#mainNav .navbar-nav > li > a,
|
||||
#mainNav .navbar-nav > li > a:focus {
|
||||
color: #000000;
|
||||
}
|
||||
#mainNav .navbar-nav > li > a:hover,
|
||||
#mainNav .navbar-nav > li > a:focus:hover {
|
||||
color: #d11732;
|
||||
}
|
||||
#mainNav.navbar-shrink {
|
||||
border-color: rgba(34, 34, 34, 0.1);
|
||||
background-color: #d11732;
|
||||
}
|
||||
#mainNav.navbar-shrink .navbar-brand {
|
||||
color: #222222;
|
||||
}
|
||||
#mainNav.navbar-shrink .navbar-brand:hover, #mainNav.navbar-shrink .navbar-brand:focus {
|
||||
color: white;
|
||||
}
|
||||
#mainNav.navbar-shrink .navbar-nav > li > a,
|
||||
#mainNav.navbar-shrink .navbar-nav > li > a:focus {
|
||||
color: #222222;
|
||||
}
|
||||
#mainNav.navbar-shrink .navbar-nav > li > a:hover,
|
||||
#mainNav.navbar-shrink .navbar-nav > li > a:focus:hover {
|
||||
color: white;
|
||||
}
|
||||
}
|
||||
|
||||
header.masthead {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
padding-top: 150px;
|
||||
padding-bottom: 100px;
|
||||
color: #d11732;
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
header.masthead .header-content {
|
||||
max-width: 500px;
|
||||
margin-bottom: 100px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
header.masthead .header-content h1 {
|
||||
font-size: 30px;
|
||||
}
|
||||
|
||||
header.masthead .device-container {
|
||||
max-width: 325px;
|
||||
margin-right: auto;
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
header.masthead .device-container .screen img {
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
@media (min-width: 992px) {
|
||||
header.masthead {
|
||||
height: 100vh;
|
||||
min-height: 775px;
|
||||
padding-top: 0;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
header.masthead .header-content {
|
||||
margin-bottom: 0;
|
||||
text-align: left;
|
||||
}
|
||||
header.masthead .header-content h1 {
|
||||
font-size: 50px;
|
||||
}
|
||||
header.masthead .device-container {
|
||||
max-width: 325px;
|
||||
}
|
||||
}
|
||||
|
||||
section.download {
|
||||
position: relative;
|
||||
padding: 80px 0;
|
||||
}
|
||||
|
||||
section.download h2 {
|
||||
font-size: 50px;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
section.download .badges .badge-link {
|
||||
display: block;
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
|
||||
section.download .badges .badge-link:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
section.download .badges .badge-link img {
|
||||
height: 60px;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
section.download .badges .badge-link {
|
||||
display: inline-block;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
section.download h2 {
|
||||
font-size: 70px;
|
||||
}
|
||||
}
|
||||
|
||||
section.cta {
|
||||
position: relative;
|
||||
padding: 250px 0;
|
||||
background-image: url("../img/bg-cta.jpg");
|
||||
background-position: center;
|
||||
-webkit-background-size: cover;
|
||||
-moz-background-size: cover;
|
||||
-o-background-size: cover;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
section.cta .cta-content {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
section.cta .cta-content h2 {
|
||||
font-size: 50px;
|
||||
max-width: 450px;
|
||||
margin-top: 0;
|
||||
margin-bottom: 25px;
|
||||
color: white;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
section.cta .cta-content h2 {
|
||||
font-size: 80px;
|
||||
}
|
||||
}
|
||||
|
||||
section.cta .overlay {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
section.contact {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
section.contact h2 {
|
||||
margin-top: 0;
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
|
||||
section.contact h2 i {
|
||||
color: #dd4b39;
|
||||
}
|
||||
|
||||
section.contact ul.list-social {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
section.contact ul.list-social li a {
|
||||
font-size: 40px;
|
||||
line-height: 80px;
|
||||
display: block;
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
color: white;
|
||||
border-radius: 100%;
|
||||
}
|
||||
|
||||
section.contact ul.list-social li.social-twitter a {
|
||||
background-color: #1da1f2;
|
||||
}
|
||||
|
||||
section.contact ul.list-social li.social-twitter a:hover {
|
||||
background-color: #0d95e8;
|
||||
}
|
||||
|
||||
section.contact ul.list-social li.social-facebook a {
|
||||
background-color: #3b5998;
|
||||
}
|
||||
|
||||
section.contact ul.list-social li.social-facebook a:hover {
|
||||
background-color: #344e86;
|
||||
}
|
||||
|
||||
section.contact ul.list-social li.social-google-plus a {
|
||||
background-color: #dd4b39;
|
||||
}
|
||||
|
||||
section.contact ul.list-social li.social-google-plus a:hover {
|
||||
background-color: #d73925;
|
||||
}
|
||||
|
||||
footer {
|
||||
padding: 25px 0;
|
||||
text-align: center;
|
||||
color: rgba(0, 0, 0, 0.5);
|
||||
background-color: #f5f5f5;
|
||||
border-top: 1px solid #ccc;
|
||||
}
|
||||
|
||||
footer p {
|
||||
font-size: 12px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
footer ul {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
footer ul li a {
|
||||
font-size: 12px;
|
||||
color: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
footer ul li a:hover, footer ul li a:focus, footer ul li a:active, footer ul li a.active {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.bg-primary {
|
||||
background: #FFFFFF !important;
|
||||
}
|
||||
|
||||
.text-primary {
|
||||
color: #fdcc52;
|
||||
}
|
||||
|
||||
.no-gutter > [class*='col-'] {
|
||||
padding-right: 0;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.btn-outline {
|
||||
color: #d11732;
|
||||
border: 1px solid;
|
||||
border-color: #d11732;
|
||||
}
|
||||
|
||||
.btn-outline:hover, .btn-outline:focus, .btn-outline:active, .btn-outline.active {
|
||||
color: white;
|
||||
border-color: #d11732;
|
||||
background-color: #d11732;
|
||||
}
|
||||
|
||||
.btn {
|
||||
border-radius: 300px;
|
||||
font-family: 'Lato', 'Helvetica', 'Arial', 'sans-serif';
|
||||
letter-spacing: 2px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.btn-xl {
|
||||
font-size: 11px;
|
||||
padding: 15px 45px;
|
||||
}
|
@ -1,4 +0,0 @@
|
||||
.picture {
|
||||
min-width: 50%;
|
||||
min-height: 100%;
|
||||
}
|
BIN
ordynacja/static/device-mockups/apple_watch/edition/gold.png
Normal file
After Width: | Height: | Size: 79 KiB |
BIN
ordynacja/static/device-mockups/apple_watch/edition/rose.png
Normal file
After Width: | Height: | Size: 86 KiB |
BIN
ordynacja/static/device-mockups/apple_watch/sport/black.png
Normal file
After Width: | Height: | Size: 34 KiB |
BIN
ordynacja/static/device-mockups/apple_watch/sport/blue.png
Normal file
After Width: | Height: | Size: 41 KiB |
BIN
ordynacja/static/device-mockups/apple_watch/sport/green.png
Normal file
After Width: | Height: | Size: 39 KiB |
BIN
ordynacja/static/device-mockups/apple_watch/sport/red.png
Normal file
After Width: | Height: | Size: 40 KiB |
BIN
ordynacja/static/device-mockups/apple_watch/sport/white.png
Normal file
After Width: | Height: | Size: 38 KiB |
BIN
ordynacja/static/device-mockups/apple_watch/watch/metal.png
Normal file
After Width: | Height: | Size: 133 KiB |
BIN
ordynacja/static/device-mockups/apple_watch/watch/steel.png
Normal file
After Width: | Height: | Size: 51 KiB |
772
ordynacja/static/device-mockups/device-mockups.css
Normal file
@ -0,0 +1,772 @@
|
||||
/*
|
||||
* HTML5 Device Mockups
|
||||
*
|
||||
* By:
|
||||
* Tomi Hiltunen
|
||||
* tomi@mitakuuluu.fi
|
||||
* http://fi.linkedin.com/in/tomihiltunen/
|
||||
*
|
||||
* Angelos Arnis
|
||||
* http://fi.linkedin.com/in/angelosarnis/
|
||||
*
|
||||
* Inluded in this package:
|
||||
* - iPhone5 (black/white, portrait/landscape)
|
||||
* - iPad2 (black/white, portrait/landscape)
|
||||
* - iMac
|
||||
* - MacBook Pro (retina model)
|
||||
* - Nexus 7
|
||||
* - Lumia 920
|
||||
* - Microsoft Surface
|
||||
* - Galaxy S3
|
||||
*
|
||||
* Added by ben182 (@beno182):
|
||||
* - iPhone 6
|
||||
* - iPhone 6 Plus
|
||||
* - iPhone SE
|
||||
* - iPad Air
|
||||
* - iPad Air 2
|
||||
* - iPad Pro
|
||||
* - Macbook 2015
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
/* GENERAL STYLE */
|
||||
|
||||
.device-mockup {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
padding-bottom: 61.775701%;
|
||||
}
|
||||
|
||||
.device-mockup > .device {
|
||||
position: absolute;
|
||||
top: 0; bottom: 0; left: 0; right: 0;
|
||||
width: 100%; height: 100%;
|
||||
background-size: 100% 100%;
|
||||
background-repeat: no-repeat;
|
||||
background-image: url("macbook/macbook.png");
|
||||
}
|
||||
|
||||
.device-mockup > .device > .screen {
|
||||
position: absolute;
|
||||
top: 11.0438729%;
|
||||
bottom: 14.6747352%;
|
||||
left: 13.364486%;
|
||||
right: 13.364486%;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.device-mockup > .device > .button {
|
||||
position: absolute;
|
||||
top: 0; left: 0;
|
||||
display: none;
|
||||
overflow: hidden;
|
||||
border-radius: 100%;
|
||||
-webkit-border-radius: 100%;
|
||||
-moz-border-radius: 100%;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
||||
/* DEVICES */
|
||||
|
||||
|
||||
/* iMac */
|
||||
.device-mockup.imac {
|
||||
padding-bottom: 81.230769%;
|
||||
}
|
||||
|
||||
.device-mockup.imac > .device {
|
||||
background-image: url("imac/imac.png");
|
||||
}
|
||||
|
||||
.device-mockup.imac > .device > .screen {
|
||||
top: 8.20707071%; bottom: 31.6919192%; left: 6.61538462%; right: 6.61538462%;
|
||||
}
|
||||
|
||||
|
||||
/* MacBook Pro */
|
||||
.device-mockup.macbook {
|
||||
padding-bottom: 61.775701%;
|
||||
}
|
||||
|
||||
.device-mockup.macbook > .device {
|
||||
background-image: url("macbook/macbook.png");
|
||||
}
|
||||
|
||||
.device-mockup.macbook > .device > .screen {
|
||||
top: 11.0438729%; bottom: 14.6747352%; left: 13.364486%; right: 13.364486%;
|
||||
}
|
||||
|
||||
/* MacBook 2015 */
|
||||
.device-mockup.macbook_2015 {
|
||||
padding-bottom: 57.50%;
|
||||
}
|
||||
|
||||
.device-mockup.macbook_2015 > .device,
|
||||
.device-mockup.macbook_2015.grey > .device {
|
||||
background-image: url("macbook_2015/grey.png");
|
||||
}
|
||||
|
||||
.device-mockup.macbook_2015 > .device,
|
||||
.device-mockup.macbook_2015.silver > .device {
|
||||
background-image: url("macbook_2015/silver.png");
|
||||
}
|
||||
|
||||
.device-mockup.macbook_2015 > .device,
|
||||
.device-mockup.macbook_2015.gold > .device {
|
||||
background-image: url("macbook_2015/gold.png");
|
||||
}
|
||||
|
||||
.device-mockup.macbook_2015 > .device > .screen {
|
||||
top: 7.5%; bottom: 10.9%; left: 12.46%; right: 12.56%;
|
||||
}
|
||||
|
||||
|
||||
/* iPhone 5 */
|
||||
.device-mockup.iphone5,
|
||||
.device-mockup.iphone5.portrait {
|
||||
padding-bottom: 210.57%;
|
||||
}
|
||||
|
||||
.device-mockup.iphone5.landscape {
|
||||
padding-bottom: 47.49%;
|
||||
}
|
||||
|
||||
.device-mockup.iphone5 > .device,
|
||||
.device-mockup.iphone5.black > .device,
|
||||
.device-mockup.iphone5.portrait.black > .device {
|
||||
background-image: url("iphone5/iphone5_port_black.png");
|
||||
}
|
||||
|
||||
.device-mockup.iphone5.landscape > .device,
|
||||
.device-mockup.iphone5.landscape.black > .device {
|
||||
background-image: url("iphone5/iphone5_land_black.png");
|
||||
}
|
||||
|
||||
.device-mockup.iphone5.white > .device,
|
||||
.device-mockup.iphone5.portrait.white > .device {
|
||||
background-image: url("iphone5/iphone5_port_white.png");
|
||||
}
|
||||
|
||||
.device-mockup.iphone5.landscape.white > .device {
|
||||
background-image: url("iphone5/iphone5_land_white.png");
|
||||
}
|
||||
|
||||
.device-mockup.iphone5 > .device > .screen,
|
||||
.device-mockup.iphone5.portrait > .device > .screen {
|
||||
top: 14.78%; bottom: 13.78%; left: 8.77%; right: 7.77%;
|
||||
}
|
||||
|
||||
.device-mockup.iphone5.landscape > .device > .screen {
|
||||
top: 7.422488%; bottom: 8.422488%; left: 14.919127%; right: 14.019127%;
|
||||
}
|
||||
|
||||
.device-mockup.iphone5 > .device > .button,
|
||||
.device-mockup.iphone5.portrait > .device > .button {
|
||||
display: block;
|
||||
top: 88.3%; bottom: 2.5%; left: 40%; right: 40%;
|
||||
}
|
||||
|
||||
.device-mockup.iphone5.landscape > .device > .button {
|
||||
display: block;
|
||||
top: 40%; bottom: 41%; left: 88.4%; right: 2.3%;
|
||||
}
|
||||
|
||||
/* iPhone SE */
|
||||
.device-mockup.iphone_se,
|
||||
.device-mockup.iphone_se.portrait {
|
||||
padding-bottom: 209.83%;
|
||||
}
|
||||
|
||||
.device-mockup.iphone_se.landscape {
|
||||
padding-bottom: 47.66%;
|
||||
}
|
||||
|
||||
.device-mockup.iphone_se > .device,
|
||||
.device-mockup.iphone_se.black > .device,
|
||||
.device-mockup.iphone_se.portrait.black > .device {
|
||||
background-image: url("iphone_se/iphone_se_port_black.png");
|
||||
}
|
||||
|
||||
.device-mockup.iphone_se.landscape > .device,
|
||||
.device-mockup.iphone_se.landscape.black > .device {
|
||||
background-image: url("iphone_se/iphone_se_land_black.png");
|
||||
}
|
||||
|
||||
.device-mockup.iphone_se.white > .device,
|
||||
.device-mockup.iphone_se.portrait.white > .device {
|
||||
background-image: url("iphone_se/iphone_se_port_white.png");
|
||||
}
|
||||
|
||||
.device-mockup.iphone_se.landscape.white > .device {
|
||||
background-image: url("iphone_se/iphone_se_land_white.png");
|
||||
}
|
||||
|
||||
.device-mockup.iphone_se.gold > .device,
|
||||
.device-mockup.iphone_se.portrait.gold > .device {
|
||||
background-image: url("iphone_se/iphone_se_port_gold.png");
|
||||
}
|
||||
|
||||
.device-mockup.iphone_se.landscape.gold > .device {
|
||||
background-image: url("iphone_se/iphone_se_land_gold.png");
|
||||
}
|
||||
|
||||
.device-mockup.iphone_se.rose > .device,
|
||||
.device-mockup.iphone_se.portrait.rose > .device {
|
||||
background-image: url("iphone_se/iphone_se_port_rose.png");
|
||||
}
|
||||
|
||||
.device-mockup.iphone_se.landscape.rose > .device {
|
||||
background-image: url("iphone_se/iphone_se_land_rose.png");
|
||||
}
|
||||
|
||||
.device-mockup.iphone_se > .device > .screen,
|
||||
.device-mockup.iphone_se.portrait > .device > .screen {
|
||||
top: 16.28%; bottom: 16.28%; left: 11.77%; right: 11.77%;
|
||||
}
|
||||
|
||||
.device-mockup.iphone_se.landscape > .device > .screen {
|
||||
top: 11.722488%; bottom: 11.722488%; left: 16.0191273%; right: 16.0191273%;
|
||||
}
|
||||
|
||||
.device-mockup.iphone_se > .device > .button,
|
||||
.device-mockup.iphone_se.portrait > .device > .button {
|
||||
display: block;
|
||||
top: 86.3%; bottom: 5.5%; left: 42%; right: 42%;
|
||||
}
|
||||
|
||||
.device-mockup.iphone_se.landscape > .device > .button {
|
||||
display: block;
|
||||
top: 42%; bottom: 42%; left: 86.4%; right: 5.1%;
|
||||
}
|
||||
|
||||
/* iPhone 6 */
|
||||
.device-mockup.iphone6,
|
||||
.device-mockup.iphone6.portrait {
|
||||
padding-bottom: 207.19%;
|
||||
}
|
||||
|
||||
.device-mockup.iphone6.landscape {
|
||||
padding-bottom: 48.76%;
|
||||
}
|
||||
|
||||
.device-mockup.iphone6 > .device,
|
||||
.device-mockup.iphone6.black > .device,
|
||||
.device-mockup.iphone6.portrait.black > .device {
|
||||
background-image: url("iphone_6/iphone_6_port_black.png");
|
||||
}
|
||||
|
||||
.device-mockup.iphone6.landscape > .device,
|
||||
.device-mockup.iphone6.landscape.black > .device {
|
||||
background-image: url("iphone_6/iphone_6_land_black.png");
|
||||
}
|
||||
|
||||
.device-mockup.iphone6.white > .device,
|
||||
.device-mockup.iphone6.portrait.white > .device {
|
||||
background-image: url("iphone_6/iphone_6_port_white.png");
|
||||
}
|
||||
|
||||
.device-mockup.iphone6.landscape.white > .device {
|
||||
background-image: url("iphone_6/iphone_6_land_white.png");
|
||||
}
|
||||
|
||||
.device-mockup.iphone6.gold > .device,
|
||||
.device-mockup.iphone6.portrait.gold > .device {
|
||||
background-image: url("iphone_6/iphone_6_port_gold.png");
|
||||
}
|
||||
|
||||
.device-mockup.iphone6.landscape.gold > .device {
|
||||
background-image: url("iphone_6/iphone_6_land_gold.png");
|
||||
}
|
||||
|
||||
.device-mockup.iphone6 > .device > .screen,
|
||||
.device-mockup.iphone6.portrait > .device > .screen {
|
||||
top: 12.58%; bottom: 12.88%; left: 6.77%; right: 6.77%;
|
||||
}
|
||||
|
||||
.device-mockup.iphone6.landscape > .device > .screen {
|
||||
top: 6.77%; bottom: 6.77%; left: 12.58%; right: 12.88%;
|
||||
}
|
||||
|
||||
.device-mockup.iphone6 > .device > .button,
|
||||
.device-mockup.iphone6.portrait > .device > .button {
|
||||
display: block;
|
||||
top: 88.6%; bottom: 3.2%; left: 42%; right: 42%;
|
||||
}
|
||||
|
||||
.device-mockup.iphone6.landscape > .device > .button {
|
||||
display: block;
|
||||
top: 42%; bottom: 42%; left: 88.6%; right: 3.2%;
|
||||
}
|
||||
|
||||
/* iPhone 6 Plus*/
|
||||
.device-mockup.iphone6_plus,
|
||||
.device-mockup.iphone6_plus.portrait {
|
||||
padding-bottom: 201.76%;
|
||||
}
|
||||
|
||||
.device-mockup.iphone6_plus.landscape {
|
||||
padding-bottom: 49.56%;
|
||||
}
|
||||
|
||||
.device-mockup.iphone6_plus > .device,
|
||||
.device-mockup.iphone6_plus.black > .device,
|
||||
.device-mockup.iphone6_plus.portrait.black > .device {
|
||||
background-image: url("iphone_6_plus/iphone_6_plus_black_port.png");
|
||||
}
|
||||
|
||||
.device-mockup.iphone6_plus.landscape > .device,
|
||||
.device-mockup.iphone6_plus.landscape.black > .device {
|
||||
background-image: url("iphone_6_plus/iphone_6_plus_black_land.png");
|
||||
}
|
||||
|
||||
.device-mockup.iphone6_plus.white > .device,
|
||||
.device-mockup.iphone6_plus.portrait.white > .device {
|
||||
background-image: url("iphone_6_plus/iphone_6_plus_white_port.png");
|
||||
}
|
||||
|
||||
.device-mockup.iphone6_plus.landscape.white > .device {
|
||||
background-image: url("iphone_6_plus/iphone_6_plus_white_land.png");
|
||||
}
|
||||
|
||||
.device-mockup.iphone6_plus.gold > .device,
|
||||
.device-mockup.iphone6_plus.portrait.gold > .device {
|
||||
background-image: url("iphone_6_plus/iphone_6_plus_gold_port.png");
|
||||
}
|
||||
|
||||
.device-mockup.iphone6_plus.landscape.gold > .device {
|
||||
background-image: url("iphone_6_plus/iphone_6_plus_gold_land.png");
|
||||
}
|
||||
|
||||
.device-mockup.iphone6_plus > .device > .screen,
|
||||
.device-mockup.iphone6_plus.portrait > .device > .screen {
|
||||
top: 11.58%; bottom: 11.58%; left: 5.97%; right: 5.97%;
|
||||
}
|
||||
|
||||
.device-mockup.iphone6_plus.landscape > .device > .screen {
|
||||
top: 5.97%; bottom: 5.97%; left: 11.38%; right: 11.58%;
|
||||
}
|
||||
|
||||
.device-mockup.iphone6_plus > .device > .button,
|
||||
.device-mockup.iphone6_plus.portrait > .device > .button {
|
||||
display: block;
|
||||
top: 89.9%; bottom: 3.2%; left: 43%; right: 43%;
|
||||
}
|
||||
|
||||
.device-mockup.iphone6_plus.landscape > .device > .button {
|
||||
display: block;
|
||||
top: 43%; bottom: 43%; left: 89.9%; right: 3.2%;
|
||||
}
|
||||
|
||||
/* iPad */
|
||||
.device-mockup.ipad,
|
||||
.device-mockup.ipad.portrait {
|
||||
padding-bottom: 128.406276%;
|
||||
}
|
||||
|
||||
.device-mockup.ipad.landscape {
|
||||
padding-bottom: 79.9086758%;
|
||||
}
|
||||
|
||||
.device-mockup.ipad > .device,
|
||||
.device-mockup.ipad.black > .device,
|
||||
.device-mockup.ipad.portrait.black > .device {
|
||||
background-image: url("ipad/ipad_port_black.png");
|
||||
}
|
||||
|
||||
.device-mockup.ipad.white > .device,
|
||||
.device-mockup.ipad.portrait.white > .device {
|
||||
background-image: url("ipad/ipad_port_white.png");
|
||||
}
|
||||
|
||||
.device-mockup.ipad.landscape > .device,
|
||||
.device-mockup.ipad.landscape.black > .device {
|
||||
background-image: url("ipad/ipad_land_black.png");
|
||||
}
|
||||
|
||||
.device-mockup.ipad.landscape.white > .device {
|
||||
background-image: url("ipad/ipad_land_white.png");
|
||||
}
|
||||
|
||||
.device-mockup.ipad > .device > .screen,
|
||||
.device-mockup.ipad.portrait > .device > .screen {
|
||||
top: 12.025723%; bottom: 12.154341%; left: 13.45995%; right: 13.45995%;
|
||||
}
|
||||
|
||||
.device-mockup.ipad.landscape > .device > .screen {
|
||||
top: 13.87755102%; bottom: 13.87755102%; left: 11.5459883%; right: 11.5459883%;
|
||||
}
|
||||
|
||||
.device-mockup.ipad > .device > .button,
|
||||
.device-mockup.ipad.portrait > .device > .button {
|
||||
display: block;
|
||||
top: 90.2%; bottom: 5.5%; left: 47.3%; right: 47.3%;
|
||||
}
|
||||
|
||||
.device-mockup.ipad.landscape > .device > .button {
|
||||
display: block;
|
||||
top: 47.3%; bottom: 47.3%; left: 90.8%; right: 4.9%;
|
||||
}
|
||||
|
||||
/* iPad Air */
|
||||
.device-mockup.ipad_air,
|
||||
.device-mockup.ipad_air.portrait {
|
||||
padding-bottom: 141.27%;
|
||||
}
|
||||
|
||||
.device-mockup.ipad_air.landscape {
|
||||
padding-bottom: 70.79%;
|
||||
}
|
||||
|
||||
.device-mockup.ipad_air > .device,
|
||||
.device-mockup.ipad_air.grey > .device,
|
||||
.device-mockup.ipad_air.portrait.grey > .device {
|
||||
background-image: url("ipad_air/ipad_air_gray_port.png");
|
||||
}
|
||||
|
||||
.device-mockup.ipad_air.silver > .device,
|
||||
.device-mockup.ipad_air.portrait.silver > .device {
|
||||
background-image: url("ipad_air/ipad_air_silver_port.png");
|
||||
}
|
||||
|
||||
.device-mockup.ipad_air.landscape > .device,
|
||||
.device-mockup.ipad_air.landscape.grey > .device {
|
||||
background-image: url("ipad_air/ipad_air_gray_land.png");
|
||||
}
|
||||
|
||||
.device-mockup.ipad_air.landscape.silver > .device {
|
||||
background-image: url("ipad_air/ipad_air_silver_land.png");
|
||||
}
|
||||
|
||||
.device-mockup.ipad_air > .device > .screen,
|
||||
.device-mockup.ipad_air.portrait > .device > .screen {
|
||||
top: 9.025723%; bottom: 9.154341%; left: 7.45995%; right: 6.45995%;
|
||||
}
|
||||
|
||||
.device-mockup.ipad_air.landscape > .device > .screen {
|
||||
top: 6.877551%; bottom: 6.877551%; left: 9.545988%; right: 9.545988%;
|
||||
}
|
||||
|
||||
.device-mockup.ipad_air > .device > .button,
|
||||
.device-mockup.ipad_air.portrait > .device > .button {
|
||||
display: block;
|
||||
top: 93.2%; bottom: 2.5%; left: 47.3%; right: 47.3%;
|
||||
}
|
||||
|
||||
.device-mockup.ipad_air.landscape > .device > .button {
|
||||
display: block;
|
||||
top: 47.3%; bottom: 47.3%; left: 93.1%; right: 2.1%;
|
||||
}
|
||||
|
||||
/* iPad Air 2 */
|
||||
.device-mockup.ipad_air_2,
|
||||
.device-mockup.ipad_air_2.portrait {
|
||||
padding-bottom: 141.38%;
|
||||
}
|
||||
|
||||
.device-mockup.ipad_air_2.landscape {
|
||||
padding-bottom: 70.73%;
|
||||
}
|
||||
|
||||
.device-mockup.ipad_air_2 > .device,
|
||||
.device-mockup.ipad_air_2.grey > .device,
|
||||
.device-mockup.ipad_air_2.portrait.grey > .device {
|
||||
background-image: url("ipad_air_2/ipad_air_2_gray_port.png");
|
||||
}
|
||||
|
||||
.device-mockup.ipad_air_2.silver > .device,
|
||||
.device-mockup.ipad_air_2.portrait.silver > .device {
|
||||
background-image: url("ipad_air_2/ipad_air_2_silver_port.png");
|
||||
}
|
||||
|
||||
.device-mockup.ipad_air_2.gold > .device,
|
||||
.device-mockup.ipad_air_2.portrait.gold > .device {
|
||||
background-image: url("ipad_air_2/ipad_air_2_gold_port.png");
|
||||
}
|
||||
|
||||
.device-mockup.ipad_air_2.landscape > .device,
|
||||
.device-mockup.ipad_air_2.landscape.grey > .device {
|
||||
background-image: url("ipad_air_2/ipad_air_2_gray_land.png");
|
||||
}
|
||||
|
||||
.device-mockup.ipad_air_2.landscape.silver > .device {
|
||||
background-image: url("ipad_air_2/ipad_air_2_silver_land.png");
|
||||
}
|
||||
|
||||
.device-mockup.ipad_air_2.landscape.gold > .device {
|
||||
background-image: url("ipad_air_2/ipad_air_2_gold_land.png");
|
||||
}
|
||||
|
||||
.device-mockup.ipad_air_2 > .device > .screen,
|
||||
.device-mockup.ipad_air_2.portrait > .device > .screen {
|
||||
top: 9.025723%; bottom: 8.854341%; left: 6.15995%; right: 6.15995%;
|
||||
}
|
||||
|
||||
.device-mockup.ipad_air_2.landscape > .device > .screen {
|
||||
top: 6.277551%; bottom: 6.277551%; left: 8.545988%; right: 8.545988%;
|
||||
}
|
||||
|
||||
.device-mockup.ipad_air_2 > .device > .button,
|
||||
.device-mockup.ipad_air_2.portrait > .device > .button {
|
||||
display: block;
|
||||
top: 93.2%; bottom: 2.1%; left: 46.3%; right: 46.5%;
|
||||
}
|
||||
|
||||
.device-mockup.ipad_air_2.landscape > .device > .button {
|
||||
display: block;
|
||||
top: 46.5%; bottom: 46.8%; left: 93.5%; right: 1.9%;
|
||||
}
|
||||
|
||||
/* iPad Pro */
|
||||
.device-mockup.ipad_pro,
|
||||
.device-mockup.ipad_pro.portrait {
|
||||
padding-bottom: 138.63%;
|
||||
}
|
||||
|
||||
.device-mockup.ipad_pro.landscape {
|
||||
padding-bottom: 72.14%;
|
||||
}
|
||||
|
||||
.device-mockup.ipad_pro > .device,
|
||||
.device-mockup.ipad_pro.grey > .device,
|
||||
.device-mockup.ipad_pro.portrait.grey > .device {
|
||||
background-image: url("ipad_pro/ipad_pro_port_black.png");
|
||||
}
|
||||
|
||||
.device-mockup.ipad_pro.silver > .device,
|
||||
.device-mockup.ipad_pro.portrait.silver > .device {
|
||||
background-image: url("ipad_pro/ipad_pro_port_silver.png");
|
||||
}
|
||||
|
||||
.device-mockup.ipad_pro.gold > .device,
|
||||
.device-mockup.ipad_pro.portrait.gold > .device {
|
||||
background-image: url("ipad_pro/ipad_pro_port_gold.png");
|
||||
}
|
||||
|
||||
.device-mockup.ipad_pro.landscape > .device,
|
||||
.device-mockup.ipad_pro.landscape.grey > .device {
|
||||
background-image: url("ipad_pro/ipad_pro_land_black.png");
|
||||
}
|
||||
|
||||
.device-mockup.ipad_pro.landscape.silver > .device {
|
||||
background-image: url("ipad_pro/ipad_pro_land_silver.png");
|
||||
}
|
||||
|
||||
.device-mockup.ipad_pro.landscape.gold > .device {
|
||||
background-image: url("ipad_pro/ipad_pro_land_gold.png");
|
||||
}
|
||||
|
||||
.device-mockup.ipad_pro > .device > .screen,
|
||||
.device-mockup.ipad_pro.portrait > .device > .screen {
|
||||
top: 7.025723%; bottom: 6.854341%; left: 5.15995%; right: 5.15995%;
|
||||
}
|
||||
|
||||
.device-mockup.ipad_pro.landscape > .device > .screen {
|
||||
top: 5.177551%; bottom: 5.177551%; left: 6.945988%; right: 6.945988%;
|
||||
}
|
||||
|
||||
.device-mockup.ipad_pro > .device > .button,
|
||||
.device-mockup.ipad_pro.portrait > .device > .button {
|
||||
display: block;
|
||||
top: 94.9%; bottom: 1.5%; left: 47.3%; right: 47.1%;
|
||||
}
|
||||
|
||||
.device-mockup.ipad_pro.landscape > .device > .button {
|
||||
display: block;
|
||||
top: 47.5%; bottom: 47.5%; left: 94.8%; right: 1.5%;
|
||||
}
|
||||
|
||||
|
||||
/* Galaxy S3 */
|
||||
.device-mockup.galaxy_s3,
|
||||
.device-mockup.galaxy_s3.portrait {
|
||||
padding-bottom: 178.787879%;
|
||||
}
|
||||
|
||||
.device-mockup.galaxy_s3.landscape {
|
||||
padding-bottom: 55.9322034%;
|
||||
}
|
||||
|
||||
.device-mockup.galaxy_s3 > .device,
|
||||
.device-mockup.galaxy_s3.black > .device,
|
||||
.device-mockup.galaxy_s3.portrait.black > .device {
|
||||
background-image: url("galaxy_s3/s3_port_black.png");
|
||||
}
|
||||
|
||||
.device-mockup.galaxy_s3.landscape > .device,
|
||||
.device-mockup.galaxy_s3.landscape.black > .device {
|
||||
background-image: url("galaxy_s3/s3_land_black.png");
|
||||
}
|
||||
|
||||
.device-mockup.galaxy_s3.white > .device,
|
||||
.device-mockup.galaxy_s3.portrait.white > .device {
|
||||
background-image: url("galaxy_s3/s3_port_white.png");
|
||||
}
|
||||
|
||||
.device-mockup.galaxy_s3.landscape.white > .device {
|
||||
background-image: url("galaxy_s3/s3_land_white.png");
|
||||
}
|
||||
|
||||
.device-mockup.galaxy_s3 > .device > .screen,
|
||||
.device-mockup.galaxy_s3.portrait > .device > .screen {
|
||||
top: 12.3728814%; bottom: 15.5367232%; left: 13.8383838%; right: 13.8383838%;
|
||||
}
|
||||
|
||||
.device-mockup.galaxy_s3.landscape > .device > .screen {
|
||||
top: 13.8383838%; bottom: 13.8383838%; left: 12.3728814%; right: 15.5367232%;
|
||||
}
|
||||
|
||||
|
||||
/* Galaxy S5 */
|
||||
.device-mockup.galaxy_s5,
|
||||
.device-mockup.galaxy_s5.portrait {
|
||||
padding-bottom: 194.188862%;
|
||||
}
|
||||
|
||||
.device-mockup.galaxy_s5.landscape {
|
||||
padding-bottom: 51.496259%;
|
||||
}
|
||||
|
||||
.device-mockup.galaxy_s5 > .device,
|
||||
.device-mockup.galaxy_s5.black > .device,
|
||||
.device-mockup.galaxy_s5.portrait.black > .device {
|
||||
background-image: url("galaxy_s5/galaxy_s5_port_black.png");
|
||||
}
|
||||
|
||||
.device-mockup.galaxy_s5.landscape > .device,
|
||||
.device-mockup.galaxy_s5.landscape.black > .device {
|
||||
background-image: url("galaxy_s5/galaxy_s5_land_black.png");
|
||||
}
|
||||
|
||||
.device-mockup.galaxy_s5.white > .device,
|
||||
.device-mockup.galaxy_s5.portrait.white > .device {
|
||||
background-image: url("galaxy_s5/galaxy_s5_port_white.png");
|
||||
}
|
||||
|
||||
.device-mockup.galaxy_s5.landscape.white > .device {
|
||||
background-image: url("galaxy_s5/galaxy_s5_land_white.png");
|
||||
}
|
||||
|
||||
.device-mockup.galaxy_s5 > .device > .screen,
|
||||
.device-mockup.galaxy_s5.portrait > .device > .screen {
|
||||
top: 10.2%; bottom: 10.1%; left: 6.3%; right: 6.4%;
|
||||
}
|
||||
|
||||
.device-mockup.galaxy_s5.landscape > .device > .screen {
|
||||
top: 6.6%; bottom: 6.2%; left: 10.15%; right: 10%;
|
||||
}
|
||||
|
||||
|
||||
/* Galaxy Tab4 */
|
||||
.device-mockup.galaxy_tab4,
|
||||
.device-mockup.galaxy_tab4.landscape {
|
||||
padding-bottom: 72.689464%;
|
||||
}
|
||||
|
||||
.device-mockup.galaxy_tab4 > .device,
|
||||
.device-mockup.galaxy_tab4.black > .device,
|
||||
.device-mockup.galaxy_tab4.landscape.black > .device {
|
||||
background-image: url("galaxy_tab4/galaxy_tab4_land_black.png");
|
||||
}
|
||||
|
||||
.device-mockup.galaxy_tab4.white > .device,
|
||||
.device-mockup.galaxy_tab4.landscape.white > .device {
|
||||
background-image: url("galaxy_tab4/galaxy_tab4_land_white.png");
|
||||
}
|
||||
|
||||
.device-mockup.galaxy_tab4 > .device > .screen,
|
||||
.device-mockup.galaxy_tab4.landscape > .device > .screen {
|
||||
top: 11.5%; bottom: 11.5%; left: 5.4%; right: 5.2%;
|
||||
}
|
||||
|
||||
|
||||
/* Lumia 920 */
|
||||
.device-mockup.lumia920,
|
||||
.device-mockup.lumia920.portrait {
|
||||
padding-bottom: 172.796353%;
|
||||
}
|
||||
|
||||
.device-mockup.lumia920.landscape {
|
||||
padding-bottom: 56.3330381%;
|
||||
}
|
||||
|
||||
.device-mockup.lumia920 > .device,
|
||||
.device-mockup.lumia920.portrait > .device {
|
||||
background-image: url("lumia920/lumia920_port.png");
|
||||
}
|
||||
|
||||
.device-mockup.lumia920.landscape > .device {
|
||||
background-image: url("lumia920/lumia920_land.png");
|
||||
}
|
||||
.device-mockup.lumia920 > .device > .screen,
|
||||
.device-mockup.lumia920.portrait > .device > .screen {
|
||||
top: 10.6420405%; bottom: 18.9973615%; left: 13.5258359%; right: 13.5258359%;
|
||||
}
|
||||
|
||||
.device-mockup.lumia920.landscape > .device > .screen {
|
||||
top: 12.2641509%; bottom: 12.2641509%; left: 10.5403012%; right: 18.6005314%;
|
||||
}
|
||||
|
||||
|
||||
/* Nexus 7 */
|
||||
.device-mockup.nexus7,
|
||||
.device-mockup.nexus7.portrait {
|
||||
padding-bottom: 156.521739%;
|
||||
}
|
||||
|
||||
.device-mockup.nexus7.landscape {
|
||||
padding-bottom: 63.6678201%;
|
||||
}
|
||||
|
||||
.device-mockup.nexus7 > .device,
|
||||
.device-mockup.nexus7.portrait > .device {
|
||||
background-image: url("nexus7/nexus7_port.png");
|
||||
}
|
||||
|
||||
.device-mockup.nexus7.landscape > .device {
|
||||
background-image: url("nexus7/nexus7_land.png");
|
||||
}
|
||||
|
||||
.device-mockup.nexus7 > .device > .screen,
|
||||
.device-mockup.nexus7.portrait > .device > .screen {
|
||||
top: 13.1365741%; bottom: 12.7893519%; left: 13.7681159%; right: 13.7681159%;
|
||||
}
|
||||
|
||||
.device-mockup.nexus7.landscape > .device > .screen {
|
||||
top: 13.7681159%; bottom: 13.7681159%; left: 13.0911188%; right: 13.0911188%;
|
||||
}
|
||||
|
||||
|
||||
/* Microsoft Surface */
|
||||
.device-mockup.surface,
|
||||
.device-mockup.surface.landscape {
|
||||
padding-bottom: 64.7584973%;
|
||||
}
|
||||
|
||||
.device-mockup.surface > .device,
|
||||
.device-mockup.surface.landscape > .device {
|
||||
background-image: url("surface/surface.png");
|
||||
}
|
||||
|
||||
.device-mockup.surface > .device > .screen,
|
||||
.device-mockup.surface.landscape > .device > .screen {
|
||||
top: 14.5488029%; bottom: 14.9171271%; left: 9.36195587%; right: 9.36195587%;
|
||||
}
|
||||
|
||||
/* Samsung TV */
|
||||
.device-mockup.samsung_tv,
|
||||
.device-mockup.samsung_tv.landscape {
|
||||
padding-bottom: 64.68%;
|
||||
}
|
||||
|
||||
.device-mockup.samsung_tv > .device,
|
||||
.device-mockup.samsung_tv.landscape > .device {
|
||||
background-image: url("samsung_tv/samsung_tv.png");
|
||||
}
|
||||
|
||||
.device-mockup.samsung_tv > .device > .screen,
|
||||
.device-mockup.samsung_tv.landscape > .device > .screen {
|
||||
top: 2.148803%; bottom: 12.817127%; left: 1.261956%; right: 1.361956%;
|
||||
}
|
1
ordynacja/static/device-mockups/device-mockups.min.css
vendored
Normal file
772
ordynacja/static/device-mockups/device-mockups2.css
Normal file
@ -0,0 +1,772 @@
|
||||
/*
|
||||
* HTML5 Device Mockups
|
||||
*
|
||||
* By:
|
||||
* Tomi Hiltunen
|
||||
* tomi@mitakuuluu.fi
|
||||
* http://fi.linkedin.com/in/tomihiltunen/
|
||||
*
|
||||
* Angelos Arnis
|
||||
* http://fi.linkedin.com/in/angelosarnis/
|
||||
*
|
||||
* Inluded in this package:
|
||||
* - iPhone5 (black/white, portrait/landscape)
|
||||
* - iPad2 (black/white, portrait/landscape)
|
||||
* - iMac
|
||||
* - MacBook Pro (retina model)
|
||||
* - Nexus 7
|
||||
* - Lumia 920
|
||||
* - Microsoft Surface
|
||||
* - Galaxy S3
|
||||
*
|
||||
* Added by ben182 (@beno182):
|
||||
* - iPhone 6
|
||||
* - iPhone 6 Plus
|
||||
* - iPhone SE
|
||||
* - iPad Air
|
||||
* - iPad Air 2
|
||||
* - iPad Pro
|
||||
* - Macbook 2015
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
/* GENERAL STYLE */
|
||||
|
||||
.device-mockup {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
padding-bottom: 61.775701%;
|
||||
}
|
||||
|
||||
.device-mockup > .device {
|
||||
position: absolute;
|
||||
top: 0; bottom: 0; left: 0; right: 0;
|
||||
width: 100%; height: 100%;
|
||||
background-size: 100% 100%;
|
||||
background-repeat: no-repeat;
|
||||
background-image: url("macbook/macbook.png");
|
||||
}
|
||||
|
||||
.device-mockup > .device > .screen {
|
||||
position: absolute;
|
||||
top: 11.0438729%;
|
||||
bottom: 14.6747352%;
|
||||
left: 13.364486%;
|
||||
right: 13.364486%;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.device-mockup > .device > .button {
|
||||
position: absolute;
|
||||
top: 0; left: 0;
|
||||
display: none;
|
||||
overflow: hidden;
|
||||
border-radius: 100%;
|
||||
-webkit-border-radius: 100%;
|
||||
-moz-border-radius: 100%;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
||||
/* DEVICES */
|
||||
|
||||
|
||||
/* iMac */
|
||||
.device-mockup[data-device="imac"] {
|
||||
padding-bottom: 81.230769%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="imac"] > .device {
|
||||
background-image: url("imac/imac.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="imac"] > .device > .screen {
|
||||
top: 8.20707071%; bottom: 31.6919192%; left: 6.61538462%; right: 6.61538462%;
|
||||
}
|
||||
|
||||
|
||||
/* MacBook Pro */
|
||||
.device-mockup[data-device="macbook"] {
|
||||
padding-bottom: 61.775701%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="macbook"] > .device {
|
||||
background-image: url("macbook/macbook.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="macbook"] > .device > .screen {
|
||||
top: 11.0438729%; bottom: 14.6747352%; left: 13.364486%; right: 13.364486%;
|
||||
}
|
||||
|
||||
/* MacBook 2015 */
|
||||
.device-mockup[data-device="macbook_2015"] {
|
||||
padding-bottom: 57.50%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="macbook_2015"] > .device,
|
||||
.device-mockup[data-device="macbook_2015"][data-color="grey"] > .device {
|
||||
background-image: url("macbook_2015/grey.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="macbook_2015"] > .device,
|
||||
.device-mockup[data-device="macbook_2015"][data-color="silver"] > .device {
|
||||
background-image: url("macbook_2015/silver.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="macbook_2015"] > .device,
|
||||
.device-mockup[data-device="macbook_2015"][data-color="gold"] > .device {
|
||||
background-image: url("macbook_2015/gold.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="macbook_2015"] > .device > .screen {
|
||||
top: 7.5%; bottom: 10.9%; left: 12.46%; right: 12.56%;
|
||||
}
|
||||
|
||||
|
||||
/* iPhone 5 */
|
||||
.device-mockup[data-device="iphone5"],
|
||||
.device-mockup[data-device="iphone5"][data-orientation="portrait"] {
|
||||
padding-bottom: 210.57%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone5"][data-orientation="landscape"] {
|
||||
padding-bottom: 47.49%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone5"] > .device,
|
||||
.device-mockup[data-device="iphone5"][data-color="black"] > .device,
|
||||
.device-mockup[data-device="iphone5"][data-orientation="portrait"][data-color="black"] > .device {
|
||||
background-image: url("iphone5/iphone5_port_black.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone5"][data-orientation="landscape"] > .device,
|
||||
.device-mockup[data-device="iphone5"][data-orientation="landscape"][data-color="black"] > .device {
|
||||
background-image: url("iphone5/iphone5_land_black.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone5"][data-color="white"] > .device,
|
||||
.device-mockup[data-device="iphone5"][data-orientation="portrait"][data-color="white"] > .device {
|
||||
background-image: url("iphone5/iphone5_port_white.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone5"][data-orientation="landscape"][data-color="white"] > .device {
|
||||
background-image: url("iphone5/iphone5_land_white.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone5"] > .device > .screen,
|
||||
.device-mockup[data-device="iphone5"][data-orientation="portrait"] > .device > .screen {
|
||||
top: 14.78%; bottom: 13.78%; left: 8.77%; right: 7.77%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone5"][data-orientation="landscape"] > .device > .screen {
|
||||
top: 7.422488%; bottom: 8.422488%; left: 14.919127%; right: 14.019127%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone5"] > .device > .button,
|
||||
.device-mockup[data-device="iphone5"][data-orientation="portrait"] > .device > .button {
|
||||
display: block;
|
||||
top: 88.3%; bottom: 2.5%; left: 40%; right: 40%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone5"][data-orientation="landscape"] > .device > .button {
|
||||
display: block;
|
||||
top: 40%; bottom: 41%; left: 88.4%; right: 2.3%;
|
||||
}
|
||||
|
||||
/* iPhone SE */
|
||||
.device-mockup[data-device="iphone_se"],
|
||||
.device-mockup[data-device="iphone_se"][data-orientation="portrait"] {
|
||||
padding-bottom: 209.83%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone_se"][data-orientation="landscape"] {
|
||||
padding-bottom: 47.66%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone_se"] > .device,
|
||||
.device-mockup[data-device="iphone_se"][data-color="black"] > .device,
|
||||
.device-mockup[data-device="iphone_se"][data-orientation="portrait"][data-color="black"] > .device {
|
||||
background-image: url("iphone_se/iphone_se_port_black.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone_se"][data-orientation="landscape"] > .device,
|
||||
.device-mockup[data-device="iphone_se"][data-orientation="landscape"][data-color="black"] > .device {
|
||||
background-image: url("iphone_se/iphone_se_land_black.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone_se"][data-color="white"] > .device,
|
||||
.device-mockup[data-device="iphone_se"][data-orientation="portrait"][data-color="white"] > .device {
|
||||
background-image: url("iphone_se/iphone_se_port_white.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone_se"][data-orientation="landscape"][data-color="white"] > .device {
|
||||
background-image: url("iphone_se/iphone_se_land_white.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone_se"][data-color="gold"] > .device,
|
||||
.device-mockup[data-device="iphone_se"][data-orientation="portrait"][data-color="gold"] > .device {
|
||||
background-image: url("iphone_se/iphone_se_port_gold.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone_se"][data-orientation="landscape"][data-color="gold"] > .device {
|
||||
background-image: url("iphone_se/iphone_se_land_gold.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone_se"][data-color="rose"] > .device,
|
||||
.device-mockup[data-device="iphone_se"][data-orientation="portrait"][data-color="rose"] > .device {
|
||||
background-image: url("iphone_se/iphone_se_port_rose.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone_se"][data-orientation="landscape"][data-color="rose"] > .device {
|
||||
background-image: url("iphone_se/iphone_se_land_rose.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone_se"] > .device > .screen,
|
||||
.device-mockup[data-device="iphone_se"][data-orientation="portrait"] > .device > .screen {
|
||||
top: 16.28%; bottom: 16.28%; left: 11.77%; right: 11.77%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone_se"][data-orientation="landscape"] > .device > .screen {
|
||||
top: 11.722488%; bottom: 11.722488%; left: 16.0191273%; right: 16.0191273%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone_se"] > .device > .button,
|
||||
.device-mockup[data-device="iphone_se"][data-orientation="portrait"] > .device > .button {
|
||||
display: block;
|
||||
top: 86.3%; bottom: 5.5%; left: 42%; right: 42%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone_se"][data-orientation="landscape"] > .device > .button {
|
||||
display: block;
|
||||
top: 42%; bottom: 42%; left: 86.4%; right: 5.1%;
|
||||
}
|
||||
|
||||
/* iPhone 6 */
|
||||
.device-mockup[data-device="iphone6"],
|
||||
.device-mockup[data-device="iphone6"][data-orientation="portrait"] {
|
||||
padding-bottom: 207.19%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone6"][data-orientation="landscape"] {
|
||||
padding-bottom: 48.76%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone6"] > .device,
|
||||
.device-mockup[data-device="iphone6"][data-color="black"] > .device,
|
||||
.device-mockup[data-device="iphone6"][data-orientation="portrait"][data-color="black"] > .device {
|
||||
background-image: url("iphone_6/iphone_6_port_black.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone6"][data-orientation="landscape"] > .device,
|
||||
.device-mockup[data-device="iphone6"][data-orientation="landscape"][data-color="black"] > .device {
|
||||
background-image: url("iphone_6/iphone_6_land_black.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone6"][data-color="white"] > .device,
|
||||
.device-mockup[data-device="iphone6"][data-orientation="portrait"][data-color="white"] > .device {
|
||||
background-image: url("iphone_6/iphone_6_port_white.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone6"][data-orientation="landscape"][data-color="white"] > .device {
|
||||
background-image: url("iphone_6/iphone_6_land_white.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone6"][data-color="gold"] > .device,
|
||||
.device-mockup[data-device="iphone6"][data-orientation="portrait"][data-color="gold"] > .device {
|
||||
background-image: url("iphone_6/iphone_6_port_gold.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone6"][data-orientation="landscape"][data-color="gold"] > .device {
|
||||
background-image: url("iphone_6/iphone_6_land_gold.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone6"] > .device > .screen,
|
||||
.device-mockup[data-device="iphone6"][data-orientation="portrait"] > .device > .screen {
|
||||
top: 12.58%; bottom: 12.88%; left: 6.77%; right: 6.77%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone6"][data-orientation="landscape"] > .device > .screen {
|
||||
top: 6.77%; bottom: 6.77%; left: 12.58%; right: 12.88%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone6"] > .device > .button,
|
||||
.device-mockup[data-device="iphone6"][data-orientation="portrait"] > .device > .button {
|
||||
display: block;
|
||||
top: 88.6%; bottom: 3.2%; left: 42%; right: 42%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone6"][data-orientation="landscape"] > .device > .button {
|
||||
display: block;
|
||||
top: 42%; bottom: 42%; left: 88.6%; right: 3.2%;
|
||||
}
|
||||
|
||||
/* iPhone 6 Plus*/
|
||||
.device-mockup[data-device="iphone6_plus"],
|
||||
.device-mockup[data-device="iphone6_plus"][data-orientation="portrait"] {
|
||||
padding-bottom: 201.76%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone6_plus"][data-orientation="landscape"] {
|
||||
padding-bottom: 49.56%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone6_plus"] > .device,
|
||||
.device-mockup[data-device="iphone6_plus"][data-color="black"] > .device,
|
||||
.device-mockup[data-device="iphone6_plus"][data-orientation="portrait"][data-color="black"] > .device {
|
||||
background-image: url("iphone_6_plus/iphone_6_plus_black_port.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone6_plus"][data-orientation="landscape"] > .device,
|
||||
.device-mockup[data-device="iphone6_plus"][data-orientation="landscape"][data-color="black"] > .device {
|
||||
background-image: url("iphone_6_plus/iphone_6_plus_black_land.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone6_plus"][data-color="white"] > .device,
|
||||
.device-mockup[data-device="iphone6_plus"][data-orientation="portrait"][data-color="white"] > .device {
|
||||
background-image: url("iphone_6_plus/iphone_6_plus_white_port.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone6_plus"][data-orientation="landscape"][data-color="white"] > .device {
|
||||
background-image: url("iphone_6_plus/iphone_6_plus_white_land.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone6_plus"][data-color="gold"] > .device,
|
||||
.device-mockup[data-device="iphone6_plus"][data-orientation="portrait"][data-color="gold"] > .device {
|
||||
background-image: url("iphone_6_plus/iphone_6_plus_gold_port.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone6_plus"][data-orientation="landscape"][data-color="gold"] > .device {
|
||||
background-image: url("iphone_6_plus/iphone_6_plus_gold_land.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone6_plus"] > .device > .screen,
|
||||
.device-mockup[data-device="iphone6_plus"][data-orientation="portrait"] > .device > .screen {
|
||||
top: 11.58%; bottom: 11.58%; left: 5.97%; right: 5.97%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone6_plus"][data-orientation="landscape"] > .device > .screen {
|
||||
top: 5.97%; bottom: 5.97%; left: 11.38%; right: 11.58%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone6_plus"] > .device > .button,
|
||||
.device-mockup[data-device="iphone6_plus"][data-orientation="portrait"] > .device > .button {
|
||||
display: block;
|
||||
top: 89.9%; bottom: 3.2%; left: 43%; right: 43%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="iphone6_plus"][data-orientation="landscape"] > .device > .button {
|
||||
display: block;
|
||||
top: 43%; bottom: 43%; left: 89.9%; right: 3.2%;
|
||||
}
|
||||
|
||||
/* iPad */
|
||||
.device-mockup[data-device="ipad"],
|
||||
.device-mockup[data-device="ipad"][data-orientation="portrait"] {
|
||||
padding-bottom: 128.406276%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="ipad"][data-orientation="landscape"] {
|
||||
padding-bottom: 79.9086758%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="ipad"] > .device,
|
||||
.device-mockup[data-device="ipad"][data-color="black"] > .device,
|
||||
.device-mockup[data-device="ipad"][data-orientation="portrait"][data-color="black"] > .device {
|
||||
background-image: url("ipad/ipad_port_black.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="ipad"][data-color="white"] > .device,
|
||||
.device-mockup[data-device="ipad"][data-orientation="portrait"][data-color="white"] > .device {
|
||||
background-image: url("ipad/ipad_port_white.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="ipad"][data-orientation="landscape"] > .device,
|
||||
.device-mockup[data-device="ipad"][data-orientation="landscape"][data-color="black"] > .device {
|
||||
background-image: url("ipad/ipad_land_black.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="ipad"][data-orientation="landscape"][data-color="white"] > .device {
|
||||
background-image: url("ipad/ipad_land_white.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="ipad"] > .device > .screen,
|
||||
.device-mockup[data-device="ipad"][data-orientation="portrait"] > .device > .screen {
|
||||
top: 12.025723%; bottom: 12.154341%; left: 13.45995%; right: 13.45995%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="ipad"][data-orientation="landscape"] > .device > .screen {
|
||||
top: 13.87755102%; bottom: 13.87755102%; left: 11.5459883%; right: 11.5459883%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="ipad"] > .device > .button,
|
||||
.device-mockup[data-device="ipad"][data-orientation="portrait"] > .device > .button {
|
||||
display: block;
|
||||
top: 90.2%; bottom: 5.5%; left: 47.3%; right: 47.3%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="ipad"][data-orientation="landscape"] > .device > .button {
|
||||
display: block;
|
||||
top: 47.3%; bottom: 47.3%; left: 90.8%; right: 4.9%;
|
||||
}
|
||||
|
||||
/* iPad Air */
|
||||
.device-mockup[data-device="ipad_air"],
|
||||
.device-mockup[data-device="ipad_air"][data-orientation="portrait"] {
|
||||
padding-bottom: 141.27%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="ipad_air"][data-orientation="landscape"] {
|
||||
padding-bottom: 70.79%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="ipad_air"] > .device,
|
||||
.device-mockup[data-device="ipad_air"][data-color="grey"] > .device,
|
||||
.device-mockup[data-device="ipad_air"][data-orientation="portrait"][data-color="grey"] > .device {
|
||||
background-image: url("ipad_air/ipad_air_gray_port.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="ipad_air"][data-color="silver"] > .device,
|
||||
.device-mockup[data-device="ipad_air"][data-orientation="portrait"][data-color="silver"] > .device {
|
||||
background-image: url("ipad_air/ipad_air_silver_port.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="ipad_air"][data-orientation="landscape"] > .device,
|
||||
.device-mockup[data-device="ipad_air"][data-orientation="landscape"][data-color="grey"] > .device {
|
||||
background-image: url("ipad_air/ipad_air_gray_land.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="ipad_air"][data-orientation="landscape"][data-color="silver"] > .device {
|
||||
background-image: url("ipad_air/ipad_air_silver_land.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="ipad_air"] > .device > .screen,
|
||||
.device-mockup[data-device="ipad_air"][data-orientation="portrait"] > .device > .screen {
|
||||
top: 9.025723%; bottom: 9.154341%; left: 7.45995%; right: 6.45995%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="ipad_air"][data-orientation="landscape"] > .device > .screen {
|
||||
top: 6.877551%; bottom: 6.877551%; left: 9.545988%; right: 9.545988%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="ipad_air"] > .device > .button,
|
||||
.device-mockup[data-device="ipad_air"][data-orientation="portrait"] > .device > .button {
|
||||
display: block;
|
||||
top: 93.2%; bottom: 2.5%; left: 47.3%; right: 47.3%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="ipad_air"][data-orientation="landscape"] > .device > .button {
|
||||
display: block;
|
||||
top: 47.3%; bottom: 47.3%; left: 93.1%; right: 2.1%;
|
||||
}
|
||||
|
||||
/* iPad Air 2 */
|
||||
.device-mockup[data-device="ipad_air_2"],
|
||||
.device-mockup[data-device="ipad_air_2"][data-orientation="portrait"] {
|
||||
padding-bottom: 141.38%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="ipad_air_2"][data-orientation="landscape"] {
|
||||
padding-bottom: 70.73%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="ipad_air_2"] > .device,
|
||||
.device-mockup[data-device="ipad_air_2"][data-color="grey"] > .device,
|
||||
.device-mockup[data-device="ipad_air_2"][data-orientation="portrait"][data-color="grey"] > .device {
|
||||
background-image: url("ipad_air_2/ipad_air_2_gray_port.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="ipad_air_2"][data-color="silver"] > .device,
|
||||
.device-mockup[data-device="ipad_air_2"][data-orientation="portrait"][data-color="silver"] > .device {
|
||||
background-image: url("ipad_air_2/ipad_air_2_silver_port.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="ipad_air_2"][data-color="gold"] > .device,
|
||||
.device-mockup[data-device="ipad_air_2"][data-orientation="portrait"][data-color="gold"] > .device {
|
||||
background-image: url("ipad_air_2/ipad_air_2_gold_port.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="ipad_air_2"][data-orientation="landscape"] > .device,
|
||||
.device-mockup[data-device="ipad_air_2"][data-orientation="landscape"][data-color="grey"] > .device {
|
||||
background-image: url("ipad_air_2/ipad_air_2_gray_land.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="ipad_air_2"][data-orientation="landscape"][data-color="silver"] > .device {
|
||||
background-image: url("ipad_air_2/ipad_air_2_silver_land.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="ipad_air_2"][data-orientation="landscape"][data-color="gold"] > .device {
|
||||
background-image: url("ipad_air_2/ipad_air_2_gold_land.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="ipad_air_2"] > .device > .screen,
|
||||
.device-mockup[data-device="ipad_air_2"][data-orientation="portrait"] > .device > .screen {
|
||||
top: 9.025723%; bottom: 8.854341%; left: 6.15995%; right: 6.15995%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="ipad_air_2"][data-orientation="landscape"] > .device > .screen {
|
||||
top: 6.277551%; bottom: 6.277551%; left: 8.545988%; right: 8.545988%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="ipad_air_2"] > .device > .button,
|
||||
.device-mockup[data-device="ipad_air_2"][data-orientation="portrait"] > .device > .button {
|
||||
display: block;
|
||||
top: 93.2%; bottom: 2.1%; left: 46.3%; right: 46.5%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="ipad_air_2"][data-orientation="landscape"] > .device > .button {
|
||||
display: block;
|
||||
top: 46.5%; bottom: 46.8%; left: 93.5%; right: 1.9%;
|
||||
}
|
||||
|
||||
/* iPad Pro */
|
||||
.device-mockup[data-device="ipad_pro"],
|
||||
.device-mockup[data-device="ipad_pro"][data-orientation="portrait"] {
|
||||
padding-bottom: 138.63%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="ipad_pro"][data-orientation="landscape"] {
|
||||
padding-bottom: 72.14%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="ipad_pro"] > .device,
|
||||
.device-mockup[data-device="ipad_pro"][data-color="grey"] > .device,
|
||||
.device-mockup[data-device="ipad_pro"][data-orientation="portrait"][data-color="grey"] > .device {
|
||||
background-image: url("ipad_pro/ipad_pro_port_black.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="ipad_pro"][data-color="silver"] > .device,
|
||||
.device-mockup[data-device="ipad_pro"][data-orientation="portrait"][data-color="silver"] > .device {
|
||||
background-image: url("ipad_pro/ipad_pro_port_silver.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="ipad_pro"][data-color="gold"] > .device,
|
||||
.device-mockup[data-device="ipad_pro"][data-orientation="portrait"][data-color="gold"] > .device {
|
||||
background-image: url("ipad_pro/ipad_pro_port_gold.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="ipad_pro"][data-orientation="landscape"] > .device,
|
||||
.device-mockup[data-device="ipad_pro"][data-orientation="landscape"][data-color="grey"] > .device {
|
||||
background-image: url("ipad_pro/ipad_pro_land_black.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="ipad_pro"][data-orientation="landscape"][data-color="silver"] > .device {
|
||||
background-image: url("ipad_pro/ipad_pro_land_silver.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="ipad_pro"][data-orientation="landscape"][data-color="gold"] > .device {
|
||||
background-image: url("ipad_pro/ipad_pro_land_gold.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="ipad_pro"] > .device > .screen,
|
||||
.device-mockup[data-device="ipad_pro"][data-orientation="portrait"] > .device > .screen {
|
||||
top: 7.025723%; bottom: 6.854341%; left: 5.15995%; right: 5.15995%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="ipad_pro"][data-orientation="landscape"] > .device > .screen {
|
||||
top: 5.177551%; bottom: 5.177551%; left: 6.945988%; right: 6.945988%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="ipad_pro"] > .device > .button,
|
||||
.device-mockup[data-device="ipad_pro"][data-orientation="portrait"] > .device > .button {
|
||||
display: block;
|
||||
top: 94.9%; bottom: 1.5%; left: 47.3%; right: 47.1%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="ipad_pro"][data-orientation="landscape"] > .device > .button {
|
||||
display: block;
|
||||
top: 47.5%; bottom: 47.5%; left: 94.8%; right: 1.5%;
|
||||
}
|
||||
|
||||
|
||||
/* Galaxy S3 */
|
||||
.device-mockup[data-device="galaxy_s3"],
|
||||
.device-mockup[data-device="galaxy_s3"][data-orientation="portrait"] {
|
||||
padding-bottom: 178.787879%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="galaxy_s3"][data-orientation="landscape"] {
|
||||
padding-bottom: 55.9322034%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="galaxy_s3"] > .device,
|
||||
.device-mockup[data-device="galaxy_s3"][data-color="black"] > .device,
|
||||
.device-mockup[data-device="galaxy_s3"][data-orientation="portrait"][data-color="black"] > .device {
|
||||
background-image: url("galaxy_s3/s3_port_black.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="galaxy_s3"][data-orientation="landscape"] > .device,
|
||||
.device-mockup[data-device="galaxy_s3"][data-orientation="landscape"][data-color="black"] > .device {
|
||||
background-image: url("galaxy_s3/s3_land_black.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="galaxy_s3"][data-color="white"] > .device,
|
||||
.device-mockup[data-device="galaxy_s3"][data-orientation="portrait"][data-color="white"] > .device {
|
||||
background-image: url("galaxy_s3/s3_port_white.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="galaxy_s3"][data-orientation="landscape"][data-color="white"] > .device {
|
||||
background-image: url("galaxy_s3/s3_land_white.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="galaxy_s3"] > .device > .screen,
|
||||
.device-mockup[data-device="galaxy_s3"][data-orientation="portrait"] > .device > .screen {
|
||||
top: 12.3728814%; bottom: 15.5367232%; left: 13.8383838%; right: 13.8383838%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="galaxy_s3"][data-orientation="landscape"] > .device > .screen {
|
||||
top: 13.8383838%; bottom: 13.8383838%; left: 12.3728814%; right: 15.5367232%;
|
||||
}
|
||||
|
||||
|
||||
/* Galaxy S5 */
|
||||
.device-mockup[data-device="galaxy_s5"],
|
||||
.device-mockup[data-device="galaxy_s5"][data-orientation="portrait"] {
|
||||
padding-bottom: 194.188862%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="galaxy_s5"][data-orientation="landscape"] {
|
||||
padding-bottom: 51.496259%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="galaxy_s5"] > .device,
|
||||
.device-mockup[data-device="galaxy_s5"][data-color="black"] > .device,
|
||||
.device-mockup[data-device="galaxy_s5"][data-orientation="portrait"][data-color="black"] > .device {
|
||||
background-image: url("galaxy_s5/galaxy_s5_port_black.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="galaxy_s5"][data-orientation="landscape"] > .device,
|
||||
.device-mockup[data-device="galaxy_s5"][data-orientation="landscape"][data-color="black"] > .device {
|
||||
background-image: url("galaxy_s5/galaxy_s5_land_black.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="galaxy_s5"][data-color="white"] > .device,
|
||||
.device-mockup[data-device="galaxy_s5"][data-orientation="portrait"][data-color="white"] > .device {
|
||||
background-image: url("galaxy_s5/galaxy_s5_port_white.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="galaxy_s5"][data-orientation="landscape"][data-color="white"] > .device {
|
||||
background-image: url("galaxy_s5/galaxy_s5_land_white.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="galaxy_s5"] > .device > .screen,
|
||||
.device-mockup[data-device="galaxy_s5"][data-orientation="portrait"] > .device > .screen {
|
||||
top: 10.2%; bottom: 10.1%; left: 6.3%; right: 6.4%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="galaxy_s5"][data-orientation="landscape"] > .device > .screen {
|
||||
top: 6.6%; bottom: 6.2%; left: 10.15%; right: 10%;
|
||||
}
|
||||
|
||||
|
||||
/* Galaxy Tab4 */
|
||||
.device-mockup[data-device="galaxy_tab4"],
|
||||
.device-mockup[data-device="galaxy_tab4"][data-orientation="landscape"] {
|
||||
padding-bottom: 72.689464%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="galaxy_tab4"] > .device,
|
||||
.device-mockup[data-device="galaxy_tab4"][data-color="black"] > .device,
|
||||
.device-mockup[data-device="galaxy_tab4"][data-orientation="landscape"][data-color="black"] > .device {
|
||||
background-image: url("galaxy_tab4/galaxy_tab4_land_black.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="galaxy_tab4"][data-color="white"] > .device,
|
||||
.device-mockup[data-device="galaxy_tab4"][data-orientation="landscape"][data-color="white"] > .device {
|
||||
background-image: url("galaxy_tab4/galaxy_tab4_land_white.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="galaxy_tab4"] > .device > .screen,
|
||||
.device-mockup[data-device="galaxy_tab4"][data-orientation="landscape"] > .device > .screen {
|
||||
top: 11.5%; bottom: 11.5%; left: 5.4%; right: 5.2%;
|
||||
}
|
||||
|
||||
|
||||
/* Lumia 920 */
|
||||
.device-mockup[data-device="lumia920"],
|
||||
.device-mockup[data-device="lumia920"][data-orientation="portrait"] {
|
||||
padding-bottom: 172.796353%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="lumia920"][data-orientation="landscape"] {
|
||||
padding-bottom: 56.3330381%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="lumia920"] > .device,
|
||||
.device-mockup[data-device="lumia920"][data-orientation="portrait"] > .device {
|
||||
background-image: url("lumia920/lumia920_port.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="lumia920"][data-orientation="landscape"] > .device {
|
||||
background-image: url("lumia920/lumia920_land.png");
|
||||
}
|
||||
.device-mockup[data-device="lumia920"] > .device > .screen,
|
||||
.device-mockup[data-device="lumia920"][data-orientation="portrait"] > .device > .screen {
|
||||
top: 10.6420405%; bottom: 18.9973615%; left: 13.5258359%; right: 13.5258359%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="lumia920"][data-orientation="landscape"] > .device > .screen {
|
||||
top: 12.2641509%; bottom: 12.2641509%; left: 10.5403012%; right: 18.6005314%;
|
||||
}
|
||||
|
||||
|
||||
/* Nexus 7 */
|
||||
.device-mockup[data-device="nexus7"],
|
||||
.device-mockup[data-device="nexus7"][data-orientation="portrait"] {
|
||||
padding-bottom: 156.521739%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="nexus7"][data-orientation="landscape"] {
|
||||
padding-bottom: 63.6678201%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="nexus7"] > .device,
|
||||
.device-mockup[data-device="nexus7"][data-orientation="portrait"] > .device {
|
||||
background-image: url("nexus7/nexus7_port.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="nexus7"][data-orientation="landscape"] > .device {
|
||||
background-image: url("nexus7/nexus7_land.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="nexus7"] > .device > .screen,
|
||||
.device-mockup[data-device="nexus7"][data-orientation="portrait"] > .device > .screen {
|
||||
top: 13.1365741%; bottom: 12.7893519%; left: 13.7681159%; right: 13.7681159%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="nexus7"][data-orientation="landscape"] > .device > .screen {
|
||||
top: 13.7681159%; bottom: 13.7681159%; left: 13.0911188%; right: 13.0911188%;
|
||||
}
|
||||
|
||||
|
||||
/* Microsoft Surface */
|
||||
.device-mockup[data-device="surface"],
|
||||
.device-mockup[data-device="surface"][data-orientation="landscape"] {
|
||||
padding-bottom: 64.7584973%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="surface"] > .device,
|
||||
.device-mockup[data-device="surface"][data-orientation="landscape"] > .device {
|
||||
background-image: url("surface/surface.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="surface"] > .device > .screen,
|
||||
.device-mockup[data-device="surface"][data-orientation="landscape"] > .device > .screen {
|
||||
top: 14.5488029%; bottom: 14.9171271%; left: 9.36195587%; right: 9.36195587%;
|
||||
}
|
||||
|
||||
/* Samsung TV */
|
||||
.device-mockup[data-device="samsung_tv"],
|
||||
.device-mockup[data-device="samsung_tv"][data-orientation="landscape"] {
|
||||
padding-bottom: 64.68%;
|
||||
}
|
||||
|
||||
.device-mockup[data-device="samsung_tv"] > .device,
|
||||
.device-mockup[data-device="samsung_tv"][data-orientation="landscape"] > .device {
|
||||
background-image: url("samsung_tv/samsung_tv.png");
|
||||
}
|
||||
|
||||
.device-mockup[data-device="samsung_tv"] > .device > .screen,
|
||||
.device-mockup[data-device="samsung_tv"][data-orientation="landscape"] > .device > .screen {
|
||||
top: 2.148803%; bottom: 12.817127%; left: 1.261956%; right: 1.361956%;
|
||||
}
|
1
ordynacja/static/device-mockups/device-mockups2.min.css
vendored
Normal file
BIN
ordynacja/static/device-mockups/galaxy_s3/s3_land_black.png
Normal file
After Width: | Height: | Size: 276 KiB |
BIN
ordynacja/static/device-mockups/galaxy_s3/s3_land_white.png
Normal file
After Width: | Height: | Size: 54 KiB |
BIN
ordynacja/static/device-mockups/galaxy_s3/s3_port_black.png
Normal file
After Width: | Height: | Size: 208 KiB |
BIN
ordynacja/static/device-mockups/galaxy_s3/s3_port_white.png
Normal file
After Width: | Height: | Size: 48 KiB |
After Width: | Height: | Size: 244 KiB |
After Width: | Height: | Size: 248 KiB |
After Width: | Height: | Size: 455 KiB |
After Width: | Height: | Size: 228 KiB |
After Width: | Height: | Size: 234 KiB |
After Width: | Height: | Size: 449 KiB |
After Width: | Height: | Size: 507 KiB |
After Width: | Height: | Size: 258 KiB |
After Width: | Height: | Size: 349 KiB |
After Width: | Height: | Size: 189 KiB |
BIN
ordynacja/static/device-mockups/imac/imac.png
Normal file
After Width: | Height: | Size: 114 KiB |
BIN
ordynacja/static/device-mockups/ipad/ipad_land_black.png
Normal file
After Width: | Height: | Size: 9.0 KiB |
BIN
ordynacja/static/device-mockups/ipad/ipad_land_white.png
Normal file
After Width: | Height: | Size: 9.3 KiB |
BIN
ordynacja/static/device-mockups/ipad/ipad_port_black.png
Normal file
After Width: | Height: | Size: 9.8 KiB |
BIN
ordynacja/static/device-mockups/ipad/ipad_port_white.png
Normal file
After Width: | Height: | Size: 9.6 KiB |
BIN
ordynacja/static/device-mockups/ipad_air/ipad_air_gray_land.png
Normal file
After Width: | Height: | Size: 132 KiB |
BIN
ordynacja/static/device-mockups/ipad_air/ipad_air_gray_port.png
Normal file
After Width: | Height: | Size: 136 KiB |
After Width: | Height: | Size: 131 KiB |
After Width: | Height: | Size: 136 KiB |
After Width: | Height: | Size: 84 KiB |
After Width: | Height: | Size: 88 KiB |
After Width: | Height: | Size: 78 KiB |
After Width: | Height: | Size: 81 KiB |
After Width: | Height: | Size: 86 KiB |
After Width: | Height: | Size: 91 KiB |
BIN
ordynacja/static/device-mockups/ipad_pro/ipad_pro_land_black.png
Normal file
After Width: | Height: | Size: 64 KiB |
BIN
ordynacja/static/device-mockups/ipad_pro/ipad_pro_land_gold.png
Normal file
After Width: | Height: | Size: 68 KiB |
After Width: | Height: | Size: 70 KiB |
BIN
ordynacja/static/device-mockups/ipad_pro/ipad_pro_port_black.png
Normal file
After Width: | Height: | Size: 67 KiB |
BIN
ordynacja/static/device-mockups/ipad_pro/ipad_pro_port_gold.png
Normal file
After Width: | Height: | Size: 72 KiB |
After Width: | Height: | Size: 74 KiB |
BIN
ordynacja/static/device-mockups/iphone5/iphone5_land_black.png
Normal file
After Width: | Height: | Size: 100 KiB |
BIN
ordynacja/static/device-mockups/iphone5/iphone5_land_white.png
Normal file
After Width: | Height: | Size: 65 KiB |
BIN
ordynacja/static/device-mockups/iphone5/iphone5_port_black.png
Normal file
After Width: | Height: | Size: 140 KiB |
BIN
ordynacja/static/device-mockups/iphone5/iphone5_port_white.png
Normal file
After Width: | Height: | Size: 79 KiB |
BIN
ordynacja/static/device-mockups/iphone_6/iphone_6_land_black.png
Normal file
After Width: | Height: | Size: 117 KiB |
BIN
ordynacja/static/device-mockups/iphone_6/iphone_6_land_gold.png
Normal file
After Width: | Height: | Size: 176 KiB |
BIN
ordynacja/static/device-mockups/iphone_6/iphone_6_land_white.png
Normal file
After Width: | Height: | Size: 144 KiB |
BIN
ordynacja/static/device-mockups/iphone_6/iphone_6_port_black.png
Normal file
After Width: | Height: | Size: 127 KiB |
BIN
ordynacja/static/device-mockups/iphone_6/iphone_6_port_gold.png
Normal file
After Width: | Height: | Size: 197 KiB |
BIN
ordynacja/static/device-mockups/iphone_6/iphone_6_port_white.png
Normal file
After Width: | Height: | Size: 162 KiB |
After Width: | Height: | Size: 260 KiB |
After Width: | Height: | Size: 291 KiB |
After Width: | Height: | Size: 282 KiB |
After Width: | Height: | Size: 310 KiB |
After Width: | Height: | Size: 261 KiB |
After Width: | Height: | Size: 280 KiB |
After Width: | Height: | Size: 63 KiB |
After Width: | Height: | Size: 62 KiB |
After Width: | Height: | Size: 63 KiB |
After Width: | Height: | Size: 56 KiB |
After Width: | Height: | Size: 64 KiB |
After Width: | Height: | Size: 63 KiB |
After Width: | Height: | Size: 64 KiB |
After Width: | Height: | Size: 56 KiB |
BIN
ordynacja/static/device-mockups/lumia920/lumia920_land.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
ordynacja/static/device-mockups/lumia920/lumia920_port.png
Normal file
After Width: | Height: | Size: 22 KiB |
After Width: | Height: | Size: 71 KiB |
After Width: | Height: | Size: 71 KiB |
After Width: | Height: | Size: 66 KiB |
After Width: | Height: | Size: 67 KiB |
BIN
ordynacja/static/device-mockups/macbook/macbook.png
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
ordynacja/static/device-mockups/macbook_2015/gold.png
Normal file
After Width: | Height: | Size: 79 KiB |
BIN
ordynacja/static/device-mockups/macbook_2015/grey.png
Normal file
After Width: | Height: | Size: 55 KiB |
BIN
ordynacja/static/device-mockups/macbook_2015/silver.png
Normal file
After Width: | Height: | Size: 54 KiB |
BIN
ordynacja/static/device-mockups/nexus7/nexus7_land.png
Normal file
After Width: | Height: | Size: 9.5 KiB |
BIN
ordynacja/static/device-mockups/nexus7/nexus7_port.png
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
ordynacja/static/device-mockups/nexus_6/nexus_6_land.png
Normal file
After Width: | Height: | Size: 180 KiB |
BIN
ordynacja/static/device-mockups/nexus_6/nexus_6_port.png
Normal file
After Width: | Height: | Size: 162 KiB |
BIN
ordynacja/static/device-mockups/samsung_tv/samsung_tv.png
Normal file
After Width: | Height: | Size: 37 KiB |