Projekt

Obecné

Profil

« Předchozí | Další » 

Revize e7d6bdce

Přidáno uživatelem Adam Mištera před více než 4 roky(ů)

Issue #7690 @2h
[+] Napojení detailu poznámek
[+] Refraktoring, stylování, přidání font-awesome
[+] Gitignore na vygenerované fonty

Zobrazit rozdíly:

.gitignore
108 108
.idea/sonarlint
109 109

  
110 110
# End of https://www.gitignore.io/api/laravel,phpstorm+all
111
/public/fonts/vendor/
app/Http/Controllers/DetailsController.php
32 32
    public function show($id)
33 33
    {
34 34
        $data = array(
35
            'title' => 'Title of the BOOK',
36 35
            'id' => $id,
37 36
            'arrArtefact' => Artefact::find($id),
38
            'likes' => ArtefactUser::where('artefact_id', $id)->get(),
37
            'likes' => ArtefactUser::where('artefact_id', $id)->count(),
39 38
            'metadata' => Metadata::where('artefact_id', $id)->get()
40 39
        );
41 40
        return view('detail.index') -> with($data);
package-lock.json
951 951
                "to-fast-properties": "^2.0.0"
952 952
            }
953 953
        },
954
        "@fortawesome/fontawesome-free": {
955
            "version": "5.13.0",
956
            "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-free/-/fontawesome-free-5.13.0.tgz",
957
            "integrity": "sha512-xKOeQEl5O47GPZYIMToj6uuA2syyFlq9EMSl2ui0uytjY9xbe8XS0pexNWmxrdcCyNGyDmLyYw5FtKsalBUeOg=="
958
        },
954 959
        "@mrmlnc/readdir-enhanced": {
955 960
            "version": "2.2.1",
956 961
            "resolved": "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz",
package.json
21 21
        "sass": "^1.15.2",
22 22
        "sass-loader": "^8.0.0",
23 23
        "vue-template-compiler": "^2.6.11"
24
    },
25
    "dependencies": {
26
        "@fortawesome/fontawesome-free": "^5.13.0"
24 27
    }
25 28
}
public/css/app.css
10882 10882
  }
10883 10883
}
10884 10884

  
10885
/*!
10886
 * Font Awesome Free 5.13.0 by @fontawesome - https://fontawesome.com
10887
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
10888
 */
10889

  
10890
.fa,
10891
.fas,
10892
.far,
10893
.fal,
10894
.fad,
10895
.fab {
10896
  -moz-osx-font-smoothing: grayscale;
10897
  -webkit-font-smoothing: antialiased;
10898
  display: inline-block;
10899
  font-style: normal;
10900
  font-variant: normal;
10901
  text-rendering: auto;
10902
  line-height: 1;
10903
}
10904

  
10905
.fa-lg {
10906
  font-size: 1.3333333333em;
10907
  line-height: 0.75em;
10908
  vertical-align: -0.0667em;
10909
}
10910

  
10911
.fa-xs {
10912
  font-size: 0.75em;
10913
}
10914

  
10915
.fa-sm {
10916
  font-size: 0.875em;
10917
}
10918

  
10919
.fa-1x {
10920
  font-size: 1em;
10921
}
10922

  
10923
.fa-2x {
10924
  font-size: 2em;
10925
}
10926

  
10927
.fa-3x {
10928
  font-size: 3em;
10929
}
10930

  
10931
.fa-4x {
10932
  font-size: 4em;
10933
}
10934

  
10935
.fa-5x {
10936
  font-size: 5em;
10937
}
10938

  
10939
.fa-6x {
10940
  font-size: 6em;
10941
}
10942

  
10943
.fa-7x {
10944
  font-size: 7em;
10945
}
10946

  
10947
.fa-8x {
10948
  font-size: 8em;
10949
}
10950

  
10951
.fa-9x {
10952
  font-size: 9em;
10953
}
10954

  
10955
.fa-10x {
10956
  font-size: 10em;
10957
}
10958

  
10959
.fa-fw {
10960
  text-align: center;
10961
  width: 1.25em;
10962
}
10963

  
10964
.fa-ul {
10965
  list-style-type: none;
10966
  margin-left: 2.5em;
10967
  padding-left: 0;
10968
}
10969

  
10970
.fa-ul > li {
10971
  position: relative;
10972
}
10973

  
10974
.fa-li {
10975
  left: -2em;
10976
  position: absolute;
10977
  text-align: center;
10978
  width: 2em;
10979
  line-height: inherit;
10980
}
10981

  
10982
.fa-border {
10983
  border: solid 0.08em #eee;
10984
  border-radius: 0.1em;
10985
  padding: 0.2em 0.25em 0.15em;
10986
}
10987

  
10988
.fa-pull-left {
10989
  float: left;
10990
}
10991

  
10992
.fa-pull-right {
10993
  float: right;
10994
}
10995

  
10996
.fa.fa-pull-left,
10997
.fas.fa-pull-left,
10998
.far.fa-pull-left,
10999
.fal.fa-pull-left,
11000
.fab.fa-pull-left {
11001
  margin-right: 0.3em;
11002
}
11003

  
11004
.fa.fa-pull-right,
11005
.fas.fa-pull-right,
11006
.far.fa-pull-right,
11007
.fal.fa-pull-right,
11008
.fab.fa-pull-right {
11009
  margin-left: 0.3em;
11010
}
11011

  
11012
.fa-spin {
11013
  -webkit-animation: fa-spin 2s infinite linear;
11014
          animation: fa-spin 2s infinite linear;
11015
}
11016

  
11017
.fa-pulse {
11018
  -webkit-animation: fa-spin 1s infinite steps(8);
11019
          animation: fa-spin 1s infinite steps(8);
11020
}
11021

  
11022
@-webkit-keyframes fa-spin {
11023
  0% {
11024
    transform: rotate(0deg);
11025
  }
11026

  
11027
  100% {
11028
    transform: rotate(360deg);
11029
  }
11030
}
11031

  
11032
@keyframes fa-spin {
11033
  0% {
11034
    transform: rotate(0deg);
11035
  }
11036

  
11037
  100% {
11038
    transform: rotate(360deg);
11039
  }
11040
}
11041

  
11042
.fa-rotate-90 {
11043
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
11044
  transform: rotate(90deg);
11045
}
11046

  
11047
.fa-rotate-180 {
11048
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
11049
  transform: rotate(180deg);
11050
}
11051

  
11052
.fa-rotate-270 {
11053
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
11054
  transform: rotate(270deg);
11055
}
11056

  
11057
.fa-flip-horizontal {
11058
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
11059
  transform: scale(-1, 1);
11060
}
11061

  
11062
.fa-flip-vertical {
11063
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
11064
  transform: scale(1, -1);
11065
}
11066

  
11067
.fa-flip-both,
11068
.fa-flip-horizontal.fa-flip-vertical {
11069
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
11070
  transform: scale(-1, -1);
11071
}
11072

  
11073
:root .fa-rotate-90,
11074
:root .fa-rotate-180,
11075
:root .fa-rotate-270,
11076
:root .fa-flip-horizontal,
11077
:root .fa-flip-vertical,
11078
:root .fa-flip-both {
11079
  -webkit-filter: none;
11080
          filter: none;
11081
}
11082

  
11083
.fa-stack {
11084
  display: inline-block;
11085
  height: 2em;
11086
  line-height: 2em;
11087
  position: relative;
11088
  vertical-align: middle;
11089
  width: 2.5em;
11090
}
11091

  
11092
.fa-stack-1x,
11093
.fa-stack-2x {
11094
  left: 0;
11095
  position: absolute;
11096
  text-align: center;
11097
  width: 100%;
11098
}
11099

  
11100
.fa-stack-1x {
11101
  line-height: inherit;
11102
}
11103

  
11104
.fa-stack-2x {
11105
  font-size: 2em;
11106
}
11107

  
11108
.fa-inverse {
11109
  color: #fff;
11110
}
11111

  
11112
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
11113
readers do not read off random characters that represent icons */
11114

  
11115
.fa-500px:before {
11116
  content: "\F26E";
11117
}
11118

  
11119
.fa-accessible-icon:before {
11120
  content: "\F368";
11121
}
11122

  
11123
.fa-accusoft:before {
11124
  content: "\F369";
11125
}
11126

  
11127
.fa-acquisitions-incorporated:before {
11128
  content: "\F6AF";
11129
}
11130

  
11131
.fa-ad:before {
11132
  content: "\F641";
11133
}
11134

  
11135
.fa-address-book:before {
11136
  content: "\F2B9";
11137
}
11138

  
11139
.fa-address-card:before {
11140
  content: "\F2BB";
11141
}
11142

  
11143
.fa-adjust:before {
11144
  content: "\F042";
11145
}
11146

  
11147
.fa-adn:before {
11148
  content: "\F170";
11149
}
11150

  
11151
.fa-adobe:before {
11152
  content: "\F778";
11153
}
11154

  
11155
.fa-adversal:before {
11156
  content: "\F36A";
11157
}
11158

  
11159
.fa-affiliatetheme:before {
11160
  content: "\F36B";
11161
}
11162

  
11163
.fa-air-freshener:before {
11164
  content: "\F5D0";
11165
}
11166

  
11167
.fa-airbnb:before {
11168
  content: "\F834";
11169
}
11170

  
11171
.fa-algolia:before {
11172
  content: "\F36C";
11173
}
11174

  
11175
.fa-align-center:before {
11176
  content: "\F037";
11177
}
11178

  
11179
.fa-align-justify:before {
11180
  content: "\F039";
11181
}
11182

  
11183
.fa-align-left:before {
11184
  content: "\F036";
11185
}
11186

  
11187
.fa-align-right:before {
11188
  content: "\F038";
11189
}
11190

  
11191
.fa-alipay:before {
11192
  content: "\F642";
11193
}
11194

  
11195
.fa-allergies:before {
11196
  content: "\F461";
11197
}
11198

  
11199
.fa-amazon:before {
11200
  content: "\F270";
11201
}
11202

  
11203
.fa-amazon-pay:before {
11204
  content: "\F42C";
11205
}
11206

  
11207
.fa-ambulance:before {
11208
  content: "\F0F9";
11209
}
11210

  
11211
.fa-american-sign-language-interpreting:before {
11212
  content: "\F2A3";
11213
}
11214

  
11215
.fa-amilia:before {
11216
  content: "\F36D";
11217
}
11218

  
11219
.fa-anchor:before {
11220
  content: "\F13D";
11221
}
11222

  
11223
.fa-android:before {
11224
  content: "\F17B";
11225
}
11226

  
11227
.fa-angellist:before {
11228
  content: "\F209";
11229
}
11230

  
11231
.fa-angle-double-down:before {
11232
  content: "\F103";
11233
}
11234

  
11235
.fa-angle-double-left:before {
11236
  content: "\F100";
11237
}
11238

  
11239
.fa-angle-double-right:before {
11240
  content: "\F101";
11241
}
11242

  
11243
.fa-angle-double-up:before {
11244
  content: "\F102";
11245
}
11246

  
11247
.fa-angle-down:before {
11248
  content: "\F107";
11249
}
11250

  
11251
.fa-angle-left:before {
11252
  content: "\F104";
11253
}
11254

  
11255
.fa-angle-right:before {
11256
  content: "\F105";
11257
}
11258

  
11259
.fa-angle-up:before {
11260
  content: "\F106";
11261
}
11262

  
11263
.fa-angry:before {
11264
  content: "\F556";
11265
}
11266

  
11267
.fa-angrycreative:before {
11268
  content: "\F36E";
11269
}
11270

  
11271
.fa-angular:before {
11272
  content: "\F420";
11273
}
11274

  
11275
.fa-ankh:before {
11276
  content: "\F644";
11277
}
11278

  
11279
.fa-app-store:before {
11280
  content: "\F36F";
11281
}
11282

  
11283
.fa-app-store-ios:before {
11284
  content: "\F370";
11285
}
11286

  
11287
.fa-apper:before {
11288
  content: "\F371";
11289
}
11290

  
11291
.fa-apple:before {
11292
  content: "\F179";
11293
}
11294

  
11295
.fa-apple-alt:before {
11296
  content: "\F5D1";
11297
}
11298

  
11299
.fa-apple-pay:before {
11300
  content: "\F415";
11301
}
11302

  
11303
.fa-archive:before {
11304
  content: "\F187";
11305
}
11306

  
11307
.fa-archway:before {
11308
  content: "\F557";
11309
}
11310

  
11311
.fa-arrow-alt-circle-down:before {
11312
  content: "\F358";
11313
}
11314

  
11315
.fa-arrow-alt-circle-left:before {
11316
  content: "\F359";
11317
}
11318

  
11319
.fa-arrow-alt-circle-right:before {
11320
  content: "\F35A";
11321
}
11322

  
11323
.fa-arrow-alt-circle-up:before {
11324
  content: "\F35B";
11325
}
11326

  
11327
.fa-arrow-circle-down:before {
11328
  content: "\F0AB";
11329
}
11330

  
11331
.fa-arrow-circle-left:before {
11332
  content: "\F0A8";
11333
}
11334

  
11335
.fa-arrow-circle-right:before {
11336
  content: "\F0A9";
11337
}
11338

  
11339
.fa-arrow-circle-up:before {
11340
  content: "\F0AA";
11341
}
11342

  
11343
.fa-arrow-down:before {
11344
  content: "\F063";
11345
}
11346

  
11347
.fa-arrow-left:before {
11348
  content: "\F060";
11349
}
11350

  
11351
.fa-arrow-right:before {
11352
  content: "\F061";
11353
}
11354

  
11355
.fa-arrow-up:before {
11356
  content: "\F062";
11357
}
11358

  
11359
.fa-arrows-alt:before {
11360
  content: "\F0B2";
11361
}
11362

  
11363
.fa-arrows-alt-h:before {
11364
  content: "\F337";
11365
}
11366

  
11367
.fa-arrows-alt-v:before {
11368
  content: "\F338";
11369
}
11370

  
11371
.fa-artstation:before {
11372
  content: "\F77A";
11373
}
11374

  
11375
.fa-assistive-listening-systems:before {
11376
  content: "\F2A2";
11377
}
11378

  
11379
.fa-asterisk:before {
11380
  content: "\F069";
11381
}
11382

  
11383
.fa-asymmetrik:before {
11384
  content: "\F372";
11385
}
11386

  
11387
.fa-at:before {
11388
  content: "\F1FA";
11389
}
11390

  
11391
.fa-atlas:before {
11392
  content: "\F558";
11393
}
11394

  
11395
.fa-atlassian:before {
11396
  content: "\F77B";
11397
}
11398

  
11399
.fa-atom:before {
11400
  content: "\F5D2";
11401
}
11402

  
11403
.fa-audible:before {
11404
  content: "\F373";
11405
}
11406

  
11407
.fa-audio-description:before {
11408
  content: "\F29E";
11409
}
11410

  
11411
.fa-autoprefixer:before {
11412
  content: "\F41C";
11413
}
11414

  
11415
.fa-avianex:before {
11416
  content: "\F374";
11417
}
11418

  
11419
.fa-aviato:before {
11420
  content: "\F421";
11421
}
11422

  
11423
.fa-award:before {
11424
  content: "\F559";
11425
}
11426

  
11427
.fa-aws:before {
11428
  content: "\F375";
11429
}
11430

  
11431
.fa-baby:before {
11432
  content: "\F77C";
11433
}
11434

  
11435
.fa-baby-carriage:before {
11436
  content: "\F77D";
11437
}
11438

  
11439
.fa-backspace:before {
11440
  content: "\F55A";
11441
}
11442

  
11443
.fa-backward:before {
11444
  content: "\F04A";
11445
}
11446

  
11447
.fa-bacon:before {
11448
  content: "\F7E5";
11449
}
11450

  
11451
.fa-bahai:before {
11452
  content: "\F666";
11453
}
11454

  
11455
.fa-balance-scale:before {
11456
  content: "\F24E";
11457
}
11458

  
11459
.fa-balance-scale-left:before {
11460
  content: "\F515";
11461
}
11462

  
11463
.fa-balance-scale-right:before {
11464
  content: "\F516";
11465
}
11466

  
11467
.fa-ban:before {
11468
  content: "\F05E";
11469
}
11470

  
11471
.fa-band-aid:before {
11472
  content: "\F462";
11473
}
11474

  
11475
.fa-bandcamp:before {
11476
  content: "\F2D5";
11477
}
11478

  
11479
.fa-barcode:before {
11480
  content: "\F02A";
11481
}
11482

  
11483
.fa-bars:before {
11484
  content: "\F0C9";
11485
}
11486

  
11487
.fa-baseball-ball:before {
11488
  content: "\F433";
11489
}
11490

  
11491
.fa-basketball-ball:before {
11492
  content: "\F434";
11493
}
11494

  
11495
.fa-bath:before {
11496
  content: "\F2CD";
11497
}
11498

  
11499
.fa-battery-empty:before {
11500
  content: "\F244";
11501
}
11502

  
11503
.fa-battery-full:before {
11504
  content: "\F240";
11505
}
11506

  
11507
.fa-battery-half:before {
11508
  content: "\F242";
11509
}
11510

  
11511
.fa-battery-quarter:before {
11512
  content: "\F243";
11513
}
11514

  
11515
.fa-battery-three-quarters:before {
11516
  content: "\F241";
11517
}
11518

  
11519
.fa-battle-net:before {
11520
  content: "\F835";
11521
}
11522

  
11523
.fa-bed:before {
11524
  content: "\F236";
11525
}
11526

  
11527
.fa-beer:before {
11528
  content: "\F0FC";
11529
}
11530

  
11531
.fa-behance:before {
11532
  content: "\F1B4";
11533
}
11534

  
11535
.fa-behance-square:before {
11536
  content: "\F1B5";
11537
}
11538

  
11539
.fa-bell:before {
11540
  content: "\F0F3";
11541
}
11542

  
11543
.fa-bell-slash:before {
11544
  content: "\F1F6";
11545
}
11546

  
11547
.fa-bezier-curve:before {
11548
  content: "\F55B";
11549
}
11550

  
11551
.fa-bible:before {
11552
  content: "\F647";
11553
}
11554

  
11555
.fa-bicycle:before {
11556
  content: "\F206";
11557
}
11558

  
11559
.fa-biking:before {
11560
  content: "\F84A";
11561
}
11562

  
11563
.fa-bimobject:before {
11564
  content: "\F378";
11565
}
11566

  
11567
.fa-binoculars:before {
11568
  content: "\F1E5";
11569
}
11570

  
11571
.fa-biohazard:before {
11572
  content: "\F780";
11573
}
11574

  
11575
.fa-birthday-cake:before {
11576
  content: "\F1FD";
11577
}
11578

  
11579
.fa-bitbucket:before {
11580
  content: "\F171";
11581
}
11582

  
11583
.fa-bitcoin:before {
11584
  content: "\F379";
11585
}
11586

  
11587
.fa-bity:before {
11588
  content: "\F37A";
11589
}
11590

  
11591
.fa-black-tie:before {
11592
  content: "\F27E";
11593
}
11594

  
11595
.fa-blackberry:before {
11596
  content: "\F37B";
11597
}
11598

  
11599
.fa-blender:before {
11600
  content: "\F517";
11601
}
11602

  
11603
.fa-blender-phone:before {
11604
  content: "\F6B6";
11605
}
11606

  
11607
.fa-blind:before {
11608
  content: "\F29D";
11609
}
11610

  
11611
.fa-blog:before {
11612
  content: "\F781";
11613
}
11614

  
11615
.fa-blogger:before {
11616
  content: "\F37C";
11617
}
11618

  
11619
.fa-blogger-b:before {
11620
  content: "\F37D";
11621
}
11622

  
11623
.fa-bluetooth:before {
11624
  content: "\F293";
11625
}
11626

  
11627
.fa-bluetooth-b:before {
11628
  content: "\F294";
11629
}
11630

  
11631
.fa-bold:before {
11632
  content: "\F032";
11633
}
11634

  
11635
.fa-bolt:before {
11636
  content: "\F0E7";
11637
}
11638

  
11639
.fa-bomb:before {
11640
  content: "\F1E2";
11641
}
11642

  
11643
.fa-bone:before {
11644
  content: "\F5D7";
11645
}
11646

  
11647
.fa-bong:before {
11648
  content: "\F55C";
11649
}
11650

  
11651
.fa-book:before {
11652
  content: "\F02D";
11653
}
11654

  
11655
.fa-book-dead:before {
11656
  content: "\F6B7";
11657
}
11658

  
11659
.fa-book-medical:before {
11660
  content: "\F7E6";
11661
}
11662

  
11663
.fa-book-open:before {
11664
  content: "\F518";
11665
}
11666

  
11667
.fa-book-reader:before {
11668
  content: "\F5DA";
11669
}
11670

  
11671
.fa-bookmark:before {
11672
  content: "\F02E";
11673
}
11674

  
11675
.fa-bootstrap:before {
11676
  content: "\F836";
11677
}
11678

  
11679
.fa-border-all:before {
11680
  content: "\F84C";
11681
}
11682

  
11683
.fa-border-none:before {
11684
  content: "\F850";
11685
}
11686

  
11687
.fa-border-style:before {
11688
  content: "\F853";
11689
}
11690

  
11691
.fa-bowling-ball:before {
11692
  content: "\F436";
11693
}
11694

  
11695
.fa-box:before {
11696
  content: "\F466";
11697
}
11698

  
11699
.fa-box-open:before {
11700
  content: "\F49E";
11701
}
11702

  
11703
.fa-box-tissue:before {
11704
  content: "\F95B";
11705
}
11706

  
11707
.fa-boxes:before {
11708
  content: "\F468";
11709
}
11710

  
11711
.fa-braille:before {
11712
  content: "\F2A1";
11713
}
11714

  
11715
.fa-brain:before {
11716
  content: "\F5DC";
11717
}
11718

  
11719
.fa-bread-slice:before {
11720
  content: "\F7EC";
11721
}
11722

  
11723
.fa-briefcase:before {
11724
  content: "\F0B1";
11725
}
11726

  
11727
.fa-briefcase-medical:before {
11728
  content: "\F469";
11729
}
11730

  
11731
.fa-broadcast-tower:before {
11732
  content: "\F519";
11733
}
11734

  
11735
.fa-broom:before {
11736
  content: "\F51A";
11737
}
11738

  
11739
.fa-brush:before {
11740
  content: "\F55D";
11741
}
11742

  
11743
.fa-btc:before {
11744
  content: "\F15A";
11745
}
11746

  
11747
.fa-buffer:before {
11748
  content: "\F837";
11749
}
11750

  
11751
.fa-bug:before {
11752
  content: "\F188";
11753
}
11754

  
11755
.fa-building:before {
11756
  content: "\F1AD";
11757
}
11758

  
11759
.fa-bullhorn:before {
11760
  content: "\F0A1";
11761
}
11762

  
11763
.fa-bullseye:before {
11764
  content: "\F140";
11765
}
11766

  
11767
.fa-burn:before {
11768
  content: "\F46A";
11769
}
11770

  
11771
.fa-buromobelexperte:before {
11772
  content: "\F37F";
11773
}
11774

  
11775
.fa-bus:before {
11776
  content: "\F207";
11777
}
11778

  
11779
.fa-bus-alt:before {
11780
  content: "\F55E";
11781
}
11782

  
11783
.fa-business-time:before {
11784
  content: "\F64A";
11785
}
11786

  
11787
.fa-buy-n-large:before {
11788
  content: "\F8A6";
11789
}
11790

  
11791
.fa-buysellads:before {
11792
  content: "\F20D";
11793
}
11794

  
11795
.fa-calculator:before {
11796
  content: "\F1EC";
11797
}
11798

  
11799
.fa-calendar:before {
11800
  content: "\F133";
11801
}
11802

  
11803
.fa-calendar-alt:before {
11804
  content: "\F073";
11805
}
11806

  
11807
.fa-calendar-check:before {
11808
  content: "\F274";
11809
}
11810

  
11811
.fa-calendar-day:before {
11812
  content: "\F783";
11813
}
11814

  
11815
.fa-calendar-minus:before {
11816
  content: "\F272";
11817
}
11818

  
11819
.fa-calendar-plus:before {
11820
  content: "\F271";
11821
}
11822

  
11823
.fa-calendar-times:before {
11824
  content: "\F273";
11825
}
11826

  
11827
.fa-calendar-week:before {
11828
  content: "\F784";
11829
}
11830

  
11831
.fa-camera:before {
11832
  content: "\F030";
11833
}
11834

  
11835
.fa-camera-retro:before {
11836
  content: "\F083";
11837
}
11838

  
11839
.fa-campground:before {
11840
  content: "\F6BB";
11841
}
11842

  
11843
.fa-canadian-maple-leaf:before {
11844
  content: "\F785";
11845
}
11846

  
11847
.fa-candy-cane:before {
11848
  content: "\F786";
11849
}
11850

  
11851
.fa-cannabis:before {
11852
  content: "\F55F";
11853
}
11854

  
11855
.fa-capsules:before {
11856
  content: "\F46B";
11857
}
11858

  
11859
.fa-car:before {
11860
  content: "\F1B9";
11861
}
11862

  
11863
.fa-car-alt:before {
11864
  content: "\F5DE";
11865
}
11866

  
11867
.fa-car-battery:before {
11868
  content: "\F5DF";
11869
}
11870

  
11871
.fa-car-crash:before {
11872
  content: "\F5E1";
11873
}
11874

  
11875
.fa-car-side:before {
11876
  content: "\F5E4";
11877
}
11878

  
11879
.fa-caravan:before {
11880
  content: "\F8FF";
11881
}
11882

  
11883
.fa-caret-down:before {
11884
  content: "\F0D7";
11885
}
11886

  
11887
.fa-caret-left:before {
11888
  content: "\F0D9";
11889
}
11890

  
11891
.fa-caret-right:before {
11892
  content: "\F0DA";
11893
}
11894

  
11895
.fa-caret-square-down:before {
11896
  content: "\F150";
11897
}
11898

  
11899
.fa-caret-square-left:before {
11900
  content: "\F191";
11901
}
11902

  
11903
.fa-caret-square-right:before {
11904
  content: "\F152";
11905
}
11906

  
11907
.fa-caret-square-up:before {
11908
  content: "\F151";
11909
}
11910

  
11911
.fa-caret-up:before {
11912
  content: "\F0D8";
11913
}
11914

  
11915
.fa-carrot:before {
11916
  content: "\F787";
11917
}
11918

  
11919
.fa-cart-arrow-down:before {
11920
  content: "\F218";
11921
}
11922

  
11923
.fa-cart-plus:before {
11924
  content: "\F217";
11925
}
11926

  
11927
.fa-cash-register:before {
11928
  content: "\F788";
11929
}
11930

  
11931
.fa-cat:before {
11932
  content: "\F6BE";
11933
}
11934

  
11935
.fa-cc-amazon-pay:before {
11936
  content: "\F42D";
11937
}
11938

  
11939
.fa-cc-amex:before {
11940
  content: "\F1F3";
11941
}
11942

  
11943
.fa-cc-apple-pay:before {
11944
  content: "\F416";
11945
}
11946

  
11947
.fa-cc-diners-club:before {
11948
  content: "\F24C";
11949
}
11950

  
11951
.fa-cc-discover:before {
11952
  content: "\F1F2";
11953
}
11954

  
11955
.fa-cc-jcb:before {
11956
  content: "\F24B";
11957
}
11958

  
11959
.fa-cc-mastercard:before {
11960
  content: "\F1F1";
11961
}
11962

  
11963
.fa-cc-paypal:before {
11964
  content: "\F1F4";
11965
}
11966

  
11967
.fa-cc-stripe:before {
11968
  content: "\F1F5";
11969
}
11970

  
11971
.fa-cc-visa:before {
11972
  content: "\F1F0";
11973
}
11974

  
11975
.fa-centercode:before {
11976
  content: "\F380";
11977
}
11978

  
11979
.fa-centos:before {
11980
  content: "\F789";
11981
}
11982

  
11983
.fa-certificate:before {
11984
  content: "\F0A3";
11985
}
11986

  
11987
.fa-chair:before {
11988
  content: "\F6C0";
11989
}
11990

  
11991
.fa-chalkboard:before {
11992
  content: "\F51B";
11993
}
11994

  
11995
.fa-chalkboard-teacher:before {
11996
  content: "\F51C";
11997
}
11998

  
11999
.fa-charging-station:before {
12000
  content: "\F5E7";
12001
}
12002

  
12003
.fa-chart-area:before {
12004
  content: "\F1FE";
12005
}
12006

  
12007
.fa-chart-bar:before {
12008
  content: "\F080";
12009
}
12010

  
12011
.fa-chart-line:before {
12012
  content: "\F201";
12013
}
12014

  
12015
.fa-chart-pie:before {
12016
  content: "\F200";
12017
}
12018

  
12019
.fa-check:before {
12020
  content: "\F00C";
12021
}
12022

  
12023
.fa-check-circle:before {
12024
  content: "\F058";
12025
}
12026

  
12027
.fa-check-double:before {
12028
  content: "\F560";
12029
}
12030

  
12031
.fa-check-square:before {
12032
  content: "\F14A";
12033
}
12034

  
12035
.fa-cheese:before {
12036
  content: "\F7EF";
12037
}
12038

  
12039
.fa-chess:before {
12040
  content: "\F439";
12041
}
12042

  
12043
.fa-chess-bishop:before {
12044
  content: "\F43A";
12045
}
12046

  
12047
.fa-chess-board:before {
12048
  content: "\F43C";
12049
}
12050

  
12051
.fa-chess-king:before {
12052
  content: "\F43F";
12053
}
12054

  
12055
.fa-chess-knight:before {
12056
  content: "\F441";
12057
}
12058

  
12059
.fa-chess-pawn:before {
12060
  content: "\F443";
12061
}
12062

  
12063
.fa-chess-queen:before {
12064
  content: "\F445";
12065
}
12066

  
12067
.fa-chess-rook:before {
12068
  content: "\F447";
12069
}
12070

  
12071
.fa-chevron-circle-down:before {
12072
  content: "\F13A";
12073
}
12074

  
12075
.fa-chevron-circle-left:before {
12076
  content: "\F137";
12077
}
12078

  
12079
.fa-chevron-circle-right:before {
12080
  content: "\F138";
12081
}
12082

  
12083
.fa-chevron-circle-up:before {
12084
  content: "\F139";
12085
}
12086

  
12087
.fa-chevron-down:before {
12088
  content: "\F078";
12089
}
12090

  
12091
.fa-chevron-left:before {
12092
  content: "\F053";
12093
}
12094

  
12095
.fa-chevron-right:before {
12096
  content: "\F054";
12097
}
12098

  
12099
.fa-chevron-up:before {
12100
  content: "\F077";
12101
}
12102

  
12103
.fa-child:before {
12104
  content: "\F1AE";
12105
}
12106

  
12107
.fa-chrome:before {
12108
  content: "\F268";
12109
}
12110

  
12111
.fa-chromecast:before {
12112
  content: "\F838";
12113
}
12114

  
12115
.fa-church:before {
12116
  content: "\F51D";
12117
}
12118

  
12119
.fa-circle:before {
12120
  content: "\F111";
12121
}
12122

  
12123
.fa-circle-notch:before {
12124
  content: "\F1CE";
12125
}
12126

  
12127
.fa-city:before {
12128
  content: "\F64F";
12129
}
12130

  
12131
.fa-clinic-medical:before {
12132
  content: "\F7F2";
12133
}
12134

  
12135
.fa-clipboard:before {
12136
  content: "\F328";
12137
}
12138

  
12139
.fa-clipboard-check:before {
12140
  content: "\F46C";
12141
}
12142

  
12143
.fa-clipboard-list:before {
12144
  content: "\F46D";
12145
}
12146

  
12147
.fa-clock:before {
12148
  content: "\F017";
12149
}
12150

  
12151
.fa-clone:before {
12152
  content: "\F24D";
12153
}
12154

  
12155
.fa-closed-captioning:before {
12156
  content: "\F20A";
12157
}
12158

  
12159
.fa-cloud:before {
12160
  content: "\F0C2";
12161
}
12162

  
12163
.fa-cloud-download-alt:before {
12164
  content: "\F381";
12165
}
12166

  
12167
.fa-cloud-meatball:before {
12168
  content: "\F73B";
12169
}
12170

  
12171
.fa-cloud-moon:before {
12172
  content: "\F6C3";
12173
}
12174

  
12175
.fa-cloud-moon-rain:before {
12176
  content: "\F73C";
12177
}
12178

  
12179
.fa-cloud-rain:before {
12180
  content: "\F73D";
12181
}
12182

  
12183
.fa-cloud-showers-heavy:before {
12184
  content: "\F740";
12185
}
12186

  
12187
.fa-cloud-sun:before {
12188
  content: "\F6C4";
12189
}
12190

  
12191
.fa-cloud-sun-rain:before {
12192
  content: "\F743";
12193
}
12194

  
12195
.fa-cloud-upload-alt:before {
12196
  content: "\F382";
12197
}
12198

  
12199
.fa-cloudscale:before {
12200
  content: "\F383";
12201
}
12202

  
12203
.fa-cloudsmith:before {
12204
  content: "\F384";
12205
}
12206

  
12207
.fa-cloudversify:before {
12208
  content: "\F385";
12209
}
12210

  
12211
.fa-cocktail:before {
12212
  content: "\F561";
12213
}
12214

  
12215
.fa-code:before {
12216
  content: "\F121";
12217
}
12218

  
12219
.fa-code-branch:before {
12220
  content: "\F126";
12221
}
12222

  
12223
.fa-codepen:before {
12224
  content: "\F1CB";
12225
}
12226

  
12227
.fa-codiepie:before {
12228
  content: "\F284";
12229
}
12230

  
12231
.fa-coffee:before {
12232
  content: "\F0F4";
12233
}
12234

  
12235
.fa-cog:before {
12236
  content: "\F013";
12237
}
12238

  
12239
.fa-cogs:before {
12240
  content: "\F085";
12241
}
12242

  
12243
.fa-coins:before {
12244
  content: "\F51E";
12245
}
12246

  
12247
.fa-columns:before {
12248
  content: "\F0DB";
12249
}
12250

  
12251
.fa-comment:before {
12252
  content: "\F075";
12253
}
12254

  
12255
.fa-comment-alt:before {
12256
  content: "\F27A";
12257
}
12258

  
12259
.fa-comment-dollar:before {
12260
  content: "\F651";
12261
}
12262

  
12263
.fa-comment-dots:before {
12264
  content: "\F4AD";
12265
}
12266

  
12267
.fa-comment-medical:before {
12268
  content: "\F7F5";
12269
}
12270

  
12271
.fa-comment-slash:before {
12272
  content: "\F4B3";
12273
}
12274

  
12275
.fa-comments:before {
12276
  content: "\F086";
12277
}
12278

  
12279
.fa-comments-dollar:before {
12280
  content: "\F653";
12281
}
12282

  
12283
.fa-compact-disc:before {
12284
  content: "\F51F";
12285
}
12286

  
12287
.fa-compass:before {
12288
  content: "\F14E";
12289
}
12290

  
12291
.fa-compress:before {
12292
  content: "\F066";
12293
}
12294

  
12295
.fa-compress-alt:before {
12296
  content: "\F422";
12297
}
12298

  
12299
.fa-compress-arrows-alt:before {
12300
  content: "\F78C";
12301
}
12302

  
12303
.fa-concierge-bell:before {
12304
  content: "\F562";
12305
}
12306

  
12307
.fa-confluence:before {
12308
  content: "\F78D";
12309
}
12310

  
12311
.fa-connectdevelop:before {
12312
  content: "\F20E";
12313
}
12314

  
... Rozdílový soubor je zkrácen, protože jeho délka přesahuje max. limit.

Také k dispozici: Unified diff