@gufo-labs/font 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.
Binary file
package/README.md ADDED
@@ -0,0 +1,49 @@
1
+ # Gufo Font
2
+
3
+ **Telecom and IT-oriented icon font.**
4
+
5
+ ---
6
+
7
+ **Documentation**: [https://docs.gufolabs.com/gufo_loader/](https://docs.gufolabs.com/gufo_loader/)
8
+
9
+ **Source Code**: [https://github.com/gufolabs/gufo_loader/](https://github.com/gufolabs/gufo_loader/)
10
+
11
+ ---
12
+ [![License](https://img.shields.io/badge/License-BSD_3--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)
13
+ [![License: CC BY-ND 4.0](https://img.shields.io/badge/License-CC%20BY--ND%204.0-lightgrey.svg)](https://creativecommons.org/licenses/by-nd/4.0/)
14
+ ![Sponsors](https://img.shields.io/github/sponsors/gufolabs)
15
+
16
+ ## License
17
+
18
+ ### Source files / scripts
19
+ All source files, scripts, and tools (excluding compiled fonts) are licensed under the **BSD 3-Clause License**.
20
+ You are free to use, modify, and redistribute these files. Contributions are welcome, but official font binaries are generated only by Gufo Labs.
21
+
22
+ ### Compiled fonts (`woff2`)
23
+
24
+ Official compiled fonts in `webfonts/` are licensed under **[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0/)**.
25
+
26
+ - Free to use, including commercially
27
+ - Modifications or redistribution of modified fonts are not allowed
28
+
29
+ This ensures all official releases are centralized and controlled.
30
+
31
+ ## On Gufo Stack
32
+
33
+ This product is a part of [Gufo Stack][Gufo Stack] - the collaborative effort
34
+ led by [Gufo Labs][Gufo Labs]. Our goal is to create a robust and flexible
35
+ set of tools to create network management software and automate
36
+ routine administration tasks.
37
+
38
+ To do this, we extract the key technologies that have proven themselves
39
+ in the [NOC][NOC] and bring them as separate packages. Then we work on API,
40
+ performance tuning, documentation, and testing. The [NOC][NOC] uses the final result
41
+ as the external dependencies.
42
+
43
+ [Gufo Stack][Gufo Stack] makes the [NOC][NOC] better, and this is our primary task. But other products
44
+ can benefit from [Gufo Stack][Gufo Stack] too. So we believe that our effort will make
45
+ the other network management products better.
46
+
47
+ [Gufo Labs]: https://gufolabs.com/
48
+ [Gufo Stack]: https://docs.gufolabs.com/
49
+ [NOC]: https://getnoc.com/
package/gufo-font.css ADDED
@@ -0,0 +1,644 @@
1
+ @charset "UTF-8";
2
+ @font-face {
3
+ font-family: "GufoFont";
4
+ src: url("GufoFont-Regular.4a7d4bcb.woff2") format("woff2");
5
+ font-weight: normal;
6
+ font-style: normal;
7
+ }
8
+ .gf {
9
+ font-family: "GufoFont";
10
+ font-style: normal;
11
+ font-weight: normal;
12
+ display: inline-block;
13
+ --gf-stencil-size: 64px;
14
+ font-size: var(--gf-stencil-size);
15
+ width: var(--gf-stencil-size);
16
+ margin: 0;
17
+ padding: 0;
18
+ transform-origin: center center;
19
+ }
20
+
21
+ @font-palette-values --gf-unknown {
22
+ font-family: "GufoFont";
23
+ override-colors: 0 #7f8c8d;
24
+ }
25
+ .gf.gf-unknown {
26
+ font-palette: --gf-unknown;
27
+ color: #7f8c8d;
28
+ }
29
+
30
+ @font-palette-values --gf-ok {
31
+ font-family: "GufoFont";
32
+ override-colors: 0 #16a085;
33
+ }
34
+ .gf.gf-ok {
35
+ font-palette: --gf-ok;
36
+ color: #16a085;
37
+ }
38
+
39
+ @font-palette-values --gf-warn {
40
+ font-family: "GufoFont";
41
+ override-colors: 0 #f1c40f;
42
+ }
43
+ .gf.gf-warn {
44
+ font-palette: --gf-warn;
45
+ color: #f1c40f;
46
+ }
47
+
48
+ @font-palette-values --gf-fail {
49
+ font-family: "GufoFont";
50
+ override-colors: 0 #c0392b;
51
+ }
52
+ .gf.gf-fail {
53
+ font-palette: --gf-fail;
54
+ color: #c0392b;
55
+ }
56
+
57
+ @font-palette-values --gf-black {
58
+ font-family: "GufoFont";
59
+ override-colors: 0 #000000;
60
+ }
61
+ .gf.gf-black {
62
+ font-palette: --gf-black;
63
+ color: #000000;
64
+ }
65
+
66
+ @font-palette-values --gf-write {
67
+ font-family: "GufoFont";
68
+ override-colors: 0 #ffffff;
69
+ }
70
+ .gf.gf-write {
71
+ font-palette: --gf-write;
72
+ color: #ffffff;
73
+ }
74
+
75
+ @font-palette-values --gf-turquoise {
76
+ font-family: "GufoFont";
77
+ override-colors: 0 #1abc9c;
78
+ }
79
+ .gf.gf-turquoise {
80
+ font-palette: --gf-turquoise;
81
+ color: #1abc9c;
82
+ }
83
+
84
+ @font-palette-values --gf-emerald {
85
+ font-family: "GufoFont";
86
+ override-colors: 0 #2ecc71;
87
+ }
88
+ .gf.gf-emerald {
89
+ font-palette: --gf-emerald;
90
+ color: #2ecc71;
91
+ }
92
+
93
+ @font-palette-values --gf-green-sea {
94
+ font-family: "GufoFont";
95
+ override-colors: 0 #16a085;
96
+ }
97
+ .gf.gf-green-sea {
98
+ font-palette: --gf-green-sea;
99
+ color: #16a085;
100
+ }
101
+
102
+ @font-palette-values --gf-nephritis {
103
+ font-family: "GufoFont";
104
+ override-colors: 0 #27ae60;
105
+ }
106
+ .gf.gf-nephritis {
107
+ font-palette: --gf-nephritis;
108
+ color: #27ae60;
109
+ }
110
+
111
+ @font-palette-values --gf-sunflower {
112
+ font-family: "GufoFont";
113
+ override-colors: 0 #f1c40f;
114
+ }
115
+ .gf.gf-sunflower {
116
+ font-palette: --gf-sunflower;
117
+ color: #f1c40f;
118
+ }
119
+
120
+ @font-palette-values --gf-orange {
121
+ font-family: "GufoFont";
122
+ override-colors: 0 #f39c12;
123
+ }
124
+ .gf.gf-orange {
125
+ font-palette: --gf-orange;
126
+ color: #f39c12;
127
+ }
128
+
129
+ @font-palette-values --gf-carrot {
130
+ font-family: "GufoFont";
131
+ override-colors: 0 #e67e22;
132
+ }
133
+ .gf.gf-carrot {
134
+ font-palette: --gf-carrot;
135
+ color: #e67e22;
136
+ }
137
+
138
+ @font-palette-values --gf-pumpkin {
139
+ font-family: "GufoFont";
140
+ override-colors: 0 #d35400;
141
+ }
142
+ .gf.gf-pumpkin {
143
+ font-palette: --gf-pumpkin;
144
+ color: #d35400;
145
+ }
146
+
147
+ @font-palette-values --gf-peter-river {
148
+ font-family: "GufoFont";
149
+ override-colors: 0 #3498db;
150
+ }
151
+ .gf.gf-peter-river {
152
+ font-palette: --gf-peter-river;
153
+ color: #3498db;
154
+ }
155
+
156
+ @font-palette-values --gf-belize-hole {
157
+ font-family: "GufoFont";
158
+ override-colors: 0 #2980b9;
159
+ }
160
+ .gf.gf-belize-hole {
161
+ font-palette: --gf-belize-hole;
162
+ color: #2980b9;
163
+ }
164
+
165
+ @font-palette-values --gf-amethyst {
166
+ font-family: "GufoFont";
167
+ override-colors: 0 #9b59b6;
168
+ }
169
+ .gf.gf-amethyst {
170
+ font-palette: --gf-amethyst;
171
+ color: #9b59b6;
172
+ }
173
+
174
+ @font-palette-values --gf-wisteria {
175
+ font-family: "GufoFont";
176
+ override-colors: 0 #8e44ad;
177
+ }
178
+ .gf.gf-wisteria {
179
+ font-palette: --gf-wisteria;
180
+ color: #8e44ad;
181
+ }
182
+
183
+ @font-palette-values --gf-alizarin {
184
+ font-family: "GufoFont";
185
+ override-colors: 0 #e74c3c;
186
+ }
187
+ .gf.gf-alizarin {
188
+ font-palette: --gf-alizarin;
189
+ color: #e74c3c;
190
+ }
191
+
192
+ @font-palette-values --gf-pomegranade {
193
+ font-family: "GufoFont";
194
+ override-colors: 0 #c0392b;
195
+ }
196
+ .gf.gf-pomegranade {
197
+ font-palette: --gf-pomegranade;
198
+ color: #c0392b;
199
+ }
200
+
201
+ @font-palette-values --gf-clouds {
202
+ font-family: "GufoFont";
203
+ override-colors: 0 #ecf0f1;
204
+ }
205
+ .gf.gf-clouds {
206
+ font-palette: --gf-clouds;
207
+ color: #ecf0f1;
208
+ }
209
+
210
+ @font-palette-values --gf-silver {
211
+ font-family: "GufoFont";
212
+ override-colors: 0 #bdc3c7;
213
+ }
214
+ .gf.gf-silver {
215
+ font-palette: --gf-silver;
216
+ color: #bdc3c7;
217
+ }
218
+
219
+ @font-palette-values --gf-wet-asphalt {
220
+ font-family: "GufoFont";
221
+ override-colors: 0 #34495e;
222
+ }
223
+ .gf.gf-wet-asphalt {
224
+ font-palette: --gf-wet-asphalt;
225
+ color: #34495e;
226
+ }
227
+
228
+ @font-palette-values --gf-midnight-blue {
229
+ font-family: "GufoFont";
230
+ override-colors: 0 #2c3e50;
231
+ }
232
+ .gf.gf-midnight-blue {
233
+ font-palette: --gf-midnight-blue;
234
+ color: #2c3e50;
235
+ }
236
+
237
+ @font-palette-values --gf-concrete {
238
+ font-family: "GufoFont";
239
+ override-colors: 0 #95a5a6;
240
+ }
241
+ .gf.gf-concrete {
242
+ font-palette: --gf-concrete;
243
+ color: #95a5a6;
244
+ }
245
+
246
+ @font-palette-values --gf-asbestos {
247
+ font-family: "GufoFont";
248
+ override-colors: 0 #7f8c8d;
249
+ }
250
+ .gf.gf-asbestos {
251
+ font-palette: --gf-asbestos;
252
+ color: #7f8c8d;
253
+ }
254
+
255
+ .gf.gf-2x {
256
+ --gf-stencil-size: 128px;
257
+ }
258
+
259
+ .gf.gf-3x {
260
+ --gf-stencil-size: 192px;
261
+ }
262
+
263
+ .gf.gf-16px {
264
+ --gf-stencil-size: 16px;
265
+ }
266
+
267
+ .gf.gf-24px {
268
+ --gf-stencil-size: 24px;
269
+ }
270
+
271
+ .gf.gf-32px {
272
+ --gf-stencil-size: 32px;
273
+ }
274
+
275
+ .gf.gf-48px {
276
+ --gf-stencil-size: 48px;
277
+ }
278
+
279
+ .gf.gf-r90 {
280
+ transform: rotate(90deg);
281
+ }
282
+
283
+ .gf.gf-r180 {
284
+ transform: rotate(180deg);
285
+ }
286
+
287
+ .gf.gf-r270 {
288
+ transform: rotate(270deg);
289
+ }
290
+
291
+ .gf-flip-v {
292
+ transform: scaleY(-1);
293
+ }
294
+
295
+ .gf-flip-h {
296
+ transform: scaleX(-1);
297
+ }
298
+
299
+ .gf-flip {
300
+ transform: scale(-1, -1);
301
+ }
302
+
303
+ .gf-stack {
304
+ position: relative;
305
+ display: inline-block;
306
+ width: 1em;
307
+ height: 1em;
308
+ vertical-align: middle;
309
+ }
310
+
311
+ .gf-stack > .gf {
312
+ position: absolute;
313
+ left: 50%;
314
+ top: 50%;
315
+ transform: translate(-50%, -50%);
316
+ line-height: 1em;
317
+ }
318
+
319
+ /* Superscript — shifts glyph upward and scales it down */
320
+ .gf-sup {
321
+ display: inline-block;
322
+ font-size: 0.5em;
323
+ vertical-align: super;
324
+ }
325
+
326
+ /* Subscript — shifts glyph downward and scales it down */
327
+ .gf-sub {
328
+ display: inline-block;
329
+ font-size: 0.5em;
330
+ vertical-align: sub;
331
+ }
332
+
333
+ .gf.brand-noc-s::before {
334
+ content: "\e001";
335
+ }
336
+ .gf.brand-gufolabs-s::before {
337
+ content: "\e003";
338
+ }
339
+ .gf.brand-sova-s::before {
340
+ content: "\e005";
341
+ }
342
+ .gf.circle::before {
343
+ content: "\e280";
344
+ }
345
+ .gf.circle-s::before {
346
+ content: "\e281";
347
+ }
348
+ .gf.circle-o::before {
349
+ content: "\e282";
350
+ }
351
+ .gf.rectangle::before {
352
+ content: "\e283";
353
+ }
354
+ .gf.rectangle-s::before {
355
+ content: "\e284";
356
+ }
357
+ .gf.rectangle-o::before {
358
+ content: "\e285";
359
+ }
360
+ .gf.circle-small::before {
361
+ content: "\e286";
362
+ }
363
+ .gf.circle-small-s::before {
364
+ content: "\e287";
365
+ }
366
+ .gf.circle-small-o::before {
367
+ content: "\e288";
368
+ }
369
+ .gf.rectangle-small::before {
370
+ content: "\e289";
371
+ }
372
+ .gf.rectangle-small-s::before {
373
+ content: "\e28a";
374
+ }
375
+ .gf.rectangle-small-o::before {
376
+ content: "\e28b";
377
+ }
378
+ .gf.star::before {
379
+ content: "\e28c";
380
+ }
381
+ .gf.star-s::before {
382
+ content: "\e28d";
383
+ }
384
+ .gf.star-o::before {
385
+ content: "\e28e";
386
+ }
387
+ .gf.star-small::before {
388
+ content: "\e28f";
389
+ }
390
+ .gf.star-small-s::before {
391
+ content: "\e290";
392
+ }
393
+ .gf.star-small-o::before {
394
+ content: "\e291";
395
+ }
396
+ .gf.ban-o::before {
397
+ content: "\e292";
398
+ }
399
+ .gf.triangle::before {
400
+ content: "\e293";
401
+ }
402
+ .gf.triangle-s::before {
403
+ content: "\e294";
404
+ }
405
+ .gf.triangle-o::before {
406
+ content: "\e295";
407
+ }
408
+ .gf.triangle-small::before {
409
+ content: "\e296";
410
+ }
411
+ .gf.triangle-small-s::before {
412
+ content: "\e297";
413
+ }
414
+ .gf.triangle-small-o::before {
415
+ content: "\e298";
416
+ }
417
+ .gf.copy-s::before {
418
+ content: "\e299";
419
+ }
420
+ .gf.copy-o::before {
421
+ content: "\e29a";
422
+ }
423
+ .gf.play::before {
424
+ content: "\e29b";
425
+ }
426
+ .gf.play-s::before {
427
+ content: "\e29c";
428
+ }
429
+ .gf.play-o::before {
430
+ content: "\e29d";
431
+ }
432
+ .gf.pause::before {
433
+ content: "\e29e";
434
+ }
435
+ .gf.pause-s::before {
436
+ content: "\e29f";
437
+ }
438
+ .gf.pause-o::before {
439
+ content: "\e2a0";
440
+ }
441
+ .gf.minus::before {
442
+ content: "\e2a1";
443
+ }
444
+ .gf.minus-s::before {
445
+ content: "\e2a2";
446
+ }
447
+ .gf.minus-o::before {
448
+ content: "\e2a3";
449
+ }
450
+ .gf.minus-small::before {
451
+ content: "\e2a4";
452
+ }
453
+ .gf.minus-small-s::before {
454
+ content: "\e2a5";
455
+ }
456
+ .gf.plus::before {
457
+ content: "\e2a6";
458
+ }
459
+ .gf.plus-s::before {
460
+ content: "\e2a7";
461
+ }
462
+ .gf.plus-o::before {
463
+ content: "\e2a8";
464
+ }
465
+ .gf.plus-small::before {
466
+ content: "\e2a9";
467
+ }
468
+ .gf.plus-small-s::before {
469
+ content: "\e2aa";
470
+ }
471
+ .gf.arrow-right::before {
472
+ content: "\e2ab";
473
+ }
474
+ .gf.arrow-right-s::before {
475
+ content: "\e2ac";
476
+ }
477
+ .gf.arrow-left::before {
478
+ content: "\e2ad";
479
+ }
480
+ .gf.arrow-left-s::before {
481
+ content: "\e2ae";
482
+ }
483
+ .gf.arrow-up::before {
484
+ content: "\e2af";
485
+ }
486
+ .gf.arrow-up-s::before {
487
+ content: "\e2b0";
488
+ }
489
+ .gf.arrow-down::before {
490
+ content: "\e2b1";
491
+ }
492
+ .gf.arrow-down-s::before {
493
+ content: "\e2b2";
494
+ }
495
+ .gf.check::before {
496
+ content: "\e2b3";
497
+ }
498
+ .gf.check-s::before {
499
+ content: "\e2b4";
500
+ }
501
+ .gf.power-off-s::before {
502
+ content: "\e2b6";
503
+ }
504
+ .gf.chevron-right::before {
505
+ content: "\e2b7";
506
+ }
507
+ .gf.chevron-right-s::before {
508
+ content: "\e2b8";
509
+ }
510
+ .gf.chevron-up::before {
511
+ content: "\e2b9";
512
+ }
513
+ .gf.chevron-up-s::before {
514
+ content: "\e2ba";
515
+ }
516
+ .gf.chevron-left::before {
517
+ content: "\e2bb";
518
+ }
519
+ .gf.chevron-left-s::before {
520
+ content: "\e2bc";
521
+ }
522
+ .gf.chevron-down::before {
523
+ content: "\e2bd";
524
+ }
525
+ .gf.chevron-down-s::before {
526
+ content: "\e2be";
527
+ }
528
+ .gf.chevrons-right::before {
529
+ content: "\e2bf";
530
+ }
531
+ .gf.chevrons-right-s::before {
532
+ content: "\e2c0";
533
+ }
534
+ .gf.chevrons-up::before {
535
+ content: "\e2c1";
536
+ }
537
+ .gf.chevrons-up-s::before {
538
+ content: "\e2c2";
539
+ }
540
+ .gf.chevrons-left::before {
541
+ content: "\e2c3";
542
+ }
543
+ .gf.chevrons-left-s::before {
544
+ content: "\e2c4";
545
+ }
546
+ .gf.chevrons-down::before {
547
+ content: "\e2c5";
548
+ }
549
+ .gf.chevrons-down-s::before {
550
+ content: "\e2c6";
551
+ }
552
+ .gf.xmark::before {
553
+ content: "\e2c7";
554
+ }
555
+ .gf.xmark-s::before {
556
+ content: "\e2c8";
557
+ }
558
+ .gf.xmark-small::before {
559
+ content: "\e2c9";
560
+ }
561
+ .gf.xmark-small-s::before {
562
+ content: "\e2ca";
563
+ }
564
+ .gf.user::before {
565
+ content: "\e2cb";
566
+ }
567
+ .gf.user-s::before {
568
+ content: "\e2cc";
569
+ }
570
+ .gf.rotate-s::before {
571
+ content: "\e2cd";
572
+ }
573
+ .gf.rotate-left-s::before {
574
+ content: "\e2ce";
575
+ }
576
+ .gf.rotate-right-s::before {
577
+ content: "\e2cf";
578
+ }
579
+ .gf.heart::before {
580
+ content: "\e2d0";
581
+ }
582
+ .gf.heart-s::before {
583
+ content: "\e2d1";
584
+ }
585
+ .gf.heart-o::before {
586
+ content: "\e2d2";
587
+ }
588
+ .gf.bars-s::before {
589
+ content: "\e2d5";
590
+ }
591
+ .gf.file-s::before {
592
+ content: "\e2d7";
593
+ }
594
+ .gf.file-o::before {
595
+ content: "\e2d8";
596
+ }
597
+ .gf.database::before {
598
+ content: "\f000";
599
+ }
600
+ .gf.database-s::before {
601
+ content: "\f001";
602
+ }
603
+ .gf.internet::before {
604
+ content: "\f002";
605
+ }
606
+ .gf.fiber-optics-o::before {
607
+ content: "\f003";
608
+ }
609
+ .gf.cloud::before {
610
+ content: "\f004";
611
+ }
612
+ .gf.cloud-s::before {
613
+ content: "\f005";
614
+ }
615
+ .gf.cloud-o::before {
616
+ content: "\f006";
617
+ }
618
+ .gf.radiation::before {
619
+ content: "\f007";
620
+ }
621
+ .gf.radiation-s::before {
622
+ content: "\f008";
623
+ }
624
+ .gf.biohazard-s::before {
625
+ content: "\f00a";
626
+ }
627
+ .gf.bolt::before {
628
+ content: "\f00b";
629
+ }
630
+ .gf.bolt-s::before {
631
+ content: "\f00c";
632
+ }
633
+ .gf.lightning-bolt::before {
634
+ content: "\f00d";
635
+ }
636
+ .gf.lightning-bolt-s::before {
637
+ content: "\f00e";
638
+ }
639
+ .gf.cisco-router::before {
640
+ content: "\f22c";
641
+ }
642
+ .gf.cisco-workgroup-switch::before {
643
+ content: "\f23f";
644
+ }
@@ -0,0 +1 @@
1
+ @font-face{font-family:"GufoFont";src:url("GufoFont-Regular.4a7d4bcb.woff2") format("woff2");font-weight:normal;font-style:normal}.gf{font-family:"GufoFont";font-style:normal;font-weight:normal;display:inline-block;--gf-stencil-size: 64px;font-size:var(--gf-stencil-size);width:var(--gf-stencil-size);margin:0;padding:0;transform-origin:center center}@font-palette-values --gf-unknown{font-family:"GufoFont";override-colors:0 #7f8c8d}.gf.gf-unknown{font-palette:--gf-unknown;color:#7f8c8d}@font-palette-values --gf-ok{font-family:"GufoFont";override-colors:0 #16a085}.gf.gf-ok{font-palette:--gf-ok;color:#16a085}@font-palette-values --gf-warn{font-family:"GufoFont";override-colors:0 #f1c40f}.gf.gf-warn{font-palette:--gf-warn;color:#f1c40f}@font-palette-values --gf-fail{font-family:"GufoFont";override-colors:0 #c0392b}.gf.gf-fail{font-palette:--gf-fail;color:#c0392b}@font-palette-values --gf-black{font-family:"GufoFont";override-colors:0 #000}.gf.gf-black{font-palette:--gf-black;color:#000}@font-palette-values --gf-write{font-family:"GufoFont";override-colors:0 #fff}.gf.gf-write{font-palette:--gf-write;color:#fff}@font-palette-values --gf-turquoise{font-family:"GufoFont";override-colors:0 #1abc9c}.gf.gf-turquoise{font-palette:--gf-turquoise;color:#1abc9c}@font-palette-values --gf-emerald{font-family:"GufoFont";override-colors:0 #2ecc71}.gf.gf-emerald{font-palette:--gf-emerald;color:#2ecc71}@font-palette-values --gf-green-sea{font-family:"GufoFont";override-colors:0 #16a085}.gf.gf-green-sea{font-palette:--gf-green-sea;color:#16a085}@font-palette-values --gf-nephritis{font-family:"GufoFont";override-colors:0 #27ae60}.gf.gf-nephritis{font-palette:--gf-nephritis;color:#27ae60}@font-palette-values --gf-sunflower{font-family:"GufoFont";override-colors:0 #f1c40f}.gf.gf-sunflower{font-palette:--gf-sunflower;color:#f1c40f}@font-palette-values --gf-orange{font-family:"GufoFont";override-colors:0 #f39c12}.gf.gf-orange{font-palette:--gf-orange;color:#f39c12}@font-palette-values --gf-carrot{font-family:"GufoFont";override-colors:0 #e67e22}.gf.gf-carrot{font-palette:--gf-carrot;color:#e67e22}@font-palette-values --gf-pumpkin{font-family:"GufoFont";override-colors:0 #d35400}.gf.gf-pumpkin{font-palette:--gf-pumpkin;color:#d35400}@font-palette-values --gf-peter-river{font-family:"GufoFont";override-colors:0 #3498db}.gf.gf-peter-river{font-palette:--gf-peter-river;color:#3498db}@font-palette-values --gf-belize-hole{font-family:"GufoFont";override-colors:0 #2980b9}.gf.gf-belize-hole{font-palette:--gf-belize-hole;color:#2980b9}@font-palette-values --gf-amethyst{font-family:"GufoFont";override-colors:0 #9b59b6}.gf.gf-amethyst{font-palette:--gf-amethyst;color:#9b59b6}@font-palette-values --gf-wisteria{font-family:"GufoFont";override-colors:0 #8e44ad}.gf.gf-wisteria{font-palette:--gf-wisteria;color:#8e44ad}@font-palette-values --gf-alizarin{font-family:"GufoFont";override-colors:0 #e74c3c}.gf.gf-alizarin{font-palette:--gf-alizarin;color:#e74c3c}@font-palette-values --gf-pomegranade{font-family:"GufoFont";override-colors:0 #c0392b}.gf.gf-pomegranade{font-palette:--gf-pomegranade;color:#c0392b}@font-palette-values --gf-clouds{font-family:"GufoFont";override-colors:0 #ecf0f1}.gf.gf-clouds{font-palette:--gf-clouds;color:#ecf0f1}@font-palette-values --gf-silver{font-family:"GufoFont";override-colors:0 #bdc3c7}.gf.gf-silver{font-palette:--gf-silver;color:#bdc3c7}@font-palette-values --gf-wet-asphalt{font-family:"GufoFont";override-colors:0 #34495e}.gf.gf-wet-asphalt{font-palette:--gf-wet-asphalt;color:#34495e}@font-palette-values --gf-midnight-blue{font-family:"GufoFont";override-colors:0 #2c3e50}.gf.gf-midnight-blue{font-palette:--gf-midnight-blue;color:#2c3e50}@font-palette-values --gf-concrete{font-family:"GufoFont";override-colors:0 #95a5a6}.gf.gf-concrete{font-palette:--gf-concrete;color:#95a5a6}@font-palette-values --gf-asbestos{font-family:"GufoFont";override-colors:0 #7f8c8d}.gf.gf-asbestos{font-palette:--gf-asbestos;color:#7f8c8d}.gf.gf-2x{--gf-stencil-size: 128px}.gf.gf-3x{--gf-stencil-size: 192px}.gf.gf-16px{--gf-stencil-size: 16px}.gf.gf-24px{--gf-stencil-size: 24px}.gf.gf-32px{--gf-stencil-size: 32px}.gf.gf-48px{--gf-stencil-size: 48px}.gf.gf-r90{transform:rotate(90deg)}.gf.gf-r180{transform:rotate(180deg)}.gf.gf-r270{transform:rotate(270deg)}.gf-flip-v{transform:scaleY(-1)}.gf-flip-h{transform:scaleX(-1)}.gf-flip{transform:scale(-1, -1)}.gf-stack{position:relative;display:inline-block;width:1em;height:1em;vertical-align:middle}.gf-stack>.gf{position:absolute;left:50%;top:50%;transform:translate(-50%, -50%);line-height:1em}.gf-sup{display:inline-block;font-size:.5em;vertical-align:super}.gf-sub{display:inline-block;font-size:.5em;vertical-align:sub}.gf.brand-noc-s::before{content:""}.gf.brand-gufolabs-s::before{content:""}.gf.brand-sova-s::before{content:""}.gf.circle::before{content:""}.gf.circle-s::before{content:""}.gf.circle-o::before{content:""}.gf.rectangle::before{content:""}.gf.rectangle-s::before{content:""}.gf.rectangle-o::before{content:""}.gf.circle-small::before{content:""}.gf.circle-small-s::before{content:""}.gf.circle-small-o::before{content:""}.gf.rectangle-small::before{content:""}.gf.rectangle-small-s::before{content:""}.gf.rectangle-small-o::before{content:""}.gf.star::before{content:""}.gf.star-s::before{content:""}.gf.star-o::before{content:""}.gf.star-small::before{content:""}.gf.star-small-s::before{content:""}.gf.star-small-o::before{content:""}.gf.ban-o::before{content:""}.gf.triangle::before{content:""}.gf.triangle-s::before{content:""}.gf.triangle-o::before{content:""}.gf.triangle-small::before{content:""}.gf.triangle-small-s::before{content:""}.gf.triangle-small-o::before{content:""}.gf.copy-s::before{content:""}.gf.copy-o::before{content:""}.gf.play::before{content:""}.gf.play-s::before{content:""}.gf.play-o::before{content:""}.gf.pause::before{content:""}.gf.pause-s::before{content:""}.gf.pause-o::before{content:""}.gf.minus::before{content:""}.gf.minus-s::before{content:""}.gf.minus-o::before{content:""}.gf.minus-small::before{content:""}.gf.minus-small-s::before{content:""}.gf.plus::before{content:""}.gf.plus-s::before{content:""}.gf.plus-o::before{content:""}.gf.plus-small::before{content:""}.gf.plus-small-s::before{content:""}.gf.arrow-right::before{content:""}.gf.arrow-right-s::before{content:""}.gf.arrow-left::before{content:""}.gf.arrow-left-s::before{content:""}.gf.arrow-up::before{content:""}.gf.arrow-up-s::before{content:""}.gf.arrow-down::before{content:""}.gf.arrow-down-s::before{content:""}.gf.check::before{content:""}.gf.check-s::before{content:""}.gf.power-off-s::before{content:""}.gf.chevron-right::before{content:""}.gf.chevron-right-s::before{content:""}.gf.chevron-up::before{content:""}.gf.chevron-up-s::before{content:""}.gf.chevron-left::before{content:""}.gf.chevron-left-s::before{content:""}.gf.chevron-down::before{content:""}.gf.chevron-down-s::before{content:""}.gf.chevrons-right::before{content:""}.gf.chevrons-right-s::before{content:""}.gf.chevrons-up::before{content:""}.gf.chevrons-up-s::before{content:""}.gf.chevrons-left::before{content:""}.gf.chevrons-left-s::before{content:""}.gf.chevrons-down::before{content:""}.gf.chevrons-down-s::before{content:""}.gf.xmark::before{content:""}.gf.xmark-s::before{content:""}.gf.xmark-small::before{content:""}.gf.xmark-small-s::before{content:""}.gf.user::before{content:""}.gf.user-s::before{content:""}.gf.rotate-s::before{content:""}.gf.rotate-left-s::before{content:""}.gf.rotate-right-s::before{content:""}.gf.heart::before{content:""}.gf.heart-s::before{content:""}.gf.heart-o::before{content:""}.gf.bars-s::before{content:""}.gf.file-s::before{content:""}.gf.file-o::before{content:""}.gf.database::before{content:""}.gf.database-s::before{content:""}.gf.internet::before{content:""}.gf.fiber-optics-o::before{content:""}.gf.cloud::before{content:""}.gf.cloud-s::before{content:""}.gf.cloud-o::before{content:""}.gf.radiation::before{content:""}.gf.radiation-s::before{content:""}.gf.biohazard-s::before{content:""}.gf.bolt::before{content:""}.gf.bolt-s::before{content:""}.gf.lightning-bolt::before{content:""}.gf.lightning-bolt-s::before{content:""}.gf.cisco-router::before{content:""}.gf.cisco-workgroup-switch::before{content:""}/*# sourceMappingURL=gufo-font.min.css.map */
@@ -0,0 +1 @@
1
+ {"version":3,"sourceRoot":"","sources":["../../scss/_font.scss","../../scss/_core.scss","../../scss/_state.scss","../../scss/_vars.scss","../../scss/_colors.scss","../../scss/_scale.scss","../../scss/_rotate.scss","../../scss/_flip.scss","../../scss/_stack.scss","../../scss/_sub.scss","../../scss/_glyphs.scss"],"names":[],"mappings":"CAQA,WACI,uBACA,2DACA,mBACA,kBCJJ,IACI,uBACA,kBACA,mBACA,qBACA,wBACA,iCACA,6BACA,SACA,UACA,iECCI,YCVC,WDWD,gBACI,UAGR,eACI,0BACA,MAnBC,QAWL,6BACI,YCVC,WDWD,gBACI,UAGR,UACI,qBACA,MAnBC,QAWL,+BACI,YCVC,WDWD,gBACI,UAGR,YACI,uBACA,MAnBC,QAWL,+BACI,YCVC,WDWD,gBACI,UAGR,YACI,uBACA,MAnBC,QE6BL,gCACI,YD5BC,WC6BD,gBACI,OAGR,aACI,wBACA,MArCC,KA6BL,gCACI,YD5BC,WC6BD,gBACI,OAGR,aACI,wBACA,MArCC,KA6BL,oCACI,YD5BC,WC6BD,gBACI,UAGR,iBACI,4BACA,MArCC,QA6BL,kCACI,YD5BC,WC6BD,gBACI,UAGR,eACI,0BACA,MArCC,QA6BL,oCACI,YD5BC,WC6BD,gBACI,UAGR,iBACI,4BACA,MArCC,QA6BL,oCACI,YD5BC,WC6BD,gBACI,UAGR,iBACI,4BACA,MArCC,QA6BL,oCACI,YD5BC,WC6BD,gBACI,UAGR,iBACI,4BACA,MArCC,QA6BL,iCACI,YD5BC,WC6BD,gBACI,UAGR,cACI,yBACA,MArCC,QA6BL,iCACI,YD5BC,WC6BD,gBACI,UAGR,cACI,yBACA,MArCC,QA6BL,kCACI,YD5BC,WC6BD,gBACI,UAGR,eACI,0BACA,MArCC,QA6BL,sCACI,YD5BC,WC6BD,gBACI,UAGR,mBACI,8BACA,MArCC,QA6BL,sCACI,YD5BC,WC6BD,gBACI,UAGR,mBACI,8BACA,MArCC,QA6BL,mCACI,YD5BC,WC6BD,gBACI,UAGR,gBACI,2BACA,MArCC,QA6BL,mCACI,YD5BC,WC6BD,gBACI,UAGR,gBACI,2BACA,MArCC,QA6BL,mCACI,YD5BC,WC6BD,gBACI,UAGR,gBACI,2BACA,MArCC,QA6BL,sCACI,YD5BC,WC6BD,gBACI,UAGR,mBACI,8BACA,MArCC,QA6BL,iCACI,YD5BC,WC6BD,gBACI,UAGR,cACI,yBACA,MArCC,QA6BL,iCACI,YD5BC,WC6BD,gBACI,UAGR,cACI,yBACA,MArCC,QA6BL,sCACI,YD5BC,WC6BD,gBACI,UAGR,mBACI,8BACA,MArCC,QA6BL,wCACI,YD5BC,WC6BD,gBACI,UAGR,qBACI,gCACA,MArCC,QA6BL,mCACI,YD5BC,WC6BD,gBACI,UAGR,gBACI,2BACA,MArCC,QA6BL,mCACI,YD5BC,WC6BD,gBACI,UAGR,gBACI,2BACA,MArCC,QCKL,UACI,yBADJ,UACI,yBAUJ,YACI,wBADJ,YACI,wBADJ,YACI,wBADJ,YACI,wBCZJ,WACI,wBADJ,YACI,yBADJ,YACI,yBCLR,WACI,qBAIJ,WACI,qBAIJ,SACI,wBCZJ,UACI,kBACA,qBACA,UACA,WACA,sBAGJ,cACI,kBACA,SACA,QACA,gCACA,gBCbJ,QACI,qBACA,eACA,qBAIJ,QACI,qBACA,eACA,mBCFI,wBALJ,YAKI,6BALJ,YAKI,yBALJ,YAKI,mBALJ,YAKI,qBALJ,YAKI,qBALJ,YAKI,sBALJ,YAKI,wBALJ,YAKI,wBALJ,YAKI,yBALJ,YAKI,2BALJ,YAKI,2BALJ,YAKI,4BALJ,YAKI,8BALJ,YAKI,8BALJ,YAKI,iBALJ,YAKI,mBALJ,YAKI,mBALJ,YAKI,uBALJ,YAKI,yBALJ,YAKI,yBALJ,YAKI,kBALJ,YAKI,qBALJ,YAKI,uBALJ,YAKI,uBALJ,YAKI,2BALJ,YAKI,6BALJ,YAKI,6BALJ,YAKI,mBALJ,YAKI,mBALJ,YAKI,iBALJ,YAKI,mBALJ,YAKI,mBALJ,YAKI,kBALJ,YAKI,oBALJ,YAKI,oBALJ,YAKI,kBALJ,YAKI,oBALJ,YAKI,oBALJ,YAKI,wBALJ,YAKI,0BALJ,YAKI,iBALJ,YAKI,mBALJ,YAKI,mBALJ,YAKI,uBALJ,YAKI,yBALJ,YAKI,wBALJ,YAKI,0BALJ,YAKI,uBALJ,YAKI,yBALJ,YAKI,qBALJ,YAKI,uBALJ,YAKI,uBALJ,YAKI,yBALJ,YAKI,kBALJ,YAKI,oBALJ,YAKI,wBALJ,YAKI,0BALJ,YAKI,4BALJ,YAKI,uBALJ,YAKI,yBALJ,YAKI,yBALJ,YAKI,2BALJ,YAKI,yBALJ,YAKI,2BALJ,YAKI,2BALJ,YAKI,6BALJ,YAKI,wBALJ,YAKI,0BALJ,YAKI,0BALJ,YAKI,4BALJ,YAKI,0BALJ,YAKI,4BALJ,YAKI,kBALJ,YAKI,oBALJ,YAKI,wBALJ,YAKI,0BALJ,YAKI,iBALJ,YAKI,mBALJ,YAKI,qBALJ,YAKI,0BALJ,YAKI,2BALJ,YAKI,kBALJ,YAKI,oBALJ,YAKI,oBALJ,YAKI,mBALJ,YAKI,mBALJ,YAKI,mBALJ,YAKI,qBALJ,YAKI,uBALJ,YAKI,qBALJ,YAKI,2BALJ,YAKI,kBALJ,YAKI,oBALJ,YAKI,oBALJ,YAKI,sBALJ,YAKI,wBALJ,YAKI,wBALJ,YAKI,iBALJ,YAKI,mBALJ,YAKI,2BALJ,YAKI,6BALJ,YAKI,yBALJ,YAKI,mCALJ","file":"gufo-font.min.css"}
package/package.json ADDED
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "@gufo-labs/font",
3
+ "version": "0.0.1",
4
+ "description": "Telecom and IT-oriented icon font",
5
+ "license": "SEE LICENCE IN README.md",
6
+ "type": "module",
7
+ "files": [
8
+ "**/*"
9
+ ],
10
+ "publishConfig": {
11
+ "access": "public"
12
+ }
13
+ }