@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/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
+ }
Binary file
Binary file
Binary file
package/favicon.ico ADDED
Binary file