@intergrav/dev.css 3.3.0 → 3.4.0
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/README.md +1 -1
- package/demo.html +10 -12
- package/dev.css +6 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -36,7 +36,7 @@ Optionally, use the `<footer>` tag to create a footer for your page. Place it at
|
|
|
36
36
|
|
|
37
37
|
### Text
|
|
38
38
|
|
|
39
|
-
Wrap all body text in `<p>` tags, unless it's the sole child of another element. Use the `<blockquote>` tag for quotes. To highlight text, wrap it in the `<mark>` tag. For code, use `<code>` for short inline code snippets and `<pre>` for code blocks. Use `<kbd>` for keyboard input.
|
|
39
|
+
Wrap all body text in `<p>` tags, unless it's the sole child of another element. Use the `<blockquote>` tag for quotes. To highlight text, wrap it in the `<mark>` tag. For code, use `<code>` for short inline code snippets and wrap that with `<pre>` for code blocks. Use `<kbd>` for keyboard input.
|
|
40
40
|
|
|
41
41
|
### Button
|
|
42
42
|
|
package/demo.html
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<!
|
|
1
|
+
<!DOCTYPE html>
|
|
2
2
|
<html lang="en">
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="UTF-8" />
|
|
@@ -129,17 +129,15 @@
|
|
|
129
129
|
– Edward Snowden
|
|
130
130
|
</blockquote>
|
|
131
131
|
|
|
132
|
-
<pre
|
|
133
|
-
<
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
</html></pre
|
|
142
|
-
>
|
|
132
|
+
<pre><code><!DOCTYPE html>
|
|
133
|
+
<html>
|
|
134
|
+
<head>
|
|
135
|
+
<title>Hello World</title>
|
|
136
|
+
</head>
|
|
137
|
+
<body>
|
|
138
|
+
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
|
|
139
|
+
</body>
|
|
140
|
+
</html></code></pre>
|
|
143
141
|
|
|
144
142
|
<br />
|
|
145
143
|
<hr />
|
package/dev.css
CHANGED
|
@@ -393,6 +393,7 @@ pre {
|
|
|
393
393
|
border-radius: 0.25rem;
|
|
394
394
|
padding: 0.125rem 0.25rem;
|
|
395
395
|
font-size: 0.9rem;
|
|
396
|
+
tab-size: 2;
|
|
396
397
|
}
|
|
397
398
|
|
|
398
399
|
kbd {
|
|
@@ -405,6 +406,11 @@ pre {
|
|
|
405
406
|
overflow: auto;
|
|
406
407
|
}
|
|
407
408
|
|
|
409
|
+
pre code {
|
|
410
|
+
padding: 0;
|
|
411
|
+
border: 0;
|
|
412
|
+
}
|
|
413
|
+
|
|
408
414
|
/* 14. details */
|
|
409
415
|
details {
|
|
410
416
|
padding: 0.5rem 1rem;
|