-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (85 loc) · 3.28 KB
/
index.html
File metadata and controls
90 lines (85 loc) · 3.28 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Responsive CSS Browsers, Phones and Tablets</title>
<meta name="description" content="Flat CSS-only browser windows, smart phones and tablets for showcasing projects" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/main.css" />
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Roboto+Slab" />
</head>
<body>
<section class="section section--header">
<iframe src="http://ghbtns.com/github-btn.html?user=laurenwaller&repo=flatstack&type=watch&count=true&size=large" allowtransparency="true" frameborder="0" scrolling="0" width="170" height="30"></iframe>
<h1>Responsive CSS Browsers, Phones and Tablets</h1>
</section>
<section class="section blue">
<h2>Single Browser</h2>
<div class="browser-container">
<div class="browser">
<div class="browser__top">
<div class="browser__button"></div>
<div class="browser__button"></div>
<div class="browser__button"></div>
</div>
<img class="browser__img" src="img/pablo.jpg" width="1366" height="768" alt="" />
</div>
</div>
</section>
<section class="section orange">
<h2>Smart Phone</h2>
<div class="mobile-container">
<div class="mobile is-white">
<img class="mobile__img" src="img/pablo-mobile.jpg" width="320" height="568" alt="" />
</div>
<div class="mobile is-black">
<img class="mobile__img" src="img/pablo-mobile.jpg" width="320" height="568" alt="" />
</div>
</div>
</section>
<section class="section blue">
<h2>Browser Stack</h2>
<div class="browser-container browser-container--stack">
<div class="browser browser--stack">
<div class="browser__top">
<div class="browser__button"></div>
<div class="browser__button"></div>
<div class="browser__button"></div>
</div>
<img class="browser__img" src="img/pablo.jpg" width="1366" height="768" alt="" />
</div>
<div class="browser browser--stack is-behind-left">
<div class="browser__top">
<div class="browser__button"></div>
<div class="browser__button"></div>
<div class="browser__button"></div>
</div>
<img class="browser__img" src="img/pablo.jpg" width="1366" height="768" alt="" />
</div>
<div class="browser browser--stack is-behind-right">
<div class="browser__top">
<div class="browser__button"></div>
<div class="browser__button"></div>
<div class="browser__button"></div>
</div>
<img class="browser__img" src="img/pablo.jpg" width="1366" height="768" alt="" />
</div>
</div>
</section>
<section class="section orange above">
<h2>Smart Phone Stack</h2>
<div class="mobile-container mobile--stack-container">
<div class="mobile mobile--stack is-white">
<img class="mobile__img" src="img/pablo-mobile.jpg" width="320" height="568" alt="" />
</div>
<div class="mobile mobile--stack is-white mobile-behind-left">
<img class="mobile__img" src="img/pablo-mobile.jpg" width="320" height="568" alt="" />
</div>
<div class="mobile mobile--stack is-white mobile-behind-right">
<img class="mobile__img" src="img/pablo-mobile.jpg" width="320" height="568" alt="" />
</div>
</div>
</section>
</body>
</html>