forked from framework7io/framework7
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
140 lines (139 loc) · 3.91 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Framework7 Kitchen Sink</title>
<style>
body {
margin: 0;
padding: 0;
position: relative;
min-width: 900px;
font-family: Helvetica Neue, Roboto, Arial, sans-serif;
}
iframe {
width: 100%;
height: 100%;
display: block;
border: none;
}
.devices {
padding-top: 100px;
padding-bottom: 40px;
overflow: hidden;
width: 840px;
margin-left: auto;
margin-right: auto;
}
.device-ios, .device-android {
float: left;
}
.device-ios {
width: 320px;
height: 548px;
background: #111;
border-radius: 55px;
box-shadow: 0px 0px 0px 2px #aaa;
padding: 105px 20px;
position: relative;
margin-right: 80px;
}
.device-ios:before {
content: '';
width: 60px;
height: 10px;
border-radius: 10px;
position: absolute;
left: 50%;
margin-left: -30px;
background: #333;
top: 50px;
}
.device-ios:after {
content: '';
position: absolute;
width: 60px;
height: 60px;
left: 50%;
margin-left: -30px;
bottom: 20px;
border-radius: 100%;
box-sizing: border-box;
border: 5px solid #333;
}
.device-android {
width: 360px;
height: 640px;
position: relative;
background: #111;
padding: 60px 20px;
box-shadow: 0px 0px 0px 2px #aaa;
border-radius: 20px;
}
.device-android:before {
content: '';
width: 14px;
height: 14px;
border-radius: 50%;
position: absolute;
left: 50%;
margin-left: -7px;
background: #666;
top: 25px;
}
.device-android:after {
content: '';
width: 8px;
height: 8px;
border-radius: 50%;
position: absolute;
left: 50px;
background: #444;
top: 30px;
}
.button {
position: absolute;
width: 200px;
margin-left: -100px;
left: 50%;
top: -44px;
margin-top: -30px;
box-sizing: border-box;
text-align: center;
line-height: 44px;
border-radius: 3px;
text-decoration: none;
color: blue;
font-size: 14px;
}
.device-ios .button {
border: 1px solid #007aff;
color: #007aff;
}
.device-ios .button:active {
background: rgba(0, 122, 255, 0.15);
}
.device-android .button {
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
color: #2196f3;
text-transform: uppercase;
}
.device-android .button:active {
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
background: rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body>
<div class="devices">
<div class="device device-ios">
<a href="./kitchen-sink-ios/" class="button">Full Screen Preview</a>
<iframe src="./kitchen-sink-ios/" scrolling="no" frameborder="0"></iframe>
</div>
<div class="device device-android">
<a href="./kitchen-sink-material/" class="button">Full Screen Preview</a>
<iframe src="./kitchen-sink-material/" scrolling="no" frameborder="0"></iframe>
</div>
</div>
</body>
</html>