@networkpro/legal 0.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/404.html +106 -0
- package/CNAME +1 -0
- package/LICENSE.md +304 -0
- package/PRIVACY.md +247 -0
- package/README.md +76 -0
- package/TERMS.md +187 -0
- package/css/default.css +85 -0
- package/css/index.css +117 -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-og-1200x630.png +0 -0
- package/img/logo-transparent.png +0 -0
- package/img/logo.png +0 -0
- package/index.html +250 -0
- package/index.html.br +0 -0
- package/js/app.2cff4bf4feb7f478a264.js +10 -0
- package/js/runtime.69afa8e03e74c9c3671e.js +45 -0
- package/js/vendor/.gitkeep +0 -0
- package/package.json +87 -0
- package/robots.txt +12 -0
- package/site.webmanifest +25 -0
- package/sitemap.xml +91 -0
- package/terms.html +661 -0
- package/terms.html.br +0 -0
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
|