-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
index.html
129 lines (106 loc) · 3.3 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
<!DOCTYPE html>
<!--
Copyright 2017 Google Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="Simplest possible examples of HTML, CSS and JavaScript.">
<meta name="author" content="//samdutton.com">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta itemprop="name" content="simpl.info: simplest possible examples of HTML, CSS and JavaScript">
<meta itemprop="image" content="/images/icons/icon192.png">
<meta id="theme-color" name="theme-color" content="#fff">
<link rel="icon" href="/images/icons/icon192.png">
<base target="_blank">
<title>Media queries</title>
<link rel="stylesheet" href="../css/main.css">
<style>
#mediaQueries p {
display: none;
}
@media (min-width: 0px) and (max-width: 299px) {
#mediaQueries p#gt0 {
display: block;
}
}
@media (min-width: 300px) and (max-width: 399px) {
#mediaQueries p#gt300 {
display: block;
}
}
@media (min-width: 400px) and (max-width: 499px) {
#mediaQueries p#gt400 {
display: block;
}
}
@media (min-width: 500px) and (max-width: 599px) {
#mediaQueries p#gt500 {
display: block;
}
}
@media (min-width: 600px) and (max-width: 699px) {
#mediaQueries p#gt600 {
display: block;
}
}
@media (min-width: 700px) and (max-width: 799px) {
#mediaQueries p#gt700 {
display: block;
}
}
@media (min-width: 800px) and (max-width: 899px) {
#mediaQueries p#gt800 {
display: block;
}
}
@media (min-width: 900px) and (max-width: 999px) {
#mediaQueries p#gt900 {
display: block;
}
}
@media (min-width: 1000px) {
#mediaQueries p#gt1000 {
display: block;
}
}
</style>
</head>
<body>
<div id="container">
<h1><a href="../index.html" title="simpl.info home page">simpl.info</a> Media queries</h1>
<div id="mediaQueries">
<p id="gt0">Viewport width: less than 300px.</p>
<p id="gt300">Viewport width: 300–399px.</p>
<p id="gt400">Viewport width: 400–499px.</p>
<p id="gt500">Viewport width: 500–599px.</p>
<p id="gt600">Viewport width: 600–699px.</p>
<p id="gt700">Viewport width: 700–799px.</p>
<p id="gt800">Viewport width: 800–899px.</p>
<p id="gt900">Viewport width: 900–999px.</p>
<p id="gt1000">Viewport width: greater than 999px.</p>
</div>
<p>Viewport width: <span id="viewportWidth"></span>px.</p>
<script>
var viewportWidthEl = document.getElementById('viewportWidth');
function displayViewportWidth() {
var viewportWidth = Math.max(document.documentElement.clientWidth,
window.innerWidth || 0);
viewportWidthEl.textContent = viewportWidth;
}
window.onresize = displayViewportWidth;
displayViewportWidth();
</script>
<a href="https://github.com/samdutton/simpl/blob/gh-pages/mediaqueries/" title="View source for this page on GitHub" id="viewSource">View source on GitHub</a>
</div>
</body>
</html>