@networkpro/web 0.5.15
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/404.html +106 -0
- package/CNAME +1 -0
- package/LICENSE.md +304 -0
- package/README.md +144 -0
- package/css/default.css +85 -0
- package/css/index.css +124 -0
- package/css/normalize.css +152 -0
- package/css/style.css +279 -0
- package/favicon-180.png +0 -0
- package/favicon-192.png +0 -0
- package/favicon-512.png +0 -0
- package/favicon.ico +0 -0
- package/favicon.svg +550 -0
- package/favicon.svg.br +0 -0
- package/img/banner-1280x640.png +0 -0
- package/img/banner-1440.png +0 -0
- package/img/banner-og-1200x630.png +0 -0
- package/img/favicon-template.png +0 -0
- package/img/fb-cover.png +0 -0
- package/img/fb-cover2.png +0 -0
- package/img/fsf-member.png +0 -0
- package/img/gh-logo.png +0 -0
- package/img/gpl3-small.png +0 -0
- package/img/gpl3.png +0 -0
- package/img/linkedin-banner.png +0 -0
- package/img/linkedin-banner2.png +0 -0
- package/img/logo-1024x1024.png +0 -0
- package/img/logo-alt.png +0 -0
- package/img/logo-elevated.png +0 -0
- package/img/logo-light-elevated.png +0 -0
- package/img/logo-light-slogan.png +0 -0
- package/img/logo-light.png +0 -0
- package/img/logo-slogan.png +0 -0
- package/img/logo-transparent-black-small.png +0 -0
- package/img/logo-transparent-black.png +0 -0
- package/img/logo-transparent-elevated.png +0 -0
- package/img/logo-transparent-slogan.png +0 -0
- package/img/logo-transparent.png +0 -0
- package/img/logo.png +0 -0
- package/img/mastodon-banner.png +0 -0
- package/img/netpro-logo-transparent.png +0 -0
- package/img/qr/pgp-github.png +0 -0
- package/img/qr/pgp-support.png +0 -0
- package/img/qr/vcard.png +0 -0
- package/img/sd311.png +0 -0
- package/img/shield.png +0 -0
- package/img/shield.svg +1 -0
- package/img/shield.svg.br +0 -0
- package/img/shield2.png +0 -0
- package/img/shield3-2000x2000.png +0 -0
- package/img/shield3-black-1024x1024.png +0 -0
- package/img/shield3-black.png +0 -0
- package/img/shield3-white.png +0 -0
- package/img/trademark.jpg +0 -0
- package/index.html +272 -0
- package/index.html.br +0 -0
- package/js/app.a39beffd45ef9ef01be3.js +10 -0
- package/js/runtime.aacedc5fe7f60f6e1917.js +45 -0
- package/js/vendor/.gitkeep +0 -0
- package/legal/LICENSE.md +304 -0
- package/legal/PRIVACY.md +247 -0
- package/legal/TERMS.md +187 -0
- package/legal.html +372 -0
- package/legal.html.br +0 -0
- package/package.json +86 -0
- package/robots.txt +12 -0
- package/site.webmanifest +25 -0
- package/sitemap.xml +115 -0
- package/terms.html +661 -0
- package/terms.html.br +0 -0
package/css/index.css
ADDED
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
.full-width-section{
|
|
2
|
+
background-position:50%;
|
|
3
|
+
background-size:cover;
|
|
4
|
+
margin:0 auto;
|
|
5
|
+
max-width:1920px;
|
|
6
|
+
width:100%;
|
|
7
|
+
}
|
|
8
|
+
.container{
|
|
9
|
+
margin:0 auto;
|
|
10
|
+
max-width:1200px;
|
|
11
|
+
padding:0 12px;
|
|
12
|
+
}
|
|
13
|
+
footer,header{
|
|
14
|
+
width:100%;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
footer .container,header .container{
|
|
18
|
+
margin:0 auto;
|
|
19
|
+
max-width:1200px;
|
|
20
|
+
padding:20px 12px;
|
|
21
|
+
}
|
|
22
|
+
.gh{
|
|
23
|
+
border-collapse:collapse;
|
|
24
|
+
border-spacing:0;
|
|
25
|
+
margin:0 auto;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.gh td,.gh th{
|
|
29
|
+
border-collapse:collapse;
|
|
30
|
+
font-family:Arial,Helvetica,sans-serif;
|
|
31
|
+
overflow:hidden;
|
|
32
|
+
padding:10px 5px;
|
|
33
|
+
word-break:normal;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.gh th{
|
|
37
|
+
font-weight:400;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.gh .gh-tcell{
|
|
41
|
+
text-align:center;
|
|
42
|
+
vertical-align:middle;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
@media screen and (width <= 767px){
|
|
46
|
+
|
|
47
|
+
.gh,.gh col{
|
|
48
|
+
width:auto !important;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.gh-wrap{
|
|
52
|
+
margin:auto 0;
|
|
53
|
+
-webkit-overflow-scrolling:touch;
|
|
54
|
+
overflow-x:auto;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
.soc{
|
|
58
|
+
border-collapse:collapse;
|
|
59
|
+
border-spacing:0;
|
|
60
|
+
margin:0 auto;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.soc td,.soc th{
|
|
64
|
+
border-collapse:collapse;
|
|
65
|
+
font-family:Arial,Helvetica,sans-serif;
|
|
66
|
+
overflow:hidden;
|
|
67
|
+
padding:8px;
|
|
68
|
+
word-break:normal;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.soc th{
|
|
72
|
+
font-weight:400;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.soc .soc-fa{
|
|
76
|
+
text-align:center;
|
|
77
|
+
vertical-align:middle;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
@media screen and (width <= 767px){
|
|
81
|
+
|
|
82
|
+
.soc,.soc col{
|
|
83
|
+
width:auto !important;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.soc-wrap{
|
|
87
|
+
margin:auto 0;
|
|
88
|
+
-webkit-overflow-scrolling:touch;
|
|
89
|
+
overflow-x:auto;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.logo{
|
|
94
|
+
display:block;
|
|
95
|
+
margin-left:auto;
|
|
96
|
+
margin-right:auto;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.index1{
|
|
100
|
+
font-style:italic;
|
|
101
|
+
font-weight:700;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.index1,.index2{
|
|
105
|
+
text-align:center;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.index2{
|
|
109
|
+
font-size:1.375em;
|
|
110
|
+
font-variant:small-caps;
|
|
111
|
+
line-height:1.75em;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.join{
|
|
115
|
+
font-weight:700;
|
|
116
|
+
text-align:center;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.bquote{
|
|
120
|
+
border-left:3px solid #9e9e9e;
|
|
121
|
+
font-style:italic;
|
|
122
|
+
margin-left:30px;
|
|
123
|
+
padding-left:10px;
|
|
124
|
+
}
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
html{
|
|
2
|
+
-webkit-text-size-adjust:100%;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
body{
|
|
6
|
+
margin:0;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
main{
|
|
10
|
+
display:block;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
h1{
|
|
14
|
+
font-size:2em;
|
|
15
|
+
margin:.67em 0;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
hr{
|
|
19
|
+
box-sizing:content-box;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
pre{
|
|
23
|
+
font-family:monospace,monospace;
|
|
24
|
+
font-size:1em;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
a{
|
|
28
|
+
background-color:transparent;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
abbr[title]{
|
|
32
|
+
border-bottom:none;
|
|
33
|
+
text-decoration:underline;
|
|
34
|
+
text-decoration:underline dotted;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
b,strong{
|
|
38
|
+
font-weight:bolder;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
code,kbd,samp{
|
|
42
|
+
font-family:monospace,monospace;
|
|
43
|
+
font-size:1em;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
small{
|
|
47
|
+
font-size:80%;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
sub,sup{
|
|
51
|
+
font-size:75%;
|
|
52
|
+
line-height:0;
|
|
53
|
+
position:relative;
|
|
54
|
+
vertical-align:baseline;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
sub{
|
|
58
|
+
bottom:-.25em;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
sup{
|
|
62
|
+
top:-.5em;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
img{
|
|
66
|
+
border-style:none;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
button,input,optgroup,select,textarea{
|
|
70
|
+
font-family:inherit;
|
|
71
|
+
font-size:100%;
|
|
72
|
+
line-height:1.15;
|
|
73
|
+
margin:0;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
button,input{
|
|
77
|
+
overflow:visible;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
button,select{
|
|
81
|
+
text-transform:none;
|
|
82
|
+
}
|
|
83
|
+
[type=button],[type=reset],[type=submit],button{
|
|
84
|
+
-webkit-appearance:button;
|
|
85
|
+
appearance:button;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{
|
|
89
|
+
border-style:none;
|
|
90
|
+
padding:0;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{
|
|
94
|
+
outline:1px dotted ButtonText;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
fieldset{
|
|
98
|
+
padding:.35em .75em .625em;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
legend{
|
|
102
|
+
box-sizing:border-box;
|
|
103
|
+
color:inherit;
|
|
104
|
+
display:table;
|
|
105
|
+
max-width:100%;
|
|
106
|
+
padding:0;
|
|
107
|
+
white-space:normal;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
progress{
|
|
111
|
+
vertical-align:baseline;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
textarea{
|
|
115
|
+
overflow:auto;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
[type=checkbox],[type=radio]{
|
|
119
|
+
box-sizing:border-box;
|
|
120
|
+
padding:0;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{
|
|
124
|
+
height:auto;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
[type=search]{
|
|
128
|
+
-webkit-appearance:textfield;
|
|
129
|
+
appearance:textfield;
|
|
130
|
+
outline-offset:-2px;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
[type=search]::-webkit-search-decoration{
|
|
134
|
+
-webkit-appearance:none;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
::-webkit-file-upload-button{
|
|
138
|
+
-webkit-appearance:button;
|
|
139
|
+
font:inherit;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
details{
|
|
143
|
+
display:block;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
summary{
|
|
147
|
+
display:list-item;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
template{
|
|
151
|
+
display:none;
|
|
152
|
+
}
|
package/css/style.css
ADDED
|
@@ -0,0 +1,279 @@
|
|
|
1
|
+
html{
|
|
2
|
+
color:#222;
|
|
3
|
+
font-size:1em;
|
|
4
|
+
line-height:1.4;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
::-moz-selection{
|
|
8
|
+
background:#191919;
|
|
9
|
+
text-shadow:none;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
::selection{
|
|
13
|
+
background:#191919;
|
|
14
|
+
text-shadow:none;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
hr{
|
|
18
|
+
border:0;
|
|
19
|
+
border-top:1px solid #ccc;
|
|
20
|
+
display:block;
|
|
21
|
+
height:1px;
|
|
22
|
+
margin:1em 0;
|
|
23
|
+
overflow:visible;
|
|
24
|
+
padding:0;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
audio,canvas,iframe,img,svg,video{
|
|
28
|
+
vertical-align:middle;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
fieldset{
|
|
32
|
+
border:0;
|
|
33
|
+
margin:0;
|
|
34
|
+
padding:0;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
textarea{
|
|
38
|
+
resize:vertical;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
body{
|
|
42
|
+
background-color:#191919;
|
|
43
|
+
color:#fafafa;
|
|
44
|
+
font-family:Arial,Helvetica,sans-serif;
|
|
45
|
+
margin:10px;
|
|
46
|
+
}
|
|
47
|
+
a{
|
|
48
|
+
text-decoration:none;
|
|
49
|
+
}
|
|
50
|
+
a:link{
|
|
51
|
+
color:#ffc627;
|
|
52
|
+
}
|
|
53
|
+
a:hover{
|
|
54
|
+
color:#ffc627;
|
|
55
|
+
text-decoration:underline;
|
|
56
|
+
}
|
|
57
|
+
a:active{
|
|
58
|
+
color:#ffc627;
|
|
59
|
+
text-decoration:underline;
|
|
60
|
+
}
|
|
61
|
+
a:focus{
|
|
62
|
+
background-color:#ffc627;
|
|
63
|
+
color:#191919;
|
|
64
|
+
}
|
|
65
|
+
a:visited{
|
|
66
|
+
color:#7f6227;
|
|
67
|
+
}
|
|
68
|
+
a:visited:hover{
|
|
69
|
+
color:#7f6227;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.center-nav{
|
|
73
|
+
font-size:.875em;
|
|
74
|
+
padding:10px;
|
|
75
|
+
}
|
|
76
|
+
.block,.center-nav{
|
|
77
|
+
line-height:1.125em;
|
|
78
|
+
text-align:center;
|
|
79
|
+
}
|
|
80
|
+
.block{
|
|
81
|
+
background:none;
|
|
82
|
+
border:none;
|
|
83
|
+
border-radius:0;
|
|
84
|
+
font-size:.75em;
|
|
85
|
+
height:50vh;
|
|
86
|
+
outline:none;
|
|
87
|
+
resize:none;
|
|
88
|
+
width:100%;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.prewrap{
|
|
92
|
+
display:block;
|
|
93
|
+
white-space:pre-wrap;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.emphasis{
|
|
97
|
+
font-style:italic;
|
|
98
|
+
font-weight:700;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.hr-styled{
|
|
102
|
+
margin:auto;
|
|
103
|
+
width:75%;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.center-text{
|
|
107
|
+
text-align:center;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.bnav{
|
|
111
|
+
border-collapse:collapse;
|
|
112
|
+
border-spacing:0;
|
|
113
|
+
margin:0 auto;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.bnav td{
|
|
117
|
+
font-weight:700;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.bnav td,.bnav th{
|
|
121
|
+
border-style:none;
|
|
122
|
+
font-family:Arial,Helvetica,sans-serif;
|
|
123
|
+
font-size:.875em;
|
|
124
|
+
line-height:1.125em;
|
|
125
|
+
overflow:hidden;
|
|
126
|
+
padding:10px;
|
|
127
|
+
word-break:normal;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.bnav .bnav-cell{
|
|
131
|
+
align-content:center;
|
|
132
|
+
text-align:center;
|
|
133
|
+
vertical-align:middle;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
@media screen and (width <= 767px){
|
|
137
|
+
|
|
138
|
+
.bnav,.bnav col{
|
|
139
|
+
width:auto !important;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.bnav-wrap{
|
|
143
|
+
margin:auto 0;
|
|
144
|
+
-webkit-overflow-scrolling:touch;
|
|
145
|
+
overflow-x:auto;
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.bnav2{
|
|
150
|
+
border-collapse:collapse;
|
|
151
|
+
border-spacing:0;
|
|
152
|
+
margin:0 auto;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.bnav2 td{
|
|
156
|
+
font-weight:700;
|
|
157
|
+
padding:10px;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.bnav2 td,.bnav2 th{
|
|
161
|
+
border-style:none;
|
|
162
|
+
font-family:Arial,Helvetica,sans-serif;
|
|
163
|
+
font-size:.875em;
|
|
164
|
+
line-height:1.125em;
|
|
165
|
+
overflow:hidden;
|
|
166
|
+
word-break:normal;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.bnav2 th{
|
|
170
|
+
padding:12px;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.bnav2 .bnav2-cell{
|
|
174
|
+
align-content:center;
|
|
175
|
+
text-align:center;
|
|
176
|
+
vertical-align:middle;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
@media screen and (width <= 767px){
|
|
180
|
+
|
|
181
|
+
.bnav2,.bnav2 col{
|
|
182
|
+
width:auto !important;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.bnav2-wrap{
|
|
186
|
+
margin:auto 0;
|
|
187
|
+
-webkit-overflow-scrolling:touch;
|
|
188
|
+
overflow-x:auto;
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.copyright{
|
|
193
|
+
font-size:.75em;
|
|
194
|
+
line-height:1.125em;
|
|
195
|
+
text-align:center;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.hidden,[hidden]{
|
|
199
|
+
display:none !important;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
.visually-hidden{
|
|
203
|
+
border:0;
|
|
204
|
+
clip:rect(0, 0, 0, 0);
|
|
205
|
+
height:1px;
|
|
206
|
+
margin:-1px;
|
|
207
|
+
overflow:hidden;
|
|
208
|
+
padding:0;
|
|
209
|
+
position:absolute;
|
|
210
|
+
white-space:nowrap;
|
|
211
|
+
width:1px;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
.visually-hidden.focusable:active,.visually-hidden.focusable:focus{
|
|
215
|
+
clip:auto;
|
|
216
|
+
height:auto;
|
|
217
|
+
margin:0;
|
|
218
|
+
overflow:visible;
|
|
219
|
+
position:static;
|
|
220
|
+
white-space:inherit;
|
|
221
|
+
width:auto;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
.invisible{
|
|
225
|
+
visibility:hidden;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.clearfix:after,.clearfix:before{
|
|
229
|
+
content:"";
|
|
230
|
+
display:table;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.clearfix:after{
|
|
234
|
+
clear:both;
|
|
235
|
+
}
|
|
236
|
+
@media print{
|
|
237
|
+
*,:after,:before{
|
|
238
|
+
background:#fff !important;
|
|
239
|
+
box-shadow:none !important;
|
|
240
|
+
color:#000 !important;
|
|
241
|
+
text-shadow:none !important;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
a,a:visited{
|
|
245
|
+
text-decoration:underline;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
a[href]:after{
|
|
249
|
+
content:" (" attr(href) ")";
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
abbr[title]:after{
|
|
253
|
+
content:" (" attr(title) ")";
|
|
254
|
+
}
|
|
255
|
+
a[href^="#"]:after,a[href^="javascript:"]:after{
|
|
256
|
+
content:"";
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
pre{
|
|
260
|
+
white-space:pre-wrap !important;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
blockquote,pre{
|
|
264
|
+
border:1px solid #999;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
blockquote,img,pre,tr{
|
|
268
|
+
page-break-inside:avoid;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
h2,h3,p{
|
|
272
|
+
orphans:3;
|
|
273
|
+
widows:3;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
h2,h3{
|
|
277
|
+
page-break-after:avoid;
|
|
278
|
+
}
|
|
279
|
+
}
|
package/favicon-180.png
ADDED
|
Binary file
|
package/favicon-192.png
ADDED
|
Binary file
|
package/favicon-512.png
ADDED
|
Binary file
|
package/favicon.ico
ADDED
|
Binary file
|