@networkpro/web 0.10.1 → 0.10.6
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 +65 -5
- package/css/default.css +1 -152
- package/css/index.css +1 -139
- package/css/normalize.css +1 -173
- package/css/style.css +1 -312
- package/html/spotlight.html +126 -406
- package/html/spotlight.html.br +0 -0
- package/html/spotlight.html.gz +0 -0
- package/index.html +248 -4
- package/index.html.br +0 -0
- package/index.html.gz +0 -0
- package/js/app.2f84ee2b7813ca71b913.js +1 -0
- package/js/runtime.52b1ac291305b90de3df.js +1 -0
- package/legal.html +519 -4
- package/legal.html.br +0 -0
- package/legal.html.gz +0 -0
- package/package.json +11 -7
- package/terms-of-use.html +325 -4
- package/terms-of-use.html.br +0 -0
- package/terms-of-use.html.gz +0 -0
- package/js/app.eeddff1dcc63d8fea0fa.js +0 -120
- package/js/runtime.476456c89f9919bd45a9.js +0 -13
package/css/style.css
CHANGED
|
@@ -1,312 +1 @@
|
|
|
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,
|
|
28
|
-
canvas,
|
|
29
|
-
iframe,
|
|
30
|
-
img,
|
|
31
|
-
svg,
|
|
32
|
-
video{
|
|
33
|
-
vertical-align:middle;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
fieldset{
|
|
37
|
-
border:0;
|
|
38
|
-
margin:0;
|
|
39
|
-
padding:0;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
textarea{
|
|
43
|
-
resize:vertical;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
body{
|
|
47
|
-
background-color:#191919;
|
|
48
|
-
color:#fafafa;
|
|
49
|
-
font-family:Arial, Helvetica, sans-serif;
|
|
50
|
-
margin:10px;
|
|
51
|
-
}
|
|
52
|
-
a{
|
|
53
|
-
text-decoration:none;
|
|
54
|
-
}
|
|
55
|
-
a:link{
|
|
56
|
-
color:#ffc627;
|
|
57
|
-
}
|
|
58
|
-
a:hover{
|
|
59
|
-
color:#ffc627;
|
|
60
|
-
text-decoration:underline;
|
|
61
|
-
}
|
|
62
|
-
a:active{
|
|
63
|
-
color:#ffc627;
|
|
64
|
-
text-decoration:underline;
|
|
65
|
-
}
|
|
66
|
-
a:focus{
|
|
67
|
-
background-color:#ffc627;
|
|
68
|
-
color:#191919;
|
|
69
|
-
}
|
|
70
|
-
a:visited{
|
|
71
|
-
color:#7f6227;
|
|
72
|
-
}
|
|
73
|
-
a:visited:hover{
|
|
74
|
-
color:#7f6227;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
.center-nav{
|
|
78
|
-
font-size:.875em;
|
|
79
|
-
line-height:1.125em;
|
|
80
|
-
padding:10px;
|
|
81
|
-
text-align:center;
|
|
82
|
-
}
|
|
83
|
-
.block{
|
|
84
|
-
background:none;
|
|
85
|
-
border:none;
|
|
86
|
-
border-radius:0;
|
|
87
|
-
font-size:.75em;
|
|
88
|
-
height:50vh;
|
|
89
|
-
line-height:1.125em;
|
|
90
|
-
outline:none;
|
|
91
|
-
resize:none;
|
|
92
|
-
width:100%;
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
.prewrap{
|
|
96
|
-
display:block;
|
|
97
|
-
white-space:pre-wrap;
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
.emphasis{
|
|
101
|
-
font-style:italic;
|
|
102
|
-
font-weight:bold;
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
.hr-styled{
|
|
106
|
-
margin:auto;
|
|
107
|
-
width:75%;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
.center-text{
|
|
111
|
-
text-align:center;
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
.bnav{
|
|
115
|
-
border-collapse:collapse;
|
|
116
|
-
border-spacing:0;
|
|
117
|
-
margin:0 auto;
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
.bnav td{
|
|
121
|
-
border-style:none;
|
|
122
|
-
font-family:Arial, Helvetica, sans-serif;
|
|
123
|
-
font-size:.875em;
|
|
124
|
-
font-weight:bold;
|
|
125
|
-
line-height:1.125em;
|
|
126
|
-
overflow:hidden;
|
|
127
|
-
padding:10px;
|
|
128
|
-
word-break:normal;
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
.bnav th{
|
|
132
|
-
border-style:none;
|
|
133
|
-
font-family:Arial, Helvetica, sans-serif;
|
|
134
|
-
font-size:.875em;
|
|
135
|
-
line-height:1.125em;
|
|
136
|
-
overflow:hidden;
|
|
137
|
-
padding:10px;
|
|
138
|
-
word-break:normal;
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
.bnav .bnav-cell{
|
|
142
|
-
align-content:center;
|
|
143
|
-
text-align:center;
|
|
144
|
-
vertical-align:middle;
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
@media screen and (width <= 767px){
|
|
148
|
-
.bnav{
|
|
149
|
-
width:auto !important;
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
.bnav col{
|
|
153
|
-
width:auto !important;
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
.bnav-wrap{
|
|
157
|
-
margin:auto 0;
|
|
158
|
-
-webkit-overflow-scrolling:touch;
|
|
159
|
-
overflow-x:auto;
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
.bnav2{
|
|
164
|
-
border-collapse:collapse;
|
|
165
|
-
border-spacing:0;
|
|
166
|
-
margin:0 auto;
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
.bnav2 td{
|
|
170
|
-
border-style:none;
|
|
171
|
-
font-family:Arial, Helvetica, sans-serif;
|
|
172
|
-
font-size:.875em;
|
|
173
|
-
font-weight:bold;
|
|
174
|
-
line-height:1.125em;
|
|
175
|
-
overflow:hidden;
|
|
176
|
-
padding:10px;
|
|
177
|
-
word-break:normal;
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
.bnav2 th{
|
|
181
|
-
border-style:none;
|
|
182
|
-
font-family:Arial, Helvetica, sans-serif;
|
|
183
|
-
font-size:.875em;
|
|
184
|
-
line-height:1.125em;
|
|
185
|
-
overflow:hidden;
|
|
186
|
-
padding:12px;
|
|
187
|
-
word-break:normal;
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
.bnav2 .bnav2-cell{
|
|
191
|
-
align-content:center;
|
|
192
|
-
text-align:center;
|
|
193
|
-
vertical-align:middle;
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
@media screen and (width <= 767px){
|
|
197
|
-
.bnav2{
|
|
198
|
-
width:auto !important;
|
|
199
|
-
}
|
|
200
|
-
|
|
201
|
-
.bnav2 col{
|
|
202
|
-
width:auto !important;
|
|
203
|
-
}
|
|
204
|
-
|
|
205
|
-
.bnav2-wrap{
|
|
206
|
-
margin:auto 0;
|
|
207
|
-
-webkit-overflow-scrolling:touch;
|
|
208
|
-
overflow-x:auto;
|
|
209
|
-
}
|
|
210
|
-
}
|
|
211
|
-
|
|
212
|
-
.copyright{
|
|
213
|
-
font-size:.75em;
|
|
214
|
-
line-height:1.125em;
|
|
215
|
-
text-align:center;
|
|
216
|
-
}
|
|
217
|
-
|
|
218
|
-
.hidden,
|
|
219
|
-
[hidden]{
|
|
220
|
-
display:none !important;
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
.visually-hidden{
|
|
224
|
-
border:0;
|
|
225
|
-
clip:rect(0, 0, 0, 0);
|
|
226
|
-
height:1px;
|
|
227
|
-
margin:-1px;
|
|
228
|
-
overflow:hidden;
|
|
229
|
-
padding:0;
|
|
230
|
-
position:absolute;
|
|
231
|
-
white-space:nowrap;
|
|
232
|
-
width:1px;
|
|
233
|
-
}
|
|
234
|
-
|
|
235
|
-
.visually-hidden.focusable:active,
|
|
236
|
-
.visually-hidden.focusable:focus{
|
|
237
|
-
clip:auto;
|
|
238
|
-
height:auto;
|
|
239
|
-
margin:0;
|
|
240
|
-
overflow:visible;
|
|
241
|
-
position:static;
|
|
242
|
-
white-space:inherit;
|
|
243
|
-
width:auto;
|
|
244
|
-
}
|
|
245
|
-
|
|
246
|
-
.invisible{
|
|
247
|
-
visibility:hidden;
|
|
248
|
-
}
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
.clearfix::after,.clearfix::before{
|
|
252
|
-
content:"";
|
|
253
|
-
display:table;
|
|
254
|
-
}
|
|
255
|
-
|
|
256
|
-
.clearfix::after{
|
|
257
|
-
clear:both;
|
|
258
|
-
}
|
|
259
|
-
@media print{
|
|
260
|
-
*,
|
|
261
|
-
*::after,
|
|
262
|
-
*::before{
|
|
263
|
-
background:#fff !important;
|
|
264
|
-
color:#000 !important;
|
|
265
|
-
box-shadow:none !important;
|
|
266
|
-
text-shadow:none !important;
|
|
267
|
-
}
|
|
268
|
-
|
|
269
|
-
a,
|
|
270
|
-
a:visited{
|
|
271
|
-
text-decoration:underline;
|
|
272
|
-
}
|
|
273
|
-
|
|
274
|
-
a[href]::after{
|
|
275
|
-
content:" (" attr(href) ")";
|
|
276
|
-
}
|
|
277
|
-
|
|
278
|
-
abbr[title]::after{
|
|
279
|
-
content:" (" attr(title) ")";
|
|
280
|
-
}
|
|
281
|
-
a[href^="#"]::after,
|
|
282
|
-
a[href^="javascript:"]::after{
|
|
283
|
-
content:"";
|
|
284
|
-
}
|
|
285
|
-
|
|
286
|
-
pre{
|
|
287
|
-
white-space:pre-wrap !important;
|
|
288
|
-
}
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
blockquote,pre{
|
|
292
|
-
border:1px solid #999;
|
|
293
|
-
page-break-inside:avoid;
|
|
294
|
-
}
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
img,tr{
|
|
298
|
-
page-break-inside:avoid;
|
|
299
|
-
}
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
h2,
|
|
303
|
-
h3,p{
|
|
304
|
-
orphans:3;
|
|
305
|
-
widows:3;
|
|
306
|
-
}
|
|
307
|
-
|
|
308
|
-
h2,
|
|
309
|
-
h3{
|
|
310
|
-
page-break-after:avoid;
|
|
311
|
-
}
|
|
312
|
-
}
|
|
1
|
+
html{color:#222;font-size:1em;line-height:1.4}::-moz-selection{background:#191919;text-shadow:none}::selection{background:#191919;text-shadow:none}hr{border:0;border-top:1px solid #ccc;display:block;height:1px;margin:1em 0;overflow:visible;padding:0}audio,canvas,iframe,img,svg,video{vertical-align:middle}fieldset{border:0;margin:0;padding:0}textarea{resize:vertical}body{background-color:#191919;color:#fafafa;font-family:Arial,Helvetica,sans-serif;margin:10px}a{text-decoration:none}a:link{color:#ffc627}a:hover{color:#ffc627;text-decoration:underline}a:active{color:#ffc627;text-decoration:underline}a:focus{background-color:#ffc627;color:#191919}a:visited{color:#7f6227}a:visited:hover{color:#7f6227}.center-nav{font-size:.875em;padding:10px;text-align:center}.block,.center-nav{line-height:1.125em}.block{background:none;border:none;border-radius:0;font-size:.75em;height:50vh;outline:none;resize:none;width:100%}.prewrap{display:block;white-space:pre-wrap}.emphasis{font-style:italic;font-weight:700}.hr-styled{margin:auto;width:75%}.center-text{text-align:center}.bnav{border-collapse:collapse;border-spacing:0;margin:0 auto}.bnav td{font-weight:700}.bnav td,.bnav th{border-style:none;font-family:Arial,Helvetica,sans-serif;font-size:.875em;line-height:1.125em;overflow:hidden;padding:10px;word-break:normal}.bnav .bnav-cell{align-content:center;text-align:center;vertical-align:middle}@media screen and (width <= 767px){.bnav,.bnav col{width:auto!important}.bnav-wrap{margin:auto 0;-webkit-overflow-scrolling:touch;overflow-x:auto}}.bnav2{border-collapse:collapse;border-spacing:0;margin:0 auto}.bnav2 td{font-weight:700;padding:10px}.bnav2 td,.bnav2 th{border-style:none;font-family:Arial,Helvetica,sans-serif;font-size:.875em;line-height:1.125em;overflow:hidden;word-break:normal}.bnav2 th{padding:12px}.bnav2 .bnav2-cell{align-content:center;text-align:center;vertical-align:middle}@media screen and (width <= 767px){.bnav2,.bnav2 col{width:auto!important}.bnav2-wrap{margin:auto 0;-webkit-overflow-scrolling:touch;overflow-x:auto}}.copyright{font-size:.75em;line-height:1.125em;text-align:center}.hidden,[hidden]{display:none!important}.visually-hidden{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.visually-hidden.focusable:active,.visually-hidden.focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;white-space:inherit;width:auto}.invisible{visibility:hidden}.clearfix:after,.clearfix:before{content:"";display:table}.clearfix:after{clear:both}@media print{*,:after,:before{background:#fff!important;box-shadow:none!important;color:#000!important;text-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #999}blockquote,img,pre,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}}
|