@gufo-labs/font 0.0.1 → 0.0.3
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/GufoFont-Regular.woff2 +0 -0
- package/README.md +17 -3
- package/gufo-font.css +636 -230
- package/gufo-font.min.css +1 -1
- package/gufo-font.min.css.map +1 -1
- package/package.json +1 -1
- package/GufoFont-Regular.4a7d4bcb.woff2 +0 -0
|
Binary file
|
package/README.md
CHANGED
|
@@ -1,18 +1,32 @@
|
|
|
1
1
|
# Gufo Font
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
*Telecom and IT-oriented icon font.*
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
-
**Documentation**: [https://docs.gufolabs.com/
|
|
7
|
+
**Documentation**: [https://docs.gufolabs.com/gufo_font/](https://docs.gufolabs.com/gufo_font/)
|
|
8
8
|
|
|
9
|
-
**Source Code**: [https://github.com/gufolabs/
|
|
9
|
+
**Source Code**: [https://github.com/gufolabs/gufo_font/](https://github.com/gufolabs/gufo_font/)
|
|
10
10
|
|
|
11
11
|
---
|
|
12
|
+

|
|
12
13
|
[](https://opensource.org/licenses/BSD-3-Clause)
|
|
13
14
|
[](https://creativecommons.org/licenses/by-nd/4.0/)
|
|
14
15
|

|
|
15
16
|
|
|
17
|
+
Gufo Font is a specialized icon font designed for telecom and IT applications. In addition to common UI icons, it includes a wide range of symbols useful for diagrams, network maps, and visualizing complex systems. It also features icons inspired by popular vendor stencil packs.
|
|
18
|
+
Gufo Font is a color font built with COLR/CPAL technology, offering numerous benefits:
|
|
19
|
+
|
|
20
|
+
* High-quality, scalable graphics
|
|
21
|
+
* Consistent design across all icons
|
|
22
|
+
* Smooth and intuitive user experience
|
|
23
|
+
* Broad browser support
|
|
24
|
+
* Compatibility with desktop and graphic design applications
|
|
25
|
+
* Ultra-fast rendering compared to SVG
|
|
26
|
+
* Easy visualization of node statuses
|
|
27
|
+
* Industry-standard symbols
|
|
28
|
+
* Vendor-specific icon sets
|
|
29
|
+
|
|
16
30
|
## License
|
|
17
31
|
|
|
18
32
|
### Source files / scripts
|
package/gufo-font.css
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
@font-face {
|
|
3
3
|
font-family: "GufoFont";
|
|
4
|
-
src: url("GufoFont-Regular.
|
|
4
|
+
src: url("GufoFont-Regular.woff2") format("woff2");
|
|
5
5
|
font-weight: normal;
|
|
6
6
|
font-style: normal;
|
|
7
7
|
}
|
|
@@ -10,12 +10,18 @@
|
|
|
10
10
|
font-style: normal;
|
|
11
11
|
font-weight: normal;
|
|
12
12
|
display: inline-block;
|
|
13
|
-
--gf-
|
|
14
|
-
font-size: var(--gf-stencil-size);
|
|
15
|
-
width: var(--gf-stencil-size);
|
|
13
|
+
font-size: var(--gf-size, 1em);
|
|
16
14
|
margin: 0;
|
|
17
15
|
padding: 0;
|
|
18
16
|
transform-origin: center center;
|
|
17
|
+
width: 1em;
|
|
18
|
+
line-height: normal;
|
|
19
|
+
--gf-effective-offset-y: var(--gf-offset-y, var(--gf-default-offset-y, 0.125em));
|
|
20
|
+
transform: translateY(var(--gf-effective-offset-y, 0));
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.gf-map {
|
|
24
|
+
--gf-default-offset-y: 0;
|
|
19
25
|
}
|
|
20
26
|
|
|
21
27
|
@font-palette-values --gf-unknown {
|
|
@@ -252,52 +258,76 @@
|
|
|
252
258
|
color: #7f8c8d;
|
|
253
259
|
}
|
|
254
260
|
|
|
255
|
-
.gf.gf-
|
|
256
|
-
|
|
261
|
+
.gf.gf-1x,
|
|
262
|
+
.gf-stack.gf-1x {
|
|
263
|
+
--gf-size: 64px;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
.gf.gf-2x,
|
|
267
|
+
.gf-stack.gf-2x {
|
|
268
|
+
--gf-size: 128px;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
.gf.gf-3x,
|
|
272
|
+
.gf-stack.gf-3x {
|
|
273
|
+
--gf-size: 192px;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
.gf.gf-16px,
|
|
277
|
+
.gf-stack.gf-16px {
|
|
278
|
+
--gf-size: 16px;
|
|
257
279
|
}
|
|
258
280
|
|
|
259
|
-
.gf.gf-
|
|
260
|
-
|
|
281
|
+
.gf.gf-24px,
|
|
282
|
+
.gf-stack.gf-24px {
|
|
283
|
+
--gf-size: 24px;
|
|
261
284
|
}
|
|
262
285
|
|
|
263
|
-
.gf.gf-
|
|
264
|
-
|
|
286
|
+
.gf.gf-32px,
|
|
287
|
+
.gf-stack.gf-32px {
|
|
288
|
+
--gf-size: 32px;
|
|
265
289
|
}
|
|
266
290
|
|
|
267
|
-
.gf.gf-
|
|
268
|
-
|
|
291
|
+
.gf.gf-48px,
|
|
292
|
+
.gf-stack.gf-48px {
|
|
293
|
+
--gf-size: 48px;
|
|
269
294
|
}
|
|
270
295
|
|
|
271
|
-
.gf.gf-
|
|
272
|
-
--gf-
|
|
296
|
+
.gf.gf-smaller {
|
|
297
|
+
--gf-size: 0.8em;
|
|
273
298
|
}
|
|
274
299
|
|
|
275
|
-
.gf.gf-
|
|
276
|
-
--gf-
|
|
300
|
+
.gf.gf-larger {
|
|
301
|
+
--gf-size: 1.2em;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.gf.gf-transform, .gf.gf-flip, .gf.gf-flip-h, .gf.gf-flip-v, .gf.gf-r270, .gf.gf-r180, .gf.gf-r90 {
|
|
305
|
+
transform: translate(var(--gf-offset-x, 0), var(--gf-effective-offset-y, 0)) rotate(var(--gf-rotate, 0)) scale(var(--gf-scale-x, 1), var(--gf-scale-y, 1));
|
|
277
306
|
}
|
|
278
307
|
|
|
279
308
|
.gf.gf-r90 {
|
|
280
|
-
|
|
309
|
+
--gf-rotate: 90deg;
|
|
281
310
|
}
|
|
282
311
|
|
|
283
312
|
.gf.gf-r180 {
|
|
284
|
-
|
|
313
|
+
--gf-rotate: 180deg;
|
|
285
314
|
}
|
|
286
315
|
|
|
287
316
|
.gf.gf-r270 {
|
|
288
|
-
|
|
317
|
+
--gf-rotate: 270deg;
|
|
289
318
|
}
|
|
290
319
|
|
|
291
320
|
.gf-flip-v {
|
|
292
|
-
|
|
321
|
+
--gf-scale-y: -1;
|
|
293
322
|
}
|
|
294
323
|
|
|
295
324
|
.gf-flip-h {
|
|
296
|
-
|
|
325
|
+
--gf-scale-x: -1;
|
|
297
326
|
}
|
|
298
327
|
|
|
299
328
|
.gf-flip {
|
|
300
|
-
|
|
329
|
+
--gf-scale-x: -1;
|
|
330
|
+
--gf-scale-y: -1;
|
|
301
331
|
}
|
|
302
332
|
|
|
303
333
|
.gf-stack {
|
|
@@ -330,315 +360,691 @@
|
|
|
330
360
|
vertical-align: sub;
|
|
331
361
|
}
|
|
332
362
|
|
|
333
|
-
.gf
|
|
334
|
-
content:
|
|
363
|
+
.gf::before {
|
|
364
|
+
content: var(--gf);
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
.gf.brand-noc-s {
|
|
368
|
+
--gf: "\e001";
|
|
369
|
+
}
|
|
370
|
+
.gf.brand-gufolabs-s {
|
|
371
|
+
--gf: "\e003";
|
|
372
|
+
}
|
|
373
|
+
.gf.brand-sova-s {
|
|
374
|
+
--gf: "\e005";
|
|
375
|
+
}
|
|
376
|
+
.gf.circle {
|
|
377
|
+
--gf: "\e280";
|
|
378
|
+
}
|
|
379
|
+
.gf.circle-s {
|
|
380
|
+
--gf: "\e281";
|
|
381
|
+
}
|
|
382
|
+
.gf.circle-o {
|
|
383
|
+
--gf: "\e282";
|
|
384
|
+
}
|
|
385
|
+
.gf.rectangle {
|
|
386
|
+
--gf: "\e283";
|
|
387
|
+
}
|
|
388
|
+
.gf.rectangle-s {
|
|
389
|
+
--gf: "\e284";
|
|
390
|
+
}
|
|
391
|
+
.gf.rectangle-o {
|
|
392
|
+
--gf: "\e285";
|
|
393
|
+
}
|
|
394
|
+
.gf.circle-small {
|
|
395
|
+
--gf: "\e286";
|
|
396
|
+
}
|
|
397
|
+
.gf.circle-small-s {
|
|
398
|
+
--gf: "\e287";
|
|
399
|
+
}
|
|
400
|
+
.gf.circle-small-o {
|
|
401
|
+
--gf: "\e288";
|
|
402
|
+
}
|
|
403
|
+
.gf.rectangle-small {
|
|
404
|
+
--gf: "\e289";
|
|
405
|
+
}
|
|
406
|
+
.gf.rectangle-small-s {
|
|
407
|
+
--gf: "\e28a";
|
|
408
|
+
}
|
|
409
|
+
.gf.rectangle-small-o {
|
|
410
|
+
--gf: "\e28b";
|
|
411
|
+
}
|
|
412
|
+
.gf.star {
|
|
413
|
+
--gf: "\e28c";
|
|
414
|
+
}
|
|
415
|
+
.gf.star-s {
|
|
416
|
+
--gf: "\e28d";
|
|
417
|
+
}
|
|
418
|
+
.gf.star-o {
|
|
419
|
+
--gf: "\e28e";
|
|
420
|
+
}
|
|
421
|
+
.gf.star-small {
|
|
422
|
+
--gf: "\e28f";
|
|
423
|
+
}
|
|
424
|
+
.gf.star-small-s {
|
|
425
|
+
--gf: "\e290";
|
|
426
|
+
}
|
|
427
|
+
.gf.star-small-o {
|
|
428
|
+
--gf: "\e291";
|
|
429
|
+
}
|
|
430
|
+
.gf.ban-o {
|
|
431
|
+
--gf: "\e292";
|
|
432
|
+
}
|
|
433
|
+
.gf.triangle {
|
|
434
|
+
--gf: "\e293";
|
|
435
|
+
}
|
|
436
|
+
.gf.triangle-s {
|
|
437
|
+
--gf: "\e294";
|
|
438
|
+
}
|
|
439
|
+
.gf.triangle-o {
|
|
440
|
+
--gf: "\e295";
|
|
441
|
+
}
|
|
442
|
+
.gf.triangle-small {
|
|
443
|
+
--gf: "\e296";
|
|
444
|
+
}
|
|
445
|
+
.gf.triangle-small-s {
|
|
446
|
+
--gf: "\e297";
|
|
447
|
+
}
|
|
448
|
+
.gf.triangle-small-o {
|
|
449
|
+
--gf: "\e298";
|
|
450
|
+
}
|
|
451
|
+
.gf.copy-s {
|
|
452
|
+
--gf: "\e299";
|
|
453
|
+
}
|
|
454
|
+
.gf.copy-o {
|
|
455
|
+
--gf: "\e29a";
|
|
456
|
+
}
|
|
457
|
+
.gf.play {
|
|
458
|
+
--gf: "\e29b";
|
|
459
|
+
}
|
|
460
|
+
.gf.play-s {
|
|
461
|
+
--gf: "\e29c";
|
|
462
|
+
}
|
|
463
|
+
.gf.play-o {
|
|
464
|
+
--gf: "\e29d";
|
|
465
|
+
}
|
|
466
|
+
.gf.pause {
|
|
467
|
+
--gf: "\e29e";
|
|
468
|
+
}
|
|
469
|
+
.gf.pause-s {
|
|
470
|
+
--gf: "\e29f";
|
|
471
|
+
}
|
|
472
|
+
.gf.pause-o {
|
|
473
|
+
--gf: "\e2a0";
|
|
474
|
+
}
|
|
475
|
+
.gf.minus {
|
|
476
|
+
--gf: "\e2a1";
|
|
477
|
+
}
|
|
478
|
+
.gf.minus-s {
|
|
479
|
+
--gf: "\e2a2";
|
|
480
|
+
}
|
|
481
|
+
.gf.minus-o {
|
|
482
|
+
--gf: "\e2a3";
|
|
483
|
+
}
|
|
484
|
+
.gf.minus-small {
|
|
485
|
+
--gf: "\e2a4";
|
|
486
|
+
}
|
|
487
|
+
.gf.minus-small-s {
|
|
488
|
+
--gf: "\e2a5";
|
|
489
|
+
}
|
|
490
|
+
.gf.plus {
|
|
491
|
+
--gf: "\e2a6";
|
|
492
|
+
}
|
|
493
|
+
.gf.plus-s {
|
|
494
|
+
--gf: "\e2a7";
|
|
495
|
+
}
|
|
496
|
+
.gf.plus-o {
|
|
497
|
+
--gf: "\e2a8";
|
|
498
|
+
}
|
|
499
|
+
.gf.plus-small {
|
|
500
|
+
--gf: "\e2a9";
|
|
501
|
+
}
|
|
502
|
+
.gf.plus-small-s {
|
|
503
|
+
--gf: "\e2aa";
|
|
504
|
+
}
|
|
505
|
+
.gf.arrow-right {
|
|
506
|
+
--gf: "\e2ab";
|
|
507
|
+
}
|
|
508
|
+
.gf.arrow-right-s {
|
|
509
|
+
--gf: "\e2ac";
|
|
510
|
+
}
|
|
511
|
+
.gf.arrow-left {
|
|
512
|
+
--gf: "\e2ad";
|
|
513
|
+
}
|
|
514
|
+
.gf.arrow-left-s {
|
|
515
|
+
--gf: "\e2ae";
|
|
516
|
+
}
|
|
517
|
+
.gf.arrow-up {
|
|
518
|
+
--gf: "\e2af";
|
|
519
|
+
}
|
|
520
|
+
.gf.arrow-up-s {
|
|
521
|
+
--gf: "\e2b0";
|
|
522
|
+
}
|
|
523
|
+
.gf.arrow-down {
|
|
524
|
+
--gf: "\e2b1";
|
|
525
|
+
}
|
|
526
|
+
.gf.arrow-down-s {
|
|
527
|
+
--gf: "\e2b2";
|
|
528
|
+
}
|
|
529
|
+
.gf.check {
|
|
530
|
+
--gf: "\e2b3";
|
|
531
|
+
}
|
|
532
|
+
.gf.check-s {
|
|
533
|
+
--gf: "\e2b4";
|
|
534
|
+
}
|
|
535
|
+
.gf.power-off-s {
|
|
536
|
+
--gf: "\e2b6";
|
|
537
|
+
}
|
|
538
|
+
.gf.chevron-right {
|
|
539
|
+
--gf: "\e2b7";
|
|
540
|
+
}
|
|
541
|
+
.gf.chevron-right-s {
|
|
542
|
+
--gf: "\e2b8";
|
|
543
|
+
}
|
|
544
|
+
.gf.chevron-up {
|
|
545
|
+
--gf: "\e2b9";
|
|
546
|
+
}
|
|
547
|
+
.gf.chevron-up-s {
|
|
548
|
+
--gf: "\e2ba";
|
|
549
|
+
}
|
|
550
|
+
.gf.chevron-left {
|
|
551
|
+
--gf: "\e2bb";
|
|
552
|
+
}
|
|
553
|
+
.gf.chevron-left-s {
|
|
554
|
+
--gf: "\e2bc";
|
|
555
|
+
}
|
|
556
|
+
.gf.chevron-down {
|
|
557
|
+
--gf: "\e2bd";
|
|
558
|
+
}
|
|
559
|
+
.gf.chevron-down-s {
|
|
560
|
+
--gf: "\e2be";
|
|
561
|
+
}
|
|
562
|
+
.gf.chevrons-right {
|
|
563
|
+
--gf: "\e2bf";
|
|
564
|
+
}
|
|
565
|
+
.gf.chevrons-right-s {
|
|
566
|
+
--gf: "\e2c0";
|
|
567
|
+
}
|
|
568
|
+
.gf.chevrons-up {
|
|
569
|
+
--gf: "\e2c1";
|
|
570
|
+
}
|
|
571
|
+
.gf.chevrons-up-s {
|
|
572
|
+
--gf: "\e2c2";
|
|
573
|
+
}
|
|
574
|
+
.gf.chevrons-left {
|
|
575
|
+
--gf: "\e2c3";
|
|
576
|
+
}
|
|
577
|
+
.gf.chevrons-left-s {
|
|
578
|
+
--gf: "\e2c4";
|
|
579
|
+
}
|
|
580
|
+
.gf.chevrons-down {
|
|
581
|
+
--gf: "\e2c5";
|
|
582
|
+
}
|
|
583
|
+
.gf.chevrons-down-s {
|
|
584
|
+
--gf: "\e2c6";
|
|
585
|
+
}
|
|
586
|
+
.gf.xmark {
|
|
587
|
+
--gf: "\e2c7";
|
|
588
|
+
}
|
|
589
|
+
.gf.xmark-s {
|
|
590
|
+
--gf: "\e2c8";
|
|
591
|
+
}
|
|
592
|
+
.gf.xmark-small {
|
|
593
|
+
--gf: "\e2c9";
|
|
594
|
+
}
|
|
595
|
+
.gf.xmark-small-s {
|
|
596
|
+
--gf: "\e2ca";
|
|
597
|
+
}
|
|
598
|
+
.gf.user {
|
|
599
|
+
--gf: "\e2cb";
|
|
600
|
+
}
|
|
601
|
+
.gf.user-s {
|
|
602
|
+
--gf: "\e2cc";
|
|
603
|
+
}
|
|
604
|
+
.gf.rotate-s {
|
|
605
|
+
--gf: "\e2cd";
|
|
606
|
+
}
|
|
607
|
+
.gf.rotate-left-s {
|
|
608
|
+
--gf: "\e2ce";
|
|
609
|
+
}
|
|
610
|
+
.gf.rotate-right-s {
|
|
611
|
+
--gf: "\e2cf";
|
|
612
|
+
}
|
|
613
|
+
.gf.heart {
|
|
614
|
+
--gf: "\e2d0";
|
|
615
|
+
}
|
|
616
|
+
.gf.heart-s {
|
|
617
|
+
--gf: "\e2d1";
|
|
618
|
+
}
|
|
619
|
+
.gf.heart-o {
|
|
620
|
+
--gf: "\e2d2";
|
|
621
|
+
}
|
|
622
|
+
.gf.magnifying-glass-o {
|
|
623
|
+
--gf: "\e2d3";
|
|
624
|
+
}
|
|
625
|
+
.gf.bars-s {
|
|
626
|
+
--gf: "\e2d5";
|
|
627
|
+
}
|
|
628
|
+
.gf.file-s {
|
|
629
|
+
--gf: "\e2d7";
|
|
630
|
+
}
|
|
631
|
+
.gf.file-o {
|
|
632
|
+
--gf: "\e2d8";
|
|
633
|
+
}
|
|
634
|
+
.gf.cog {
|
|
635
|
+
--gf: "\e2d9";
|
|
636
|
+
}
|
|
637
|
+
.gf.cog-s {
|
|
638
|
+
--gf: "\e2da";
|
|
639
|
+
}
|
|
640
|
+
.gf.cog-o {
|
|
641
|
+
--gf: "\e2db";
|
|
642
|
+
}
|
|
643
|
+
.gf.floppy-disk-s {
|
|
644
|
+
--gf: "\e2dd";
|
|
645
|
+
}
|
|
646
|
+
.gf.floppy-disk-o {
|
|
647
|
+
--gf: "\e2de";
|
|
648
|
+
}
|
|
649
|
+
.gf.eye-o {
|
|
650
|
+
--gf: "\e2df";
|
|
651
|
+
}
|
|
652
|
+
.gf.globe {
|
|
653
|
+
--gf: "\e2e0";
|
|
654
|
+
}
|
|
655
|
+
.gf.globe-s {
|
|
656
|
+
--gf: "\e2e1";
|
|
657
|
+
}
|
|
658
|
+
.gf.globe-o {
|
|
659
|
+
--gf: "\e2e2";
|
|
660
|
+
}
|
|
661
|
+
.gf.location-pin-s {
|
|
662
|
+
--gf: "\e2e4";
|
|
663
|
+
}
|
|
664
|
+
.gf.location-pin-o {
|
|
665
|
+
--gf: "\e2e5";
|
|
666
|
+
}
|
|
667
|
+
.gf.filter-s {
|
|
668
|
+
--gf: "\e2e7";
|
|
669
|
+
}
|
|
670
|
+
.gf.filter-o {
|
|
671
|
+
--gf: "\e2e8";
|
|
672
|
+
}
|
|
673
|
+
.gf.flag {
|
|
674
|
+
--gf: "\e2e9";
|
|
675
|
+
}
|
|
676
|
+
.gf.flag-s {
|
|
677
|
+
--gf: "\e2ea";
|
|
678
|
+
}
|
|
679
|
+
.gf.download-s {
|
|
680
|
+
--gf: "\e2ec";
|
|
681
|
+
}
|
|
682
|
+
.gf.upload-s {
|
|
683
|
+
--gf: "\e2ed";
|
|
684
|
+
}
|
|
685
|
+
.gf.pen-to-square-o {
|
|
686
|
+
--gf: "\e2ee";
|
|
687
|
+
}
|
|
688
|
+
.gf.lock {
|
|
689
|
+
--gf: "\e2ef";
|
|
690
|
+
}
|
|
691
|
+
.gf.lock-s {
|
|
692
|
+
--gf: "\e2f0";
|
|
693
|
+
}
|
|
694
|
+
.gf.lock-o {
|
|
695
|
+
--gf: "\e2f1";
|
|
696
|
+
}
|
|
697
|
+
.gf.pencil-s {
|
|
698
|
+
--gf: "\e2f2";
|
|
699
|
+
}
|
|
700
|
+
.gf.pencil-o {
|
|
701
|
+
--gf: "\e2f3";
|
|
702
|
+
}
|
|
703
|
+
.gf.eraser-s {
|
|
704
|
+
--gf: "\e2f4";
|
|
705
|
+
}
|
|
706
|
+
.gf.location-arrow-s {
|
|
707
|
+
--gf: "\e2f5";
|
|
708
|
+
}
|
|
709
|
+
.gf.location-arrow-o {
|
|
710
|
+
--gf: "\e2f6";
|
|
711
|
+
}
|
|
712
|
+
.gf.comment-s {
|
|
713
|
+
--gf: "\e2f9";
|
|
714
|
+
}
|
|
715
|
+
.gf.comment-o {
|
|
716
|
+
--gf: "\e2fa";
|
|
717
|
+
}
|
|
718
|
+
.gf.dot-s {
|
|
719
|
+
--gf: "\e2fb";
|
|
720
|
+
}
|
|
721
|
+
.gf.ellipsis-s {
|
|
722
|
+
--gf: "\e2fc";
|
|
723
|
+
}
|
|
724
|
+
.gf.ellipsis-vertical-s {
|
|
725
|
+
--gf: "\e2fd";
|
|
726
|
+
}
|
|
727
|
+
.gf.circle-info-s {
|
|
728
|
+
--gf: "\e2fe";
|
|
729
|
+
}
|
|
730
|
+
.gf.house-s {
|
|
731
|
+
--gf: "\e300";
|
|
732
|
+
}
|
|
733
|
+
.gf.stairs-o {
|
|
734
|
+
--gf: "\e302";
|
|
735
|
+
}
|
|
736
|
+
.gf.octagon {
|
|
737
|
+
--gf: "\e303";
|
|
738
|
+
}
|
|
739
|
+
.gf.octagon-s {
|
|
740
|
+
--gf: "\e304";
|
|
335
741
|
}
|
|
336
|
-
.gf.
|
|
337
|
-
|
|
742
|
+
.gf.octagon-o {
|
|
743
|
+
--gf: "\e305";
|
|
338
744
|
}
|
|
339
|
-
.gf.
|
|
340
|
-
|
|
745
|
+
.gf.spinner-s {
|
|
746
|
+
--gf: "\e306";
|
|
341
747
|
}
|
|
342
|
-
.gf.circle
|
|
343
|
-
|
|
748
|
+
.gf.circle-notch-o {
|
|
749
|
+
--gf: "\e307";
|
|
344
750
|
}
|
|
345
|
-
.gf.
|
|
346
|
-
|
|
751
|
+
.gf.slash-s {
|
|
752
|
+
--gf: "\e308";
|
|
347
753
|
}
|
|
348
|
-
.gf.
|
|
349
|
-
|
|
754
|
+
.gf.asterisk {
|
|
755
|
+
--gf: "\e309";
|
|
350
756
|
}
|
|
351
|
-
.gf.
|
|
352
|
-
|
|
757
|
+
.gf.asterisk-s {
|
|
758
|
+
--gf: "\e30a";
|
|
353
759
|
}
|
|
354
|
-
.gf.
|
|
355
|
-
|
|
760
|
+
.gf.wrench-s {
|
|
761
|
+
--gf: "\e30b";
|
|
356
762
|
}
|
|
357
|
-
.gf.
|
|
358
|
-
|
|
763
|
+
.gf.building-s {
|
|
764
|
+
--gf: "\e30c";
|
|
359
765
|
}
|
|
360
|
-
.gf.
|
|
361
|
-
|
|
766
|
+
.gf.warehouse-s {
|
|
767
|
+
--gf: "\e30d";
|
|
362
768
|
}
|
|
363
|
-
.gf.
|
|
364
|
-
|
|
769
|
+
.gf.building-columns-s {
|
|
770
|
+
--gf: "\e30e";
|
|
365
771
|
}
|
|
366
|
-
.gf.
|
|
367
|
-
|
|
772
|
+
.gf.house-medical-s {
|
|
773
|
+
--gf: "\e30f";
|
|
368
774
|
}
|
|
369
|
-
.gf.
|
|
370
|
-
|
|
775
|
+
.gf.dungeon-s {
|
|
776
|
+
--gf: "\e310";
|
|
371
777
|
}
|
|
372
|
-
.gf.
|
|
373
|
-
|
|
778
|
+
.gf.governmental-building-s {
|
|
779
|
+
--gf: "\e311";
|
|
374
780
|
}
|
|
375
|
-
.gf.
|
|
376
|
-
|
|
781
|
+
.gf.industry-s {
|
|
782
|
+
--gf: "\e312";
|
|
377
783
|
}
|
|
378
|
-
.gf.
|
|
379
|
-
|
|
784
|
+
.gf.tv-s {
|
|
785
|
+
--gf: "\e314";
|
|
380
786
|
}
|
|
381
|
-
.gf.
|
|
382
|
-
|
|
787
|
+
.gf.tv-o {
|
|
788
|
+
--gf: "\e315";
|
|
383
789
|
}
|
|
384
|
-
.gf.
|
|
385
|
-
|
|
790
|
+
.gf.tower-broadcast-s {
|
|
791
|
+
--gf: "\e316";
|
|
386
792
|
}
|
|
387
|
-
.gf.
|
|
388
|
-
|
|
793
|
+
.gf.bookmark-s {
|
|
794
|
+
--gf: "\e318";
|
|
389
795
|
}
|
|
390
|
-
.gf.
|
|
391
|
-
|
|
796
|
+
.gf.bookmark-o {
|
|
797
|
+
--gf: "\e319";
|
|
392
798
|
}
|
|
393
|
-
.gf.
|
|
394
|
-
|
|
799
|
+
.gf.book-s {
|
|
800
|
+
--gf: "\e31b";
|
|
395
801
|
}
|
|
396
|
-
.gf.
|
|
397
|
-
|
|
802
|
+
.gf.book-o {
|
|
803
|
+
--gf: "\e31c";
|
|
398
804
|
}
|
|
399
|
-
.gf.
|
|
400
|
-
|
|
805
|
+
.gf.book-bible-s {
|
|
806
|
+
--gf: "\e31e";
|
|
401
807
|
}
|
|
402
|
-
.gf.
|
|
403
|
-
|
|
808
|
+
.gf.book-bible-o {
|
|
809
|
+
--gf: "\e31f";
|
|
404
810
|
}
|
|
405
|
-
.gf.
|
|
406
|
-
|
|
811
|
+
.gf.book-medical-s {
|
|
812
|
+
--gf: "\e321";
|
|
407
813
|
}
|
|
408
|
-
.gf.
|
|
409
|
-
|
|
814
|
+
.gf.book-medical-o {
|
|
815
|
+
--gf: "\e322";
|
|
410
816
|
}
|
|
411
|
-
.gf.
|
|
412
|
-
|
|
817
|
+
.gf.people-group-s {
|
|
818
|
+
--gf: "\e325";
|
|
413
819
|
}
|
|
414
|
-
.gf.
|
|
415
|
-
|
|
820
|
+
.gf.database {
|
|
821
|
+
--gf: "\f000";
|
|
416
822
|
}
|
|
417
|
-
.gf.
|
|
418
|
-
|
|
823
|
+
.gf.database-s {
|
|
824
|
+
--gf: "\f001";
|
|
419
825
|
}
|
|
420
|
-
.gf.
|
|
421
|
-
|
|
826
|
+
.gf.internet {
|
|
827
|
+
--gf: "\f002";
|
|
422
828
|
}
|
|
423
|
-
.gf.
|
|
424
|
-
|
|
829
|
+
.gf.fiber-optics-o {
|
|
830
|
+
--gf: "\f003";
|
|
425
831
|
}
|
|
426
|
-
.gf.
|
|
427
|
-
|
|
832
|
+
.gf.cloud {
|
|
833
|
+
--gf: "\f004";
|
|
428
834
|
}
|
|
429
|
-
.gf.
|
|
430
|
-
|
|
835
|
+
.gf.cloud-s {
|
|
836
|
+
--gf: "\f005";
|
|
431
837
|
}
|
|
432
|
-
.gf.
|
|
433
|
-
|
|
838
|
+
.gf.cloud-o {
|
|
839
|
+
--gf: "\f006";
|
|
434
840
|
}
|
|
435
|
-
.gf.
|
|
436
|
-
|
|
841
|
+
.gf.radiation {
|
|
842
|
+
--gf: "\f007";
|
|
437
843
|
}
|
|
438
|
-
.gf.
|
|
439
|
-
|
|
844
|
+
.gf.radiation-s {
|
|
845
|
+
--gf: "\f008";
|
|
440
846
|
}
|
|
441
|
-
.gf.
|
|
442
|
-
|
|
847
|
+
.gf.biohazard-s {
|
|
848
|
+
--gf: "\f00a";
|
|
443
849
|
}
|
|
444
|
-
.gf.
|
|
445
|
-
|
|
850
|
+
.gf.bolt {
|
|
851
|
+
--gf: "\f00b";
|
|
446
852
|
}
|
|
447
|
-
.gf.
|
|
448
|
-
|
|
853
|
+
.gf.bolt-s {
|
|
854
|
+
--gf: "\f00c";
|
|
449
855
|
}
|
|
450
|
-
.gf.
|
|
451
|
-
|
|
856
|
+
.gf.lightning-bolt {
|
|
857
|
+
--gf: "\f00d";
|
|
452
858
|
}
|
|
453
|
-
.gf.
|
|
454
|
-
|
|
859
|
+
.gf.lightning-bolt-s {
|
|
860
|
+
--gf: "\f00e";
|
|
455
861
|
}
|
|
456
|
-
.gf.
|
|
457
|
-
|
|
862
|
+
.gf.wifi {
|
|
863
|
+
--gf: "\f012";
|
|
458
864
|
}
|
|
459
|
-
.gf.
|
|
460
|
-
|
|
865
|
+
.gf.wifi-s {
|
|
866
|
+
--gf: "\f013";
|
|
461
867
|
}
|
|
462
|
-
.gf.
|
|
463
|
-
|
|
868
|
+
.gf.database-postgres {
|
|
869
|
+
--gf: "\f016";
|
|
464
870
|
}
|
|
465
|
-
.gf.
|
|
466
|
-
|
|
871
|
+
.gf.atom-o {
|
|
872
|
+
--gf: "\f017";
|
|
467
873
|
}
|
|
468
|
-
.gf.
|
|
469
|
-
|
|
874
|
+
.gf.bluetooth-o {
|
|
875
|
+
--gf: "\f018";
|
|
470
876
|
}
|
|
471
|
-
.gf.
|
|
472
|
-
|
|
877
|
+
.gf.cisco-accesspoint {
|
|
878
|
+
--gf: "\f200";
|
|
473
879
|
}
|
|
474
|
-
.gf.
|
|
475
|
-
|
|
880
|
+
.gf.cisco-ace {
|
|
881
|
+
--gf: "\f201";
|
|
476
882
|
}
|
|
477
|
-
.gf.
|
|
478
|
-
|
|
883
|
+
.gf.cisco-ata {
|
|
884
|
+
--gf: "\f203";
|
|
479
885
|
}
|
|
480
|
-
.gf.
|
|
481
|
-
|
|
886
|
+
.gf.cisco-atm-router {
|
|
887
|
+
--gf: "\f204";
|
|
482
888
|
}
|
|
483
|
-
.gf.
|
|
484
|
-
|
|
889
|
+
.gf.cisco-bridge {
|
|
890
|
+
--gf: "\f206";
|
|
485
891
|
}
|
|
486
|
-
.gf.
|
|
487
|
-
|
|
892
|
+
.gf.cisco-broadband-router {
|
|
893
|
+
--gf: "\f207";
|
|
488
894
|
}
|
|
489
|
-
.gf.
|
|
490
|
-
|
|
895
|
+
.gf.cisco-cable-modem {
|
|
896
|
+
--gf: "\f208";
|
|
491
897
|
}
|
|
492
|
-
.gf.
|
|
493
|
-
|
|
898
|
+
.gf.cisco-concentrator {
|
|
899
|
+
--gf: "\f20e";
|
|
494
900
|
}
|
|
495
|
-
.gf.
|
|
496
|
-
|
|
901
|
+
.gf.cisco-firewall {
|
|
902
|
+
--gf: "\f214";
|
|
497
903
|
}
|
|
498
|
-
.gf.
|
|
499
|
-
|
|
904
|
+
.gf.cisco-optical-amplifier {
|
|
905
|
+
--gf: "\f223";
|
|
500
906
|
}
|
|
501
|
-
.gf.
|
|
502
|
-
|
|
907
|
+
.gf.cisco-relational-database {
|
|
908
|
+
--gf: "\f22b";
|
|
503
909
|
}
|
|
504
|
-
.gf.
|
|
505
|
-
|
|
910
|
+
.gf.cisco-router {
|
|
911
|
+
--gf: "\f22c";
|
|
506
912
|
}
|
|
507
|
-
.gf.
|
|
508
|
-
|
|
913
|
+
.gf.cisco-workgroup-switch {
|
|
914
|
+
--gf: "\f23f";
|
|
509
915
|
}
|
|
510
|
-
.gf.
|
|
511
|
-
|
|
916
|
+
.gf.juniper-generic-router {
|
|
917
|
+
--gf: "\f400";
|
|
512
918
|
}
|
|
513
|
-
.gf.
|
|
514
|
-
|
|
919
|
+
.gf.juniper-l2-l3-switch {
|
|
920
|
+
--gf: "\f401";
|
|
515
921
|
}
|
|
516
|
-
.gf.
|
|
517
|
-
|
|
922
|
+
.gf.juniper-l2-l3-switch2 {
|
|
923
|
+
--gf: "\f402";
|
|
518
924
|
}
|
|
519
|
-
.gf.
|
|
520
|
-
|
|
925
|
+
.gf.juniper-fcoe {
|
|
926
|
+
--gf: "\f403";
|
|
521
927
|
}
|
|
522
|
-
.gf.
|
|
523
|
-
|
|
928
|
+
.gf.juniper-switch {
|
|
929
|
+
--gf: "\f404";
|
|
524
930
|
}
|
|
525
|
-
.gf.
|
|
526
|
-
|
|
931
|
+
.gf.exclamation {
|
|
932
|
+
--gf: "\21";
|
|
527
933
|
}
|
|
528
|
-
.gf.
|
|
529
|
-
|
|
934
|
+
.gf.zero {
|
|
935
|
+
--gf: "\30";
|
|
530
936
|
}
|
|
531
|
-
.gf.
|
|
532
|
-
|
|
937
|
+
.gf.one {
|
|
938
|
+
--gf: "\31";
|
|
533
939
|
}
|
|
534
|
-
.gf.
|
|
535
|
-
|
|
940
|
+
.gf.two {
|
|
941
|
+
--gf: "\32";
|
|
536
942
|
}
|
|
537
|
-
.gf.
|
|
538
|
-
|
|
943
|
+
.gf.three {
|
|
944
|
+
--gf: "\33";
|
|
539
945
|
}
|
|
540
|
-
.gf.
|
|
541
|
-
|
|
946
|
+
.gf.four {
|
|
947
|
+
--gf: "\34";
|
|
542
948
|
}
|
|
543
|
-
.gf.
|
|
544
|
-
|
|
949
|
+
.gf.five {
|
|
950
|
+
--gf: "\35";
|
|
545
951
|
}
|
|
546
|
-
.gf.
|
|
547
|
-
|
|
952
|
+
.gf.six {
|
|
953
|
+
--gf: "\36";
|
|
548
954
|
}
|
|
549
|
-
.gf.
|
|
550
|
-
|
|
955
|
+
.gf.seven {
|
|
956
|
+
--gf: "\37";
|
|
551
957
|
}
|
|
552
|
-
.gf.
|
|
553
|
-
|
|
958
|
+
.gf.eight {
|
|
959
|
+
--gf: "\38";
|
|
554
960
|
}
|
|
555
|
-
.gf.
|
|
556
|
-
|
|
961
|
+
.gf.nine {
|
|
962
|
+
--gf: "\39";
|
|
557
963
|
}
|
|
558
|
-
.gf.
|
|
559
|
-
|
|
964
|
+
.gf.question {
|
|
965
|
+
--gf: "\3f";
|
|
560
966
|
}
|
|
561
|
-
.gf.
|
|
562
|
-
|
|
967
|
+
.gf.at {
|
|
968
|
+
--gf: "\40";
|
|
563
969
|
}
|
|
564
|
-
.gf.
|
|
565
|
-
|
|
970
|
+
.gf.latin-capital-a {
|
|
971
|
+
--gf: "\41";
|
|
566
972
|
}
|
|
567
|
-
.gf.
|
|
568
|
-
|
|
973
|
+
.gf.latin-capital-b {
|
|
974
|
+
--gf: "\42";
|
|
569
975
|
}
|
|
570
|
-
.gf.
|
|
571
|
-
|
|
976
|
+
.gf.latin-capital-c {
|
|
977
|
+
--gf: "\43";
|
|
572
978
|
}
|
|
573
|
-
.gf.
|
|
574
|
-
|
|
979
|
+
.gf.latin-capital-d {
|
|
980
|
+
--gf: "\44";
|
|
575
981
|
}
|
|
576
|
-
.gf.
|
|
577
|
-
|
|
982
|
+
.gf.latin-capital-e {
|
|
983
|
+
--gf: "\45";
|
|
578
984
|
}
|
|
579
|
-
.gf.
|
|
580
|
-
|
|
985
|
+
.gf.latin-capital-f {
|
|
986
|
+
--gf: "\46";
|
|
581
987
|
}
|
|
582
|
-
.gf.
|
|
583
|
-
|
|
988
|
+
.gf.latin-capital-g {
|
|
989
|
+
--gf: "\47";
|
|
584
990
|
}
|
|
585
|
-
.gf.
|
|
586
|
-
|
|
991
|
+
.gf.latin-capital-h {
|
|
992
|
+
--gf: "\48";
|
|
587
993
|
}
|
|
588
|
-
.gf.
|
|
589
|
-
|
|
994
|
+
.gf.latin-capital-i {
|
|
995
|
+
--gf: "\49";
|
|
590
996
|
}
|
|
591
|
-
.gf.
|
|
592
|
-
|
|
997
|
+
.gf.latin-capital-j {
|
|
998
|
+
--gf: "\4a";
|
|
593
999
|
}
|
|
594
|
-
.gf.
|
|
595
|
-
|
|
1000
|
+
.gf.latin-capital-k {
|
|
1001
|
+
--gf: "\4b";
|
|
596
1002
|
}
|
|
597
|
-
.gf.
|
|
598
|
-
|
|
1003
|
+
.gf.latin-capital-l {
|
|
1004
|
+
--gf: "\4c";
|
|
599
1005
|
}
|
|
600
|
-
.gf.
|
|
601
|
-
|
|
1006
|
+
.gf.latin-capital-m {
|
|
1007
|
+
--gf: "\4d";
|
|
602
1008
|
}
|
|
603
|
-
.gf.
|
|
604
|
-
|
|
1009
|
+
.gf.latin-capital-n {
|
|
1010
|
+
--gf: "\4e";
|
|
605
1011
|
}
|
|
606
|
-
.gf.
|
|
607
|
-
|
|
1012
|
+
.gf.latin-capital-o {
|
|
1013
|
+
--gf: "\4f";
|
|
608
1014
|
}
|
|
609
|
-
.gf.
|
|
610
|
-
|
|
1015
|
+
.gf.latin-capital-p {
|
|
1016
|
+
--gf: "\50";
|
|
611
1017
|
}
|
|
612
|
-
.gf.
|
|
613
|
-
|
|
1018
|
+
.gf.latin-capital-q {
|
|
1019
|
+
--gf: "\51";
|
|
614
1020
|
}
|
|
615
|
-
.gf.
|
|
616
|
-
|
|
1021
|
+
.gf.latin-capital-r {
|
|
1022
|
+
--gf: "\52";
|
|
617
1023
|
}
|
|
618
|
-
.gf.
|
|
619
|
-
|
|
1024
|
+
.gf.latin-capital-s {
|
|
1025
|
+
--gf: "\53";
|
|
620
1026
|
}
|
|
621
|
-
.gf.
|
|
622
|
-
|
|
1027
|
+
.gf.latin-capital-t {
|
|
1028
|
+
--gf: "\54";
|
|
623
1029
|
}
|
|
624
|
-
.gf.
|
|
625
|
-
|
|
1030
|
+
.gf.latin-capital-u {
|
|
1031
|
+
--gf: "\55";
|
|
626
1032
|
}
|
|
627
|
-
.gf.
|
|
628
|
-
|
|
1033
|
+
.gf.latin-capital-v {
|
|
1034
|
+
--gf: "\56";
|
|
629
1035
|
}
|
|
630
|
-
.gf.
|
|
631
|
-
|
|
1036
|
+
.gf.latin-capital-w {
|
|
1037
|
+
--gf: "\57";
|
|
632
1038
|
}
|
|
633
|
-
.gf.
|
|
634
|
-
|
|
1039
|
+
.gf.latin-capital-x {
|
|
1040
|
+
--gf: "\58";
|
|
635
1041
|
}
|
|
636
|
-
.gf.
|
|
637
|
-
|
|
1042
|
+
.gf.latin-capital-y {
|
|
1043
|
+
--gf: "\59";
|
|
638
1044
|
}
|
|
639
|
-
.gf.
|
|
640
|
-
|
|
1045
|
+
.gf.latin-capital-z {
|
|
1046
|
+
--gf: "\5a";
|
|
641
1047
|
}
|
|
642
|
-
.gf.
|
|
643
|
-
|
|
1048
|
+
.gf.copyright {
|
|
1049
|
+
--gf: "\a9";
|
|
644
1050
|
}
|
package/gufo-font.min.css
CHANGED
|
@@ -1 +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 */
|
|
1
|
+
@font-face{font-family:"GufoFont";src:url("GufoFont-Regular.woff2") format("woff2");font-weight:normal;font-style:normal}.gf{font-family:"GufoFont";font-style:normal;font-weight:normal;display:inline-block;font-size:var(--gf-size, 1em);margin:0;padding:0;transform-origin:center center;width:1em;line-height:normal;--gf-effective-offset-y: var(--gf-offset-y, var(--gf-default-offset-y, 0.125em));transform:translateY(var(--gf-effective-offset-y, 0))}.gf-map{--gf-default-offset-y: 0}@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-1x,.gf-stack.gf-1x{--gf-size: 64px}.gf.gf-2x,.gf-stack.gf-2x{--gf-size: 128px}.gf.gf-3x,.gf-stack.gf-3x{--gf-size: 192px}.gf.gf-16px,.gf-stack.gf-16px{--gf-size: 16px}.gf.gf-24px,.gf-stack.gf-24px{--gf-size: 24px}.gf.gf-32px,.gf-stack.gf-32px{--gf-size: 32px}.gf.gf-48px,.gf-stack.gf-48px{--gf-size: 48px}.gf.gf-smaller{--gf-size: 0.8em}.gf.gf-larger{--gf-size: 1.2em}.gf.gf-transform,.gf.gf-flip,.gf.gf-flip-h,.gf.gf-flip-v,.gf.gf-r270,.gf.gf-r180,.gf.gf-r90{transform:translate(var(--gf-offset-x, 0), var(--gf-effective-offset-y, 0)) rotate(var(--gf-rotate, 0)) scale(var(--gf-scale-x, 1), var(--gf-scale-y, 1))}.gf.gf-r90{--gf-rotate: 90deg}.gf.gf-r180{--gf-rotate: 180deg}.gf.gf-r270{--gf-rotate: 270deg}.gf-flip-v{--gf-scale-y: -1}.gf-flip-h{--gf-scale-x: -1}.gf-flip{--gf-scale-x: -1;--gf-scale-y: -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::before{content:var(--gf)}.gf.brand-noc-s{--gf: "\e001"}.gf.brand-gufolabs-s{--gf: "\e003"}.gf.brand-sova-s{--gf: "\e005"}.gf.circle{--gf: "\e280"}.gf.circle-s{--gf: "\e281"}.gf.circle-o{--gf: "\e282"}.gf.rectangle{--gf: "\e283"}.gf.rectangle-s{--gf: "\e284"}.gf.rectangle-o{--gf: "\e285"}.gf.circle-small{--gf: "\e286"}.gf.circle-small-s{--gf: "\e287"}.gf.circle-small-o{--gf: "\e288"}.gf.rectangle-small{--gf: "\e289"}.gf.rectangle-small-s{--gf: "\e28a"}.gf.rectangle-small-o{--gf: "\e28b"}.gf.star{--gf: "\e28c"}.gf.star-s{--gf: "\e28d"}.gf.star-o{--gf: "\e28e"}.gf.star-small{--gf: "\e28f"}.gf.star-small-s{--gf: "\e290"}.gf.star-small-o{--gf: "\e291"}.gf.ban-o{--gf: "\e292"}.gf.triangle{--gf: "\e293"}.gf.triangle-s{--gf: "\e294"}.gf.triangle-o{--gf: "\e295"}.gf.triangle-small{--gf: "\e296"}.gf.triangle-small-s{--gf: "\e297"}.gf.triangle-small-o{--gf: "\e298"}.gf.copy-s{--gf: "\e299"}.gf.copy-o{--gf: "\e29a"}.gf.play{--gf: "\e29b"}.gf.play-s{--gf: "\e29c"}.gf.play-o{--gf: "\e29d"}.gf.pause{--gf: "\e29e"}.gf.pause-s{--gf: "\e29f"}.gf.pause-o{--gf: "\e2a0"}.gf.minus{--gf: "\e2a1"}.gf.minus-s{--gf: "\e2a2"}.gf.minus-o{--gf: "\e2a3"}.gf.minus-small{--gf: "\e2a4"}.gf.minus-small-s{--gf: "\e2a5"}.gf.plus{--gf: "\e2a6"}.gf.plus-s{--gf: "\e2a7"}.gf.plus-o{--gf: "\e2a8"}.gf.plus-small{--gf: "\e2a9"}.gf.plus-small-s{--gf: "\e2aa"}.gf.arrow-right{--gf: "\e2ab"}.gf.arrow-right-s{--gf: "\e2ac"}.gf.arrow-left{--gf: "\e2ad"}.gf.arrow-left-s{--gf: "\e2ae"}.gf.arrow-up{--gf: "\e2af"}.gf.arrow-up-s{--gf: "\e2b0"}.gf.arrow-down{--gf: "\e2b1"}.gf.arrow-down-s{--gf: "\e2b2"}.gf.check{--gf: "\e2b3"}.gf.check-s{--gf: "\e2b4"}.gf.power-off-s{--gf: "\e2b6"}.gf.chevron-right{--gf: "\e2b7"}.gf.chevron-right-s{--gf: "\e2b8"}.gf.chevron-up{--gf: "\e2b9"}.gf.chevron-up-s{--gf: "\e2ba"}.gf.chevron-left{--gf: "\e2bb"}.gf.chevron-left-s{--gf: "\e2bc"}.gf.chevron-down{--gf: "\e2bd"}.gf.chevron-down-s{--gf: "\e2be"}.gf.chevrons-right{--gf: "\e2bf"}.gf.chevrons-right-s{--gf: "\e2c0"}.gf.chevrons-up{--gf: "\e2c1"}.gf.chevrons-up-s{--gf: "\e2c2"}.gf.chevrons-left{--gf: "\e2c3"}.gf.chevrons-left-s{--gf: "\e2c4"}.gf.chevrons-down{--gf: "\e2c5"}.gf.chevrons-down-s{--gf: "\e2c6"}.gf.xmark{--gf: "\e2c7"}.gf.xmark-s{--gf: "\e2c8"}.gf.xmark-small{--gf: "\e2c9"}.gf.xmark-small-s{--gf: "\e2ca"}.gf.user{--gf: "\e2cb"}.gf.user-s{--gf: "\e2cc"}.gf.rotate-s{--gf: "\e2cd"}.gf.rotate-left-s{--gf: "\e2ce"}.gf.rotate-right-s{--gf: "\e2cf"}.gf.heart{--gf: "\e2d0"}.gf.heart-s{--gf: "\e2d1"}.gf.heart-o{--gf: "\e2d2"}.gf.magnifying-glass-o{--gf: "\e2d3"}.gf.bars-s{--gf: "\e2d5"}.gf.file-s{--gf: "\e2d7"}.gf.file-o{--gf: "\e2d8"}.gf.cog{--gf: "\e2d9"}.gf.cog-s{--gf: "\e2da"}.gf.cog-o{--gf: "\e2db"}.gf.floppy-disk-s{--gf: "\e2dd"}.gf.floppy-disk-o{--gf: "\e2de"}.gf.eye-o{--gf: "\e2df"}.gf.globe{--gf: "\e2e0"}.gf.globe-s{--gf: "\e2e1"}.gf.globe-o{--gf: "\e2e2"}.gf.location-pin-s{--gf: "\e2e4"}.gf.location-pin-o{--gf: "\e2e5"}.gf.filter-s{--gf: "\e2e7"}.gf.filter-o{--gf: "\e2e8"}.gf.flag{--gf: "\e2e9"}.gf.flag-s{--gf: "\e2ea"}.gf.download-s{--gf: "\e2ec"}.gf.upload-s{--gf: "\e2ed"}.gf.pen-to-square-o{--gf: "\e2ee"}.gf.lock{--gf: "\e2ef"}.gf.lock-s{--gf: "\e2f0"}.gf.lock-o{--gf: "\e2f1"}.gf.pencil-s{--gf: "\e2f2"}.gf.pencil-o{--gf: "\e2f3"}.gf.eraser-s{--gf: "\e2f4"}.gf.location-arrow-s{--gf: "\e2f5"}.gf.location-arrow-o{--gf: "\e2f6"}.gf.comment-s{--gf: "\e2f9"}.gf.comment-o{--gf: "\e2fa"}.gf.dot-s{--gf: "\e2fb"}.gf.ellipsis-s{--gf: "\e2fc"}.gf.ellipsis-vertical-s{--gf: "\e2fd"}.gf.circle-info-s{--gf: "\e2fe"}.gf.house-s{--gf: "\e300"}.gf.stairs-o{--gf: "\e302"}.gf.octagon{--gf: "\e303"}.gf.octagon-s{--gf: "\e304"}.gf.octagon-o{--gf: "\e305"}.gf.spinner-s{--gf: "\e306"}.gf.circle-notch-o{--gf: "\e307"}.gf.slash-s{--gf: "\e308"}.gf.asterisk{--gf: "\e309"}.gf.asterisk-s{--gf: "\e30a"}.gf.wrench-s{--gf: "\e30b"}.gf.building-s{--gf: "\e30c"}.gf.warehouse-s{--gf: "\e30d"}.gf.building-columns-s{--gf: "\e30e"}.gf.house-medical-s{--gf: "\e30f"}.gf.dungeon-s{--gf: "\e310"}.gf.governmental-building-s{--gf: "\e311"}.gf.industry-s{--gf: "\e312"}.gf.tv-s{--gf: "\e314"}.gf.tv-o{--gf: "\e315"}.gf.tower-broadcast-s{--gf: "\e316"}.gf.bookmark-s{--gf: "\e318"}.gf.bookmark-o{--gf: "\e319"}.gf.book-s{--gf: "\e31b"}.gf.book-o{--gf: "\e31c"}.gf.book-bible-s{--gf: "\e31e"}.gf.book-bible-o{--gf: "\e31f"}.gf.book-medical-s{--gf: "\e321"}.gf.book-medical-o{--gf: "\e322"}.gf.people-group-s{--gf: "\e325"}.gf.database{--gf: "\f000"}.gf.database-s{--gf: "\f001"}.gf.internet{--gf: "\f002"}.gf.fiber-optics-o{--gf: "\f003"}.gf.cloud{--gf: "\f004"}.gf.cloud-s{--gf: "\f005"}.gf.cloud-o{--gf: "\f006"}.gf.radiation{--gf: "\f007"}.gf.radiation-s{--gf: "\f008"}.gf.biohazard-s{--gf: "\f00a"}.gf.bolt{--gf: "\f00b"}.gf.bolt-s{--gf: "\f00c"}.gf.lightning-bolt{--gf: "\f00d"}.gf.lightning-bolt-s{--gf: "\f00e"}.gf.wifi{--gf: "\f012"}.gf.wifi-s{--gf: "\f013"}.gf.database-postgres{--gf: "\f016"}.gf.atom-o{--gf: "\f017"}.gf.bluetooth-o{--gf: "\f018"}.gf.cisco-accesspoint{--gf: "\f200"}.gf.cisco-ace{--gf: "\f201"}.gf.cisco-ata{--gf: "\f203"}.gf.cisco-atm-router{--gf: "\f204"}.gf.cisco-bridge{--gf: "\f206"}.gf.cisco-broadband-router{--gf: "\f207"}.gf.cisco-cable-modem{--gf: "\f208"}.gf.cisco-concentrator{--gf: "\f20e"}.gf.cisco-firewall{--gf: "\f214"}.gf.cisco-optical-amplifier{--gf: "\f223"}.gf.cisco-relational-database{--gf: "\f22b"}.gf.cisco-router{--gf: "\f22c"}.gf.cisco-workgroup-switch{--gf: "\f23f"}.gf.juniper-generic-router{--gf: "\f400"}.gf.juniper-l2-l3-switch{--gf: "\f401"}.gf.juniper-l2-l3-switch2{--gf: "\f402"}.gf.juniper-fcoe{--gf: "\f403"}.gf.juniper-switch{--gf: "\f404"}.gf.exclamation{--gf: "\21"}.gf.zero{--gf: "\30"}.gf.one{--gf: "\31"}.gf.two{--gf: "\32"}.gf.three{--gf: "\33"}.gf.four{--gf: "\34"}.gf.five{--gf: "\35"}.gf.six{--gf: "\36"}.gf.seven{--gf: "\37"}.gf.eight{--gf: "\38"}.gf.nine{--gf: "\39"}.gf.question{--gf: "\3f"}.gf.at{--gf: "\40"}.gf.latin-capital-a{--gf: "\41"}.gf.latin-capital-b{--gf: "\42"}.gf.latin-capital-c{--gf: "\43"}.gf.latin-capital-d{--gf: "\44"}.gf.latin-capital-e{--gf: "\45"}.gf.latin-capital-f{--gf: "\46"}.gf.latin-capital-g{--gf: "\47"}.gf.latin-capital-h{--gf: "\48"}.gf.latin-capital-i{--gf: "\49"}.gf.latin-capital-j{--gf: "\4a"}.gf.latin-capital-k{--gf: "\4b"}.gf.latin-capital-l{--gf: "\4c"}.gf.latin-capital-m{--gf: "\4d"}.gf.latin-capital-n{--gf: "\4e"}.gf.latin-capital-o{--gf: "\4f"}.gf.latin-capital-p{--gf: "\50"}.gf.latin-capital-q{--gf: "\51"}.gf.latin-capital-r{--gf: "\52"}.gf.latin-capital-s{--gf: "\53"}.gf.latin-capital-t{--gf: "\54"}.gf.latin-capital-u{--gf: "\55"}.gf.latin-capital-v{--gf: "\56"}.gf.latin-capital-w{--gf: "\57"}.gf.latin-capital-x{--gf: "\58"}.gf.latin-capital-y{--gf: "\59"}.gf.latin-capital-z{--gf: "\5a"}.gf.copyright{--gf: "\a9"}/*# sourceMappingURL=gufo-font.min.css.map */
|
package/gufo-font.min.css.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["../../scss/_font.scss","../../scss/
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../scss/_font.scss","../../scss/_vars.scss","../../scss/_core.scss","../../scss/_state.scss","../../scss/_colors.scss","../../scss/_scale.scss","../../scss/_transform.scss","../../scss/_stack.scss","../../scss/_sub.scss","../../scss/_glyphs.scss"],"names":[],"mappings":"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BACI,cADJ,eACI,cADJ,iBACI,cADJ,iBACI,cADJ,mBACI,cADJ,iBACI,cADJ,mBACI,cADJ,mBACI,cADJ,qBACI,cADJ,gBACI,cADJ,kBACI,cADJ,kBACI,cADJ,oBACI,cADJ,kBACI,cADJ,oBACI,cADJ,UACI,cADJ,YACI,cADJ,gBACI,cADJ,kBACI,cADJ,SACI,cADJ,WACI,cADJ,aACI,cADJ,kBACI,cADJ,mBACI,cADJ,UACI,cADJ,YACI,cADJ,YACI,cADJ,uBACI,cADJ,WACI,cADJ,WACI,cADJ,WACI,cADJ,QACI,cADJ,UACI,cADJ,UACI,cADJ,kBACI,cADJ,kBACI,cADJ,UACI,cADJ,UACI,cADJ,YACI,cADJ,YACI,cADJ,mBACI,cADJ,mBACI,cADJ,aACI,cADJ,aACI,cADJ,SACI,cADJ,WACI,cADJ,eACI,cADJ,aACI,cADJ,oBACI,cADJ,SACI,cADJ,WACI,cADJ,WACI,cADJ,aACI,cADJ,aACI,cADJ,aACI,cADJ,qBACI,cADJ,qBACI,cADJ,cACI,cADJ,cACI,cADJ,UACI,cADJ,eACI,cADJ,wBACI,cADJ,kBACI,cADJ,YACI,cADJ,aACI,cADJ,YACI,cADJ,cACI,cADJ,cACI,cADJ,cACI,cADJ,mBACI,cADJ,YACI,cADJ,aACI,cADJ,eACI,cADJ,aACI,cADJ,eACI,cADJ,gBACI,cADJ,uBACI,cADJ,oBACI,cADJ,cACI,cADJ,4BACI,cADJ,eACI,cADJ,SACI,cADJ,SACI,cADJ,sBACI,cADJ,eACI,cADJ,eACI,cADJ,WACI,cADJ,WACI,cADJ,iBACI,cADJ,iBACI,cADJ,mBACI,cADJ,mBACI,cADJ,mBACI,cADJ,aACI,cADJ,eACI,cADJ,aACI,cADJ,mBACI,cADJ,UACI,cADJ,YACI,cADJ,YACI,cADJ,cACI,cADJ,gBACI,cADJ,gBACI,cADJ,SACI,cADJ,WACI,cADJ,mBACI,cADJ,qBACI,cADJ,SACI,cADJ,WACI,cADJ,sBACI,cADJ,WACI,cADJ,gBACI,cADJ,sBACI,cADJ,cACI,cADJ,cACI,cADJ,qBACI,cADJ,iBACI,cADJ,2BACI,cADJ,sBACI,cADJ,uBACI,cADJ,mBACI,cADJ,4BACI,cADJ,8BACI,cADJ,iBACI,cADJ,2BACI,cADJ,2BACI,cADJ,yBACI,cADJ,0BACI,cADJ,iBACI,cADJ,mBACI,cADJ,gBACI,YADJ,SACI,YADJ,QACI,YADJ,QACI,YADJ,UACI,YADJ,SACI,YADJ,SACI,YADJ,QACI,YADJ,UACI,YADJ,UACI,YADJ,SACI,YADJ,aACI,YADJ,OACI,YADJ,oBACI,YADJ,oBACI,YADJ,oBACI,YADJ,oBACI,YADJ,oBACI,YADJ,oBACI,YADJ,oBACI,YADJ,oBACI,YADJ,oBACI,YADJ,oBACI,YADJ,oBACI,YADJ,oBACI,YADJ,oBACI,YADJ,oBACI,YADJ,oBACI,YADJ,oBACI,YADJ,oBACI,YADJ,oBACI,YADJ,oBACI,YADJ,oBACI,YADJ,oBACI,YADJ,oBACI,YADJ,oBACI,YADJ,oBACI,YADJ,oBACI,YADJ,oBACI,YADJ,cACI","file":"gufo-font.min.css"}
|
package/package.json
CHANGED
|
Binary file
|