@intergrav/dev.css 1.0.6 → 2.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/demo.html CHANGED
@@ -1,261 +1,265 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="UTF-8" />
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
- <title>dev.css Demo</title>
7
- <link
8
- rel="stylesheet"
9
- href="https://cdn.jsdelivr.net/npm/@intergrav/dev.css@1"
10
- />
11
- <link
12
- rel="stylesheet"
13
- href="https://cdn.jsdelivr.net/npm/@intergrav/fonts@1/serve/geist.min.css"
14
- />
15
- <link
16
- rel="stylesheet"
17
- href="https://cdn.jsdelivr.net/npm/@intergrav/fonts@1/serve/geist-mono.min.css"
18
- />
19
- </head>
20
- <body>
21
- <header>
22
- <h1>dev.css Demo</h1>
23
- <nav>
24
- <a>Home</a> / <a>About</a> / <a>Portfolio</a> / <a>Awesome</a> /
25
- <a>Sauce</a>
26
- </nav>
27
- </header>
28
-
29
- <h1>Heading 1</h1>
30
- <p>
31
- This is paragraph text. Lorem ipsum dolor sit amet consectetur adipisicing
32
- elit.
33
- </p>
34
- <h2>Heading 2</h2>
35
- <p>
36
- This is paragraph text. Lorem ipsum dolor sit amet consectetur adipisicing
37
- elit.
38
- </p>
39
- <h3>Heading 3</h3>
40
- <p>
41
- This is paragraph text. Lorem ipsum dolor sit amet consectetur adipisicing
42
- elit.
43
- </p>
44
- <h4>Heading 4</h4>
45
- <p>
46
- This is paragraph text. Lorem ipsum dolor sit amet consectetur adipisicing
47
- elit.
48
- </p>
49
- <h5>Heading 5</h5>
50
- <p>
51
- This is paragraph text. Lorem ipsum dolor sit amet consectetur adipisicing
52
- elit.
53
- </p>
54
- <h6>Heading 6</h6>
55
- <p>
56
- This is paragraph text. Lorem ipsum dolor sit amet consectetur adipisicing
57
- elit.
58
- </p>
59
-
60
- <br />
61
- <hr />
62
- <br />
63
-
64
- <p>
65
- Lorem <mark>ipsum</mark> dolor sit amet
66
- <strong>consectetur</strong> adipisicing elit. Aut
67
- <i>harum molestias</i> labore amet possimus
68
- <s>exercitationem aperiam</s> earum, doloribus
69
- <u>nobis ducimus</u> maiores quia voluptates quis omnis molestiae
70
- quisquam. <a href="#">Voluptatibus, officiis laudantium?</a>
71
- </p>
72
-
73
- <p>
74
- Lorem ipsum dolor sit amet consectetur adipisicing elit.
75
- <code>Hic culpa, nobis doloremque</code> veniam non, nihil cupiditate odit
76
- repellat est <kbd>ALT + F4</kbd> expedita facilis. Fuga aspernatur, alias
77
- debitis eveniet totam minima vel.
78
- </p>
79
-
80
- <ul>
81
- <li>List item</li>
82
- <li>List item</li>
83
- <li>List item</li>
84
- <li>List item</li>
85
- </ul>
86
-
87
- <ol>
88
- <li>Step 1</li>
89
- <li>Step 2</li>
90
- <li>????</li>
91
- <li>Profit!</li>
92
- </ol>
93
-
94
- <dl>
95
- <dt>Web</dt>
96
- <dd>The part of the Internet that contains websites and web pages</dd>
97
- <dt>HTML</dt>
98
- <dd>A markup language for creating web pages</dd>
99
- <dt>CSS</dt>
100
- <dd>A technology to make HTML look better</dd>
101
- </dl>
102
-
103
- <blockquote cite="https://en.wikiquote.org/wiki/Edward_Snowden">
104
- If you think privacy is unimportant for you because you have nothing to
105
- hide, you might as well say free speech is unimportant for you because you
106
- have nothing useful to say.
107
- <br />
108
- <br />
109
- Edward Snowden
110
- </blockquote>
111
-
112
- <pre>
113
- &#x3C;!DOCTYPE html&#x3E;
114
- &#x3C;html&#x3E;
115
- &#x3C;head&#x3E;
116
- &#x3C;title&#x3E;Hello World&#x3C;/title&#x3E;
117
- &#x3C;/head&#x3E;
118
- &#x3C;body&#x3E;
119
- &#x3C;p&#x3E;Lorem ipsum dolor sit amet, consectetur adipiscing elit.&#x3C;/p&#x3E;
120
- &#x3C;/body&#x3E;
121
- &#x3C;/html&#x3E;</pre
122
- >
123
-
124
- <br />
125
- <hr />
126
- <br />
127
-
128
- <table>
129
- <caption>
130
- Ho-kago Tea Time
131
- </caption>
132
- <thead>
133
- <tr>
134
- <th>Name</th>
135
- <th>Instrument</th>
136
- </tr>
137
- </thead>
138
- <tbody>
139
- <tr>
140
- <td>Yui Hirasawa</td>
141
- <td>Lead Guitar</td>
142
- </tr>
143
- <tr>
144
- <td>Mio Akiyama</td>
145
- <td>Bass</td>
146
- </tr>
147
- <tr>
148
- <td>Ritsu Tainaka</td>
149
- <td>Drums</td>
150
- </tr>
151
- <tr>
152
- <td>Tsumugi Kotobuki</td>
153
- <td>Keyboard</td>
154
- </tr>
155
- <tr>
156
- <td>Azusa Nakano</td>
157
- <td>Rhythm Guitar</td>
158
- </tr>
159
- </tbody>
160
- <tfoot>
161
- <tr>
162
- <th>Name</th>
163
- <th>Instrument</th>
164
- </tr>
165
- </tfoot>
166
- </table>
167
-
168
- <br />
169
- <hr />
170
- <br />
171
-
172
- <form>
173
- <p>
174
- <em>
175
- This is not a real form and does not submit or save any information.
176
- </em>
177
- </p>
178
- <p>
179
- <label>First name</label><br />
180
- <input type="text" name="first_name" />
181
- </p>
182
- <p>
183
- <label>Last name</label><br />
184
- <input type="text" name="last_name" />
185
- </p>
186
- <p>
187
- <label>Gender</label><br />
188
- <label>
189
- <input type="radio" name="gender" value="Male" />
190
- Male
191
- </label>
192
- <br />
193
- <label>
194
- <input type="radio" name="gender" value="Female" />
195
- Female
196
- </label>
197
- <br />
198
- <label>
199
- <input type="radio" name="gender" value="other-none-na" />
200
- Non-binary
201
- </label>
202
- </p>
203
- <p>
204
- <label>Email</label><br />
205
- <input type="email" name="email" required="" />
206
- </p>
207
- <p>
208
- <label>Phone number</label><br />
209
- <input type="tel" name="phone" />
210
- </p>
211
- <p>
212
- <label>Password</label><br />
213
- <input type="password" name="password" />
214
- </p>
215
- <p>
216
- <label>Country</label><br />
217
- <select>
218
- <option>China</option>
219
- <option>India</option>
220
- <option>United States</option>
221
- <option>Indonesia</option>
222
- <option>Brazil</option>
223
- </select>
224
- </p>
225
- <p>
226
- <label>Comments</label><br />
227
- <textarea></textarea>
228
- </p>
229
- <p>
230
- <label>
231
- <input type="checkbox" value="terms" />
232
- I agree to the <a>terms and conditions</a>
233
- </label>
234
- </p>
235
- <p>
236
- <button>Sign up</button>
237
- <button type="reset">Reset form</button>
238
- <button disabled="disabled">Disabled</button>
239
- </p>
240
- </form>
241
-
242
- <br />
243
- <hr />
244
- <br />
245
-
246
- <img
247
- src="https://elements.xz.style/assets/fuji-daniel-hehn.jpg"
248
- alt="Mt. Fuji"
249
- />
250
-
251
- <p>
252
- Inline image:
253
- <a href="#"
254
- ><img
255
- src="https://elements.xz.style/assets/fuji-daniel-hehn.jpg"
256
- width="50"
257
- alt="Mt. Fuji"
258
- /></a>
259
- </p>
260
- </body>
261
- </html>
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <title>dev.css Demo</title>
7
+ <link
8
+ rel="stylesheet"
9
+ href="https://cdn.jsdelivr.net/npm/@intergrav/dev.css@2"
10
+ />
11
+ <link
12
+ rel="stylesheet"
13
+ href="https://cdn.jsdelivr.net/npm/@intergrav/fonts@1/serve/geist.min.css"
14
+ />
15
+ <link
16
+ rel="stylesheet"
17
+ href="https://cdn.jsdelivr.net/npm/@intergrav/fonts@1/serve/geist-mono.min.css"
18
+ />
19
+ </head>
20
+
21
+ <body>
22
+ <header>
23
+ <h1>dev.css Demo</h1>
24
+ <nav>
25
+ <a href="">Home</a>
26
+ <a href="">About</a>
27
+ <a href="">Portfolio</a>
28
+ <a href="">Awesome</a>
29
+ <a href="">Sauce</a>
30
+ </nav>
31
+ </header>
32
+
33
+ <h1>Heading 1</h1>
34
+ <p>
35
+ This is paragraph text. Lorem ipsum dolor sit amet consectetur adipisicing
36
+ elit.
37
+ </p>
38
+ <h2>Heading 2</h2>
39
+ <p>
40
+ This is paragraph text. Lorem ipsum dolor sit amet consectetur adipisicing
41
+ elit.
42
+ </p>
43
+ <h3>Heading 3</h3>
44
+ <p>
45
+ This is paragraph text. Lorem ipsum dolor sit amet consectetur adipisicing
46
+ elit.
47
+ </p>
48
+ <h4>Heading 4</h4>
49
+ <p>
50
+ This is paragraph text. Lorem ipsum dolor sit amet consectetur adipisicing
51
+ elit.
52
+ </p>
53
+ <h5>Heading 5</h5>
54
+ <p>
55
+ This is paragraph text. Lorem ipsum dolor sit amet consectetur adipisicing
56
+ elit.
57
+ </p>
58
+ <h6>Heading 6</h6>
59
+ <p>
60
+ This is paragraph text. Lorem ipsum dolor sit amet consectetur adipisicing
61
+ elit.
62
+ </p>
63
+
64
+ <br />
65
+ <hr />
66
+ <br />
67
+
68
+ <p>
69
+ Lorem <mark>ipsum</mark> dolor sit amet
70
+ <strong>consectetur</strong> adipisicing elit. Aut
71
+ <i>harum molestias</i> labore amet possimus
72
+ <s>exercitationem aperiam</s> earum, doloribus
73
+ <u>nobis ducimus</u> maiores quia voluptates quis omnis molestiae
74
+ quisquam. <a href="#">Voluptatibus, officiis laudantium?</a>
75
+ </p>
76
+
77
+ <p>
78
+ Lorem ipsum dolor sit amet consectetur adipisicing elit.
79
+ <code>Hic culpa, nobis doloremque</code> veniam non, nihil cupiditate odit
80
+ repellat est <kbd>ALT + F4</kbd> expedita facilis. Fuga aspernatur, alias
81
+ debitis eveniet totam minima vel.
82
+ </p>
83
+
84
+ <ul>
85
+ <li>List item</li>
86
+ <li>List item</li>
87
+ <li>List item</li>
88
+ <li>List item</li>
89
+ </ul>
90
+
91
+ <ol>
92
+ <li>Step 1</li>
93
+ <li>Step 2</li>
94
+ <li>????</li>
95
+ <li>Profit!</li>
96
+ </ol>
97
+
98
+ <dl>
99
+ <dt>Web</dt>
100
+ <dd>The part of the Internet that contains websites and web pages</dd>
101
+ <dt>HTML</dt>
102
+ <dd>A markup language for creating web pages</dd>
103
+ <dt>CSS</dt>
104
+ <dd>A technology to make HTML look better</dd>
105
+ </dl>
106
+
107
+ <blockquote cite="https://en.wikiquote.org/wiki/Edward_Snowden">
108
+ If you think privacy is unimportant for you because you have nothing to
109
+ hide, you might as well say free speech is unimportant for you because you
110
+ have nothing useful to say.
111
+ <br />
112
+ <br />
113
+ Edward Snowden
114
+ </blockquote>
115
+
116
+ <pre>
117
+ &#x3C;!DOCTYPE html&#x3E;
118
+ &#x3C;html&#x3E;
119
+ &#x3C;head&#x3E;
120
+ &#x3C;title&#x3E;Hello World&#x3C;/title&#x3E;
121
+ &#x3C;/head&#x3E;
122
+ &#x3C;body&#x3E;
123
+ &#x3C;p&#x3E;Lorem ipsum dolor sit amet, consectetur adipiscing elit.&#x3C;/p&#x3E;
124
+ &#x3C;/body&#x3E;
125
+ &#x3C;/html&#x3E;</pre
126
+ >
127
+
128
+ <br />
129
+ <hr />
130
+ <br />
131
+
132
+ <table>
133
+ <caption>
134
+ Ho-kago Tea Time
135
+ </caption>
136
+ <thead>
137
+ <tr>
138
+ <th>Name</th>
139
+ <th>Instrument</th>
140
+ </tr>
141
+ </thead>
142
+ <tbody>
143
+ <tr>
144
+ <td>Yui Hirasawa</td>
145
+ <td>Lead Guitar</td>
146
+ </tr>
147
+ <tr>
148
+ <td>Mio Akiyama</td>
149
+ <td>Bass</td>
150
+ </tr>
151
+ <tr>
152
+ <td>Ritsu Tainaka</td>
153
+ <td>Drums</td>
154
+ </tr>
155
+ <tr>
156
+ <td>Tsumugi Kotobuki</td>
157
+ <td>Keyboard</td>
158
+ </tr>
159
+ <tr>
160
+ <td>Azusa Nakano</td>
161
+ <td>Rhythm Guitar</td>
162
+ </tr>
163
+ </tbody>
164
+ <tfoot>
165
+ <tr>
166
+ <th>Name</th>
167
+ <th>Instrument</th>
168
+ </tr>
169
+ </tfoot>
170
+ </table>
171
+
172
+ <br />
173
+ <hr />
174
+ <br />
175
+
176
+ <form>
177
+ <p>
178
+ <em>
179
+ This is not a real form and does not submit or save any information.
180
+ </em>
181
+ </p>
182
+ <p>
183
+ <label>First name</label><br />
184
+ <input type="text" name="first_name" />
185
+ </p>
186
+ <p>
187
+ <label>Last name</label><br />
188
+ <input type="text" name="last_name" />
189
+ </p>
190
+ <p>
191
+ <label>Gender</label><br />
192
+ <label>
193
+ <input type="radio" name="gender" value="Male" />
194
+ Male
195
+ </label>
196
+ <br />
197
+ <label>
198
+ <input type="radio" name="gender" value="Female" />
199
+ Female
200
+ </label>
201
+ <br />
202
+ <label>
203
+ <input type="radio" name="gender" value="other-none-na" />
204
+ Non-binary
205
+ </label>
206
+ </p>
207
+ <p>
208
+ <label>Email</label><br />
209
+ <input type="email" name="email" required="" />
210
+ </p>
211
+ <p>
212
+ <label>Phone number</label><br />
213
+ <input type="tel" name="phone" />
214
+ </p>
215
+ <p>
216
+ <label>Password</label><br />
217
+ <input type="password" name="password" />
218
+ </p>
219
+ <p>
220
+ <label>Country</label><br />
221
+ <select>
222
+ <option>China</option>
223
+ <option>India</option>
224
+ <option>United States</option>
225
+ <option>Indonesia</option>
226
+ <option>Brazil</option>
227
+ </select>
228
+ </p>
229
+ <p>
230
+ <label>Comments</label><br />
231
+ <textarea></textarea>
232
+ </p>
233
+ <p>
234
+ <label>
235
+ <input type="checkbox" value="terms" />
236
+ I agree to the <a>terms and conditions</a>
237
+ </label>
238
+ </p>
239
+ <p>
240
+ <button>Sign up</button>
241
+ <button type="reset">Reset form</button>
242
+ <button disabled="disabled">Disabled</button>
243
+ </p>
244
+ </form>
245
+
246
+ <br />
247
+ <hr />
248
+ <br />
249
+
250
+ <img
251
+ src="https://elements.xz.style/assets/fuji-daniel-hehn.jpg"
252
+ alt="Mt. Fuji"
253
+ />
254
+
255
+ <p>
256
+ Inline image:
257
+ <a href="#"
258
+ ><img
259
+ src="https://elements.xz.style/assets/fuji-daniel-hehn.jpg"
260
+ width="50"
261
+ alt="Mt. Fuji"
262
+ /></a>
263
+ </p>
264
+ </body>
265
+ </html>