huan-simple-html 1.2.0 → 1.3.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/.eslintignore +30 -30
- package/.npmignore +74 -70
- package/LICENSE +7 -7
- package/LICENSE_CN +7 -7
- package/README.md +31 -29
- package/README_EN.md +31 -29
- package/REEPORT +14 -14
- package/REPORT_EN +14 -14
- package/config.json +4 -4
- package/package.json +2 -2
- package/src/assets/image/logo.png +0 -0
- package/src/common.js +20 -4
- package/src/html/LICENSE_CN.html +45 -47
- package/src/html/LICENSE_US.html +43 -45
- package/src/html/error/4xx/400.html +9 -11
- package/src/html/error/4xx/403.html +10 -12
- package/src/html/error/4xx/404.html +16 -18
- package/src/html/error/4xx/404.signal.html +56 -56
- package/src/html/error/4xx/404.songzihuan.signal.html +57 -57
- package/src/html/error/4xx/405.html +10 -12
- package/src/html/error/4xx/4xx.html +10 -12
- package/src/html/error/5xx/500.html +10 -12
- package/src/html/error/5xx/500.signal.html +29 -29
- package/src/html/error/5xx/500.songzihuan.signal.html +30 -30
- package/src/html/error/5xx/501.html +10 -12
- package/src/html/error/5xx/502.html +9 -11
- package/src/html/error/5xx/503.html +10 -12
- package/src/html/error/5xx/504.html +9 -11
- package/src/html/error/5xx/505.html +10 -12
- package/src/html/error/5xx/506.html +9 -11
- package/src/html/error/5xx/507.html +10 -12
- package/src/html/error/5xx/508.html +10 -12
- package/src/html/error/5xx/509.html +10 -12
- package/src/html/error/5xx/510.html +9 -11
- package/src/html/error/5xx/511.html +12 -14
- package/src/html/error/5xx/5xx.html +10 -12
- package/src/html/index.html +122 -124
- package/src/html/index.new.html +12 -15
- package/src/html/index.new.signal.html +41 -42
- package/src/html/mitorg.html +5070 -5072
- package/src/style/error/404.css +30 -30
- package/src/style/error/4xx.css +16 -16
- package/src/style/error/5xx.css +15 -15
- package/src/style/index/index.css +34 -34
- package/src/style/index/license.css +3 -3
- package/src/style/index/mitorg.css +106 -106
- package/src/style/index/new.css +21 -21
- package/src/assets/image/logo_big.png +0 -0
- package/src/assets/image/songzihuan.jpg +0 -0
package/src/style/error/404.css
CHANGED
@@ -1,31 +1,31 @@
|
|
1
|
-
body {
|
2
|
-
font-family: Arial, sans-serif;
|
3
|
-
text-align: center;
|
4
|
-
padding-top: 50px;
|
5
|
-
background-color: #f8f8f8;
|
6
|
-
}
|
7
|
-
|
8
|
-
h1 {
|
9
|
-
font-size: 7em;
|
10
|
-
margin-bottom: 0.5em;
|
11
|
-
color: #cc0000;
|
12
|
-
}
|
13
|
-
|
14
|
-
h2 {
|
15
|
-
font-size: 2em;
|
16
|
-
color: #666;
|
17
|
-
}
|
18
|
-
|
19
|
-
p {
|
20
|
-
font-size: 1.2em;
|
21
|
-
color: #333;
|
22
|
-
}
|
23
|
-
|
24
|
-
a {
|
25
|
-
color: #007bff;
|
26
|
-
text-decoration: none;
|
27
|
-
}
|
28
|
-
|
29
|
-
a:hover {
|
30
|
-
text-decoration: underline;
|
1
|
+
body {
|
2
|
+
font-family: Arial, sans-serif;
|
3
|
+
text-align: center;
|
4
|
+
padding-top: 50px;
|
5
|
+
background-color: #f8f8f8;
|
6
|
+
}
|
7
|
+
|
8
|
+
h1 {
|
9
|
+
font-size: 7em;
|
10
|
+
margin-bottom: 0.5em;
|
11
|
+
color: #cc0000;
|
12
|
+
}
|
13
|
+
|
14
|
+
h2 {
|
15
|
+
font-size: 2em;
|
16
|
+
color: #666;
|
17
|
+
}
|
18
|
+
|
19
|
+
p {
|
20
|
+
font-size: 1.2em;
|
21
|
+
color: #333;
|
22
|
+
}
|
23
|
+
|
24
|
+
a {
|
25
|
+
color: #007bff;
|
26
|
+
text-decoration: none;
|
27
|
+
}
|
28
|
+
|
29
|
+
a:hover {
|
30
|
+
text-decoration: underline;
|
31
31
|
}
|
package/src/style/error/4xx.css
CHANGED
@@ -1,17 +1,17 @@
|
|
1
|
-
body {
|
2
|
-
font-family: Arial, sans-serif;
|
3
|
-
text-align: center;
|
4
|
-
padding-top: 50px;
|
5
|
-
background-color: #f8f9fa;
|
6
|
-
}
|
7
|
-
|
8
|
-
h1 {
|
9
|
-
font-size: 4em;
|
10
|
-
margin-bottom: 10px;
|
11
|
-
color: #dc3545;
|
12
|
-
}
|
13
|
-
|
14
|
-
p {
|
15
|
-
font-size: 1.5em;
|
16
|
-
color: #6c757d;
|
1
|
+
body {
|
2
|
+
font-family: Arial, sans-serif;
|
3
|
+
text-align: center;
|
4
|
+
padding-top: 50px;
|
5
|
+
background-color: #f8f9fa;
|
6
|
+
}
|
7
|
+
|
8
|
+
h1 {
|
9
|
+
font-size: 4em;
|
10
|
+
margin-bottom: 10px;
|
11
|
+
color: #dc3545;
|
12
|
+
}
|
13
|
+
|
14
|
+
p {
|
15
|
+
font-size: 1.5em;
|
16
|
+
color: #6c757d;
|
17
17
|
}
|
package/src/style/error/5xx.css
CHANGED
@@ -1,15 +1,15 @@
|
|
1
|
-
body {
|
2
|
-
font-family: Arial, sans-serif;
|
3
|
-
text-align: center;
|
4
|
-
margin-top: 50px;
|
5
|
-
}
|
6
|
-
|
7
|
-
h1 {
|
8
|
-
font-size: 3em;
|
9
|
-
color: #990000;
|
10
|
-
}
|
11
|
-
|
12
|
-
p {
|
13
|
-
font-size: 1.5em;
|
14
|
-
color: #666;
|
15
|
-
}
|
1
|
+
body {
|
2
|
+
font-family: Arial, sans-serif;
|
3
|
+
text-align: center;
|
4
|
+
margin-top: 50px;
|
5
|
+
}
|
6
|
+
|
7
|
+
h1 {
|
8
|
+
font-size: 3em;
|
9
|
+
color: #990000;
|
10
|
+
}
|
11
|
+
|
12
|
+
p {
|
13
|
+
font-size: 1.5em;
|
14
|
+
color: #666;
|
15
|
+
}
|
@@ -1,35 +1,35 @@
|
|
1
|
-
body {
|
2
|
-
font-family: Arial, sans-serif;
|
3
|
-
text-align: center;
|
4
|
-
padding-top: 50px;
|
5
|
-
background-color: #f0f0f0;
|
6
|
-
}
|
7
|
-
|
8
|
-
h1 {
|
9
|
-
color: #333;
|
10
|
-
margin-bottom: 20px;
|
11
|
-
}
|
12
|
-
|
13
|
-
a {
|
14
|
-
color: #007BFF;
|
15
|
-
text-decoration: none;
|
16
|
-
transition: color 0.3s ease;
|
17
|
-
}
|
18
|
-
|
19
|
-
a:hover {
|
20
|
-
color: #0056b3;
|
21
|
-
}
|
22
|
-
|
23
|
-
p {
|
24
|
-
color: #666;
|
25
|
-
line-height: 1.5;
|
26
|
-
}
|
27
|
-
|
28
|
-
.bold {
|
29
|
-
font-weight: bold;
|
30
|
-
}
|
31
|
-
|
32
|
-
#WANGAN_LOGO {
|
33
|
-
max-width: 20px;
|
34
|
-
max-height: 20px;
|
1
|
+
body {
|
2
|
+
font-family: Arial, sans-serif;
|
3
|
+
text-align: center;
|
4
|
+
padding-top: 50px;
|
5
|
+
background-color: #f0f0f0;
|
6
|
+
}
|
7
|
+
|
8
|
+
h1 {
|
9
|
+
color: #333;
|
10
|
+
margin-bottom: 20px;
|
11
|
+
}
|
12
|
+
|
13
|
+
a {
|
14
|
+
color: #007BFF;
|
15
|
+
text-decoration: none;
|
16
|
+
transition: color 0.3s ease;
|
17
|
+
}
|
18
|
+
|
19
|
+
a:hover {
|
20
|
+
color: #0056b3;
|
21
|
+
}
|
22
|
+
|
23
|
+
p {
|
24
|
+
color: #666;
|
25
|
+
line-height: 1.5;
|
26
|
+
}
|
27
|
+
|
28
|
+
.bold {
|
29
|
+
font-weight: bold;
|
30
|
+
}
|
31
|
+
|
32
|
+
#WANGAN_LOGO {
|
33
|
+
max-width: 20px;
|
34
|
+
max-height: 20px;
|
35
35
|
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
#license-content {
|
2
|
-
white-space: pre-wrap;
|
3
|
-
width: 80ch;
|
1
|
+
#license-content {
|
2
|
+
white-space: pre-wrap;
|
3
|
+
width: 80ch;
|
4
4
|
}
|
@@ -1,106 +1,106 @@
|
|
1
|
-
@import url(https://fonts.googleapis.com/css?family=Inconsolata);html {
|
2
|
-
background: #eee
|
3
|
-
}
|
4
|
-
|
5
|
-
body {
|
6
|
-
margin: 0;
|
7
|
-
font-family: Inconsolata,"DejaVu Sans Mono","Bitstream Vera Sans Mono",monospace;
|
8
|
-
font-size: 1.2em;
|
9
|
-
line-height: 1.2em
|
10
|
-
}
|
11
|
-
|
12
|
-
article,footer {
|
13
|
-
display: block;
|
14
|
-
min-width: 360px;
|
15
|
-
max-width: 900px;
|
16
|
-
width: 80%
|
17
|
-
}
|
18
|
-
|
19
|
-
article {
|
20
|
-
margin: 2.5em auto 0 auto;
|
21
|
-
border: 1px solid;
|
22
|
-
border-color: #ddd #aaa #aaa #ddd;
|
23
|
-
padding: 2em;
|
24
|
-
background: #fff
|
25
|
-
}
|
26
|
-
|
27
|
-
h1 {
|
28
|
-
margin-top: 0
|
29
|
-
}
|
30
|
-
|
31
|
-
article p:first-of-type {
|
32
|
-
margin-top: 1.6em
|
33
|
-
}
|
34
|
-
|
35
|
-
article p:last-child {
|
36
|
-
margin-bottom: 0
|
37
|
-
}
|
38
|
-
|
39
|
-
footer {
|
40
|
-
margin: 0 auto 2em auto;
|
41
|
-
text-align: center
|
42
|
-
}
|
43
|
-
|
44
|
-
footer a {
|
45
|
-
color: #666;
|
46
|
-
text-shadow: 0 1px 1px #fff;
|
47
|
-
text-decoration: none;
|
48
|
-
font-size: .8em;
|
49
|
-
padding: 1em
|
50
|
-
}
|
51
|
-
|
52
|
-
footer a:focus,footer a:hover {
|
53
|
-
color: #111
|
54
|
-
}
|
55
|
-
|
56
|
-
h1 {
|
57
|
-
font-weight: 400;
|
58
|
-
display: inline;
|
59
|
-
border-bottom: 1px solid #000;
|
60
|
-
padding: 0 0 3px 0;
|
61
|
-
line-height: 36px
|
62
|
-
}
|
63
|
-
|
64
|
-
a {
|
65
|
-
color: #2844fa;
|
66
|
-
text-decoration: none
|
67
|
-
}
|
68
|
-
|
69
|
-
a:focus,a:hover {
|
70
|
-
color: #1b29a4
|
71
|
-
}
|
72
|
-
|
73
|
-
a:active {
|
74
|
-
color: #000
|
75
|
-
}
|
76
|
-
|
77
|
-
:-moz-any-link:focus {
|
78
|
-
color: #000;
|
79
|
-
border: 0
|
80
|
-
}
|
81
|
-
|
82
|
-
::-moz-selection {
|
83
|
-
background: #ccc
|
84
|
-
}
|
85
|
-
|
86
|
-
::selection {
|
87
|
-
background: #ccc
|
88
|
-
}
|
89
|
-
|
90
|
-
#gravatar {
|
91
|
-
position: relative;
|
92
|
-
float: right;
|
93
|
-
margin-bottom: 1em;
|
94
|
-
margin-left: 1em;
|
95
|
-
border: 1px solid #ddd
|
96
|
-
}
|
97
|
-
|
98
|
-
@media all and (max-width: 500px) {
|
99
|
-
article {
|
100
|
-
padding:1em
|
101
|
-
}
|
102
|
-
|
103
|
-
body {
|
104
|
-
font-size: 1em
|
105
|
-
}
|
106
|
-
}
|
1
|
+
@import url(https://fonts.googleapis.com/css?family=Inconsolata);html {
|
2
|
+
background: #eee
|
3
|
+
}
|
4
|
+
|
5
|
+
body {
|
6
|
+
margin: 0;
|
7
|
+
font-family: Inconsolata,"DejaVu Sans Mono","Bitstream Vera Sans Mono",monospace;
|
8
|
+
font-size: 1.2em;
|
9
|
+
line-height: 1.2em
|
10
|
+
}
|
11
|
+
|
12
|
+
article,footer {
|
13
|
+
display: block;
|
14
|
+
min-width: 360px;
|
15
|
+
max-width: 900px;
|
16
|
+
width: 80%
|
17
|
+
}
|
18
|
+
|
19
|
+
article {
|
20
|
+
margin: 2.5em auto 0 auto;
|
21
|
+
border: 1px solid;
|
22
|
+
border-color: #ddd #aaa #aaa #ddd;
|
23
|
+
padding: 2em;
|
24
|
+
background: #fff
|
25
|
+
}
|
26
|
+
|
27
|
+
h1 {
|
28
|
+
margin-top: 0
|
29
|
+
}
|
30
|
+
|
31
|
+
article p:first-of-type {
|
32
|
+
margin-top: 1.6em
|
33
|
+
}
|
34
|
+
|
35
|
+
article p:last-child {
|
36
|
+
margin-bottom: 0
|
37
|
+
}
|
38
|
+
|
39
|
+
footer {
|
40
|
+
margin: 0 auto 2em auto;
|
41
|
+
text-align: center
|
42
|
+
}
|
43
|
+
|
44
|
+
footer a {
|
45
|
+
color: #666;
|
46
|
+
text-shadow: 0 1px 1px #fff;
|
47
|
+
text-decoration: none;
|
48
|
+
font-size: .8em;
|
49
|
+
padding: 1em
|
50
|
+
}
|
51
|
+
|
52
|
+
footer a:focus,footer a:hover {
|
53
|
+
color: #111
|
54
|
+
}
|
55
|
+
|
56
|
+
h1 {
|
57
|
+
font-weight: 400;
|
58
|
+
display: inline;
|
59
|
+
border-bottom: 1px solid #000;
|
60
|
+
padding: 0 0 3px 0;
|
61
|
+
line-height: 36px
|
62
|
+
}
|
63
|
+
|
64
|
+
a {
|
65
|
+
color: #2844fa;
|
66
|
+
text-decoration: none
|
67
|
+
}
|
68
|
+
|
69
|
+
a:focus,a:hover {
|
70
|
+
color: #1b29a4
|
71
|
+
}
|
72
|
+
|
73
|
+
a:active {
|
74
|
+
color: #000
|
75
|
+
}
|
76
|
+
|
77
|
+
:-moz-any-link:focus {
|
78
|
+
color: #000;
|
79
|
+
border: 0
|
80
|
+
}
|
81
|
+
|
82
|
+
::-moz-selection {
|
83
|
+
background: #ccc
|
84
|
+
}
|
85
|
+
|
86
|
+
::selection {
|
87
|
+
background: #ccc
|
88
|
+
}
|
89
|
+
|
90
|
+
#gravatar {
|
91
|
+
position: relative;
|
92
|
+
float: right;
|
93
|
+
margin-bottom: 1em;
|
94
|
+
margin-left: 1em;
|
95
|
+
border: 1px solid #ddd
|
96
|
+
}
|
97
|
+
|
98
|
+
@media all and (max-width: 500px) {
|
99
|
+
article {
|
100
|
+
padding:1em
|
101
|
+
}
|
102
|
+
|
103
|
+
body {
|
104
|
+
font-size: 1em
|
105
|
+
}
|
106
|
+
}
|
package/src/style/index/new.css
CHANGED
@@ -1,22 +1,22 @@
|
|
1
|
-
body {
|
2
|
-
font-family: Arial, sans-serif;
|
3
|
-
text-align: center;
|
4
|
-
padding-top: 50px;
|
5
|
-
background-color: #f0f8ff;
|
6
|
-
}
|
7
|
-
|
8
|
-
h1 {
|
9
|
-
color: #007bff;
|
10
|
-
margin-bottom: 30px;
|
11
|
-
}
|
12
|
-
|
13
|
-
p {
|
14
|
-
font-size: 18px;
|
15
|
-
line-height: 1.5;
|
16
|
-
}
|
17
|
-
|
18
|
-
.success-icon {
|
19
|
-
font-size: 100px;
|
20
|
-
color: #4CAF50;
|
21
|
-
margin-bottom: 20px;
|
1
|
+
body {
|
2
|
+
font-family: Arial, sans-serif;
|
3
|
+
text-align: center;
|
4
|
+
padding-top: 50px;
|
5
|
+
background-color: #f0f8ff;
|
6
|
+
}
|
7
|
+
|
8
|
+
h1 {
|
9
|
+
color: #007bff;
|
10
|
+
margin-bottom: 30px;
|
11
|
+
}
|
12
|
+
|
13
|
+
p {
|
14
|
+
font-size: 18px;
|
15
|
+
line-height: 1.5;
|
16
|
+
}
|
17
|
+
|
18
|
+
.success-icon {
|
19
|
+
font-size: 100px;
|
20
|
+
color: #4CAF50;
|
21
|
+
margin-bottom: 20px;
|
22
22
|
}
|
Binary file
|
Binary file
|