|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024 |
- .fa-folder{
- color: #333;
- }
- .light-red:before {
- color:#c97071
- }
- .medium-red:before {
- color:#ac4142
- }
- .dark-red:before {
- color:#742c2d
- }
- .light-green:before {
- color:#a6ba7b
- }
- .medium-green:before {
- color:#90a959
- }
- .dark-green:before {
- color:#66783e
- }
- .light-yellow:before {
- color:#fae0bc
- }
- .medium-yellow:before {
- color:#ee9e2e
- }
- .dark-yellow:before {
- color:#d88511
- }
- .light-blue:before {
- color:#6098b0
- }
- .medium-blue:before {
- color:#6a9fb5
- }
- .dark-blue:before {
- color:#46788d
- }
- .light-maroon:before {
- color:#be7953
- }
- .medium-maroon:before {
- color:#8f5536
- }
- .dark-maroon:before {
- color:#573421
- }
- .light-purple:before {
- color:#c7a4c0
- }
- .medium-purple:before {
- color:#aa759f
- }
- .dark-purple:before {
- color:#825078
- }
- .light-orange:before {
- color:#d99762
- }
- .medium-orange:before {
- color:#d28445
- }
- .dark-orange:before {
- color:#a35f27
- }
- .light-cyan:before {
- color:#6bb0a4
- }
- .medium-cyan:before {
- color:#75b5aa
- }
- .dark-cyan:before {
- color:#4d9085
- }
- .light-pink:before {
- color:#ff4ddb
- }
- .medium-pink:before {
- color:#f0c
- }
- .dark-pink:before {
- color:#b3008f
- }
- .theme-colour-check {
- background:#fff
- }
-
- @font-face {
- font-family:FontAwesome;
- font-weight:400;
- font-style:normal;
- src:url(/iconfonts1/fontawesome.af7ae50.woff2)
- }
- @font-face {
- font-family:Mfizz;
- src:url(/iconfonts1/mfixx.0a32a80.woff2);
- font-weight:400;
- font-style:normal
- }
- @font-face {
- font-family:Devicons;
- src:url(/iconfonts1/devopicons.e19892d.woff2);
- font-weight:400;
- font-style:normal
- }
- @font-face {
- font-family:file-icons;
- src:url("/iconfonts1/file-icons.woff2");
- font-weight:400;
- font-style:normal
- }
- @font-face {
- font-family:octicons;
- src:url(/iconfonts1/octicons.de59a97.woff2);
- font-weight:400;
- font-style:normal
- }
- .file-icon:before {
- font-weight:400;
- font-style:normal;
- text-align:center;
- width:16px;
- line-height:1;
- position:relative;
- display:inline-block;
- -webkit-font-smoothing:antialiased
- }
- .binary-icon:before {
- content:"\F094"
- }
- .binary-icon:before,.book-icon:before {
- font-family:octicons;
- font-size:16px;
- top:1px
- }
- .book-icon:before {
- content:"\F007"
- }
- .brew-icon:before {
- font-family:octicons;
- font-size:16px;
- top:1px;
- content:"\F069";
- font-size:15px;
- left:1px
- }
- .checklist-icon:before {
- font-family:octicons;
- font-size:16px;
- top:1px;
- content:"\F076";
- font-size:17px;
- left:1px
- }
- .code-icon:before {
- content:"\F05F"
- }
- .code-icon:before,.database-icon:before {
- font-family:octicons;
- font-size:16px;
- top:1px
- }
- .database-icon:before {
- content:"\F096"
- }
- .gear-icon:before {
- content:"\F02F"
- }
- .gear-icon:before,.git-commit-icon:before {
- font-family:octicons;
- font-size:16px;
- top:1px
- }
- .git-commit-icon:before {
- content:"\F01F"
- }
- .git-merge-icon:before {
- content:"\F023"
- }
- .git-merge-icon:before,.github-icon:before {
- font-family:octicons;
- font-size:16px;
- top:1px
- }
- .github-icon:before {
- content:"\F00A"
- }
- .graph-icon:before {
- content:"\F043"
- }
- .graph-icon:before,.image-icon:before {
- font-family:octicons;
- font-size:16px;
- top:1px
- }
- .image-icon:before {
- content:"\F012"
- }
- .key-icon:before {
- content:"\F049"
- }
- .key-icon:before,.link-icon:before {
- font-family:octicons;
- font-size:16px;
- top:1px
- }
- .link-icon:before {
- content:"\F0B0"
- }
- .markdown-icon:before {
- content:"\F0C9"
- }
- .markdown-icon:before,.package-icon:before {
- font-family:octicons;
- font-size:16px;
- top:1px
- }
- .package-icon:before {
- content:"\F0C4"
- }
- .ruby-icon:before {
- content:"\F047"
- }
- .ruby-icon:before,.secret-icon:before {
- font-family:octicons;
- font-size:16px;
- top:1px
- }
- .secret-icon:before {
- content:"\F08C"
- }
- .squirrel-icon:before {
- font-family:octicons;
- font-size:16px;
- top:1px;
- content:"\F0B2";
- font-size:15px
- }
- .text-icon:before {
- content:"\F011"
- }
- .text-icon:before,.zip-icon:before {
- font-family:octicons;
- font-size:16px;
- top:1px
- }
- .zip-icon:before {
- content:"\F013"
- }
- .android-icon:before {
- font-family:FontAwesome;
- font-size:13px;
- content:"\F17B";
- font-size:16px;
- top:1px
- }
- .at-icon:before {
- content:"\F1FA"
- }
- .at-icon:before,.audio-icon:before {
- font-family:FontAwesome;
- font-size:13px;
- font-size:15px;
- top:1px
- }
- .audio-icon:before {
- content:"\F028"
- }
- .bullhorn-icon:before {
- font-family:FontAwesome;
- font-size:13px;
- content:"\F0A1";
- font-size:16px;
- top:2px
- }
- .calc-icon:before {
- content:"\F1EC"
- }
- .calc-icon:before,.coffee-icon:before {
- font-family:FontAwesome;
- font-size:13px;
- font-size:14px
- }
- .coffee-icon:before {
- content:"\F0F4";
- top:1px
- }
- .css3-icon:before {
- content:"\F13C";
- top:0
- }
- .circle-icon:before,.css3-icon:before {
- font-family:FontAwesome;
- font-size:13px
- }
- .circle-icon:before {
- content:"\F111";
- font-size:16px;
- top:1px
- }
- .earth-icon:before {
- content:"\F0AC"
- }
- .earth-icon:before,.gears-icon:before {
- font-family:FontAwesome;
- font-size:13px;
- font-size:15px
- }
- .gears-icon:before {
- content:"\F085"
- }
- .html5-icon:before {
- font-family:FontAwesome;
- font-size:13px;
- content:"\F13B";
- font-size:15px;
- top:1px
- }
- .mobile-icon:before {
- font-family:FontAwesome;
- font-size:13px;
- content:"\F10B";
- font-size:20px;
- top:2px
- }
- .moon-icon:before {
- font-family:FontAwesome;
- font-size:13px;
- content:"\F186";
- font-size:16px;
- top:1px
- }
- .music-icon:before {
- content:"\F001"
- }
- .music-icon:before,.print-icon:before {
- font-family:FontAwesome;
- font-size:13px;
- font-size:15px
- }
- .print-icon:before {
- content:"\F02F";
- top:2px
- }
- .recycle-icon:before {
- font-family:FontAwesome;
- font-size:13px;
- content:"\F1B8";
- font-size:15px;
- top:2px
- }
- .rss-icon:before {
- font-family:FontAwesome;
- font-size:13px;
- content:"\F143";
- font-size:16px;
- top:2px
- }
- .smarty-icon:before {
- font-family:FontAwesome;
- font-size:13px;
- content:"\F0EB";
- font-size:15px
- }
- .sourcemap-icon:before {
- content:"\F279"
- }
- .sourcemap-icon:before,.sun-icon:before {
- font-family:FontAwesome;
- font-size:13px;
- font-size:14px
- }
- .sun-icon:before {
- content:"\F185";
- -webkit-font-smoothing:subpixel-antialiased
- }
- .toc-icon:before {
- font-family:FontAwesome;
- font-size:13px;
- content:"\F03A";
- font-size:15px;
- top:2px
- }
- .twig-icon:before {
- content:"\F1BB"
- }
- .pdf-icon:before,.twig-icon:before {
- font-family:FontAwesome;
- font-size:13px;
- font-size:14px
- }
- .pdf-icon:before {
- content:"\F1C1"
- }
- .folder-icon:before {
- content:"\F07B"
- }
- .folder-icon-open:before,.folder-icon:before {
- font-family:FontAwesome;
- font-size:13px;
- font-size:14px
- }
- .folder-icon-open:before {
- content:"\F07C"
- }
- .file-generic:before {
- font-family:FontAwesome;
- font-size:13px;
- content:"\F0F6";
- font-size:14px
- }
- .apache-icon:before {
- content:"\F102";
- top:3px
- }
- .apache-icon:before,.archlinux-icon:before {
- font-family:Mfizz;
- font-size:14px;
- font-size:15px
- }
- .archlinux-icon:before {
- content:"A";
- top:1px
- }
- .c-icon:before {
- font-family:Mfizz;
- font-size:14px;
- content:"\F106";
- top:1px;
- font-size:13px
- }
- .cpp-icon:before {
- content:"\F10B"
- }
- .cpp-icon:before,.csharp-icon:before {
- font-family:Mfizz;
- font-size:14px;
- top:1px
- }
- .csharp-icon:before {
- content:"\F10C"
- }
- .debian-icon:before {
- content:"\F111"
- }
- .debian-icon:before,.elixir-icon:before {
- font-family:Mfizz;
- font-size:14px;
- top:1px
- }
- .elixir-icon:before {
- content:"\F113"
- }
- .gnome-icon:before {
- font-family:Mfizz;
- font-size:14px;
- content:"\F119";
- top:1px
- }
- .haskell-icon:before {
- content:"\F121"
- }
- .haskell-icon:before,.java-icon:before {
- font-family:Mfizz;
- font-size:14px;
- top:2px;
- font-size:16px
- }
- .java-icon:before {
- content:"\F126"
- }
- .js-icon:before {
- font-family:Mfizz;
- content:"\F129";
- top:1px;
- font-size:14px
- }
- .msql-icon:before {
- font-family:Mfizz;
- font-size:14px;
- content:"\F136";
- top:2px;
- font-size:15px;
- text-shadow:0 0 0
- }
- .objc-icon:before {
- font-family:Mfizz;
- font-size:14px;
- content:"\F13E";
- top:2px;
- font-size:16px
- }
- .osx-icon:before {
- content:"\F141"
- }
- .osx-icon:before,.perl-icon:before {
- font-family:Mfizz;
- font-size:14px;
- top:1px
- }
- .perl-icon:before {
- content:"\F142"
- }
- .python-icon:before {
- font-family:Mfizz;
- font-size:14px;
- content:"\F14C";
- top:1px
- }
- .red-hat-icon:before {
- font-family:Mfizz;
- font-size:14px;
- content:"\F14E";
- top:2px
- }
- .scala-icon:before {
- content:"\F154"
- }
- .scala-icon:before,.sql-icon:before {
- font-family:Mfizz;
- font-size:14px;
- top:1px
- }
- .sql-icon:before {
- content:"\F10E"
- }
- .svg-icon:before {
- font-family:Mfizz;
- font-size:14px;
- content:"\F15C";
- top:1px
- }
- .tt-icon:before {
- font-family:Mfizz;
- font-size:14px;
- content:"TT"
- }
- .x11-icon:before {
- font-family:Mfizz;
- font-size:14px;
- content:"\F16E";
- top:1px;
- font-size:13px
- }
- .angular-icon:before {
- font-family:Devicons;
- font-size:16px;
- top:3px;
- content:"\E653"
- }
- .appcelerator-icon:before {
- font-family:Devicons;
- font-size:16px;
- top:3px;
- content:"\E6AB"
- }
- .appstore-icon:before {
- content:"\E613"
- }
- .appstore-icon:before,.asp-icon:before {
- font-family:Devicons;
- font-size:16px;
- top:3px
- }
- .asp-icon:before {
- content:"\E67F"
- }
- .atom-icon:before {
- content:"\E664";
- -webkit-font-smoothing:subpixel-antialiased
- }
- .atom-icon:before,.backbone-icon:before {
- font-family:Devicons;
- font-size:16px;
- top:3px
- }
- .backbone-icon:before {
- content:"\E652"
- }
- .bootstrap-icon:before {
- font-family:Devicons;
- font-size:16px;
- top:3px;
- content:"\E647";
- font-size:15px;
- top:2px
- }
- .bower-icon:before {
- content:"\E64D";
- text-shadow:0 0 0
- }
- .bower-icon:before,.chrome-icon:before {
- font-family:Devicons;
- font-size:16px;
- top:3px
- }
- .chrome-icon:before {
- content:"\E643"
- }
- .clojure-icon:before {
- font-family:Devicons;
- font-size:16px;
- top:3px;
- content:"\E668";
- -webkit-font-smoothing:subpixel-antialiased
- }
- .compass-icon:before {
- font-family:Devicons;
- font-size:16px;
- top:3px;
- content:"\E661";
- font-size:14px;
- top:2px
- }
- .dart-icon:before {
- font-family:Devicons;
- font-size:16px;
- top:3px;
- content:"\E698";
- font-size:15px;
- top:2px
- }
- .dlang-icon:before {
- font-family:Devicons;
- font-size:16px;
- top:3px;
- content:"\E6AF"
- }
- .dojo-icon:before {
- font-family:Devicons;
- top:3px;
- content:"\E61C";
- font-size:16px;
- top:4px;
- -webkit-transform:scale(1.2);
- transform:scale(1.2);
- -webkit-font-smoothing:subpixel-antialiased
- }
- .dropbox-icon:before {
- content:"\E607"
- }
- .dropbox-icon:before,.eclipse-icon:before {
- font-family:Devicons;
- font-size:16px;
- top:3px
- }
- .eclipse-icon:before {
- content:"\E69E"
- }
- .erlang-icon:before {
- content:"\E6B1"
- }
- .erlang-icon:before,.extjs-icon:before {
- font-family:Devicons;
- font-size:16px;
- top:3px
- }
- .extjs-icon:before {
- content:"\E68E"
- }
- .fsharp-icon:before {
- content:"\E6A7";
- left:1px
- }
- .fsharp-icon:before,.git-icon:before {
- font-family:Devicons;
- font-size:16px;
- top:3px;
- top:2px
- }
- .git-icon:before {
- content:"\E602";
- font-size:15px
- }
- .heroku-icon:before {
- font-family:Devicons;
- font-size:16px;
- top:3px;
- content:"\E67B"
- }
- .jquery-icon:before {
- content:"\E650"
- }
- .jquery-icon:before,.jqueryui-icon:before {
- font-family:Devicons;
- font-size:16px;
- top:3px;
- font-size:15px;
- top:2px
- }
- .jqueryui-icon:before {
- content:"\E654"
- }
- .laravel-icon:before {
- content:"\E63F"
- }
- .laravel-icon:before,.materialize-icon:before {
- font-family:Devicons;
- font-size:16px;
- top:3px;
- -webkit-font-smoothing:subpixel-antialiased
- }
- .materialize-icon:before {
- content:"\E6B6";
- -webkit-transform:scale(1.2);
- transform:scale(1.2)
- }
- .modernizr-icon:before {
- font-family:Devicons;
- font-size:16px;
- top:3px;
- content:"\E620"
- }
- .mootools-icon:before {
- content:"\E68F";
- text-shadow:0 0 0
- }
- .mootools-icon:before,.node-icon:before {
- font-family:Devicons;
- font-size:16px;
- top:3px
- }
- .node-icon:before {
- content:"\E618"
- }
- .pod-icon:before {
- font-family:Devicons;
- font-size:16px;
- top:3px;
- content:"\E669";
- font-size:15px;
- top:2px
- }
- .prolog-icon:before {
- content:"\E6A1"
- }
- .prolog-icon:before,.rails-icon:before {
- font-family:Devicons;
- font-size:16px;
- top:3px
- }
- .rails-icon:before {
- content:"\E63B"
- }
- .raphael-icon:before {
- font-family:Devicons;
- font-size:16px;
- top:3px;
- content:"\E65F";
- font-size:15px
- }
- .requirejs-icon:before {
- content:"\E670"
- }
- .requirejs-icon:before,.rust-icon:before {
- font-family:Devicons;
- font-size:16px;
- top:3px
- }
- .rust-icon:before {
- content:"\E6A8"
- }
- .sass-icon:before {
- content:"\E64B"
- }
- .sass-icon:before,.sencha-icon:before {
- font-family:Devicons;
- font-size:16px;
- top:3px
- }
- .sencha-icon:before {
- content:"\E68C"
- }
- .snapsvg-icon:before {
- content:"\E65E"
- }
- .snapsvg-icon:before,.swift-icon:before {
- font-family:Devicons;
- font-size:16px;
- top:3px
- }
- .swift-icon:before {
- content:"\E655";
- left:-1px
- }
- .travis-icon:before {
- content:"\E67E"
- }
- .travis-icon:before,.uikit-icon:before {
- font-family:Devicons;
- font-size:16px;
- top:3px;
- font-size:15px;
- top:2px
- }
- .uikit-icon:before {
- content:"\E673"
- }
- .unity3d-icon:before {
- content:"\E621"
- }
- .unity3d-icon:before,.vim-icon:before {
- font-family:Devicons;
- font-size:16px;
- top:3px
- }
- .vim-icon:before {
- content:"\E6C5"
- }
- .vs-icon:before {
- content:"\E60C"
- }
- .vs-icon:before,.windows-icon:before {
- font-family:Devicons;
- font-size:16px;
- top:3px;
- font-size:14px;
- top:2px
- }
- .windows-icon:before {
- content:"\E60F"
- }
- .yeoman-icon:before {
- font-family:Devicons;
- font-size:16px;
- top:3px;
- content:"\E67A"
- }
- ._1c-icon:before {
- content:"\A5EA"
- }
- ._1c-alt-icon:before,._1c-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:3px;
- font-size:16px
- }
- ._1c-alt-icon:before {
- content:"\EA28"
- }
- .abap-icon:before {
- content:"\E92B"
- }
- .abap-icon:before,.access-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .access-icon:before {
- content:"\E9EA"
- }
- .ada-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E90B";
- top:3px;
- font-size:17px
- }
- .ae-icon:before {
- content:"\E9F3"
- }
- .ae-icon:before,.ahk-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .ahk-icon:before {
- content:"\E932"
- }
- .ai-icon:before {
- content:"\E6B4"
- }
- .ai-icon:before,.alloy-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .alloy-icon:before {
- content:"\E935"
- }
- .alpine-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E9FF";
- top:2px;
- font-size:16px
- }
- .ampl-icon:before {
- content:"\E94E";
- left:1px
- }
- .ampl-icon:before,.amx-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:3px;
- font-size:16px
- }
- .amx-icon:before {
- content:"\E99B"
- }
- .ant-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E93E";
- top:4px;
- font-size:18px;
- -webkit-transform:scale(1.1);
- transform:scale(1.1)
- }
- .antlr-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E92C";
- top:3px
- }
- .api-icon:before {
- content:"\E92D"
- }
- .api-icon:before,.apl-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .apl-icon:before {
- content:"\234B"
- }
- .apple-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E925";
- top:1px
- }
- .appveyor-icon:before {
- content:"\E923"
- }
- .appveyor-icon:before,.arc-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .arc-icon:before {
- content:"\E92F"
- }
- .arduino-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E930";
- top:3px;
- font-size:16px
- }
- .arttext-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\24D0";
- top:2px
- }
- .as-icon:before {
- content:"\E92E"
- }
- .as-icon:before,.asciidoc-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:1px;
- font-size:14px
- }
- .asciidoc-icon:before {
- content:"\E918"
- }
- .ats-icon:before {
- content:"\E934"
- }
- .ats-icon:before,.audacity-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .audacity-icon:before {
- content:"\E9F9"
- }
- .augeas-icon:before {
- content:"\E931"
- }
- .augeas-icon:before,.autoit-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .autoit-icon:before {
- content:"\E933";
- font-size:16px
- }
- .babel-icon:before {
- content:"\E91F";
- left:1px
- }
- .babel-icon:before,.bibtex-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .bibtex-icon:before {
- content:"\E601";
- font-size:16px;
- -webkit-font-smoothing:subpixel-antialiased
- }
- .blender-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E9FA";
- top:2px
- }
- .bluespec-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E93C";
- top:1px;
- font-size:13px;
- left:1px
- }
- .boo-icon:before {
- content:"\E939"
- }
- .boo-icon:before,.boot-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .boot-icon:before {
- content:"\F103";
- font-size:16px
- }
- .brain-icon:before {
- content:"\E93A"
- }
- .brain-icon:before,.brakeman-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .brakeman-icon:before {
- content:"\E9D6"
- }
- .bro-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E93B";
- top:3px;
- font-size:16px
- }
- .broccoli-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E922";
- top:1px;
- font-size:14px
- }
- .byond-icon:before {
- content:"\E962"
- }
- .byond-icon:before,.cabal-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .cabal-icon:before {
- content:"\E9C2"
- }
- .cake-icon:before {
- content:"\E9E3"
- }
- .cake-icon:before,.cakefile-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .cakefile-icon:before {
- content:"\E924"
- }
- .cakephp-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E9D3";
- top:1px;
- font-size:14px
- }
- .cc-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E9D5";
- top:2px;
- font-size:16px
- }
- .ceylon-icon:before {
- content:"\E94F"
- }
- .ceylon-icon:before,.cf-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .cf-icon:before {
- content:"\E929"
- }
- .chai-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"c";
- top:3px;
- font-size:16px
- }
- .chapel-icon:before {
- content:"\E950"
- }
- .chapel-icon:before,.chartjs-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .chartjs-icon:before {
- content:"\EA0B"
- }
- .chuck-icon:before {
- content:"\E943"
- }
- .chuck-icon:before,.circleci-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .circleci-icon:before {
- content:"\EA12";
- font-size:14px
- }
- .cirru-icon:before {
- content:"\E951"
- }
- .cirru-icon:before,.cl-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px;
- text-shadow:0 0 0
- }
- .cl-icon:before {
- content:"\E972"
- }
- .clarion-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E952";
- top:1px;
- font-size:14px;
- left:1px
- }
- .clean-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E95B";
- top:2px;
- font-size:16px
- }
- .click-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E95C";
- top:2px
- }
- .clips-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E940";
- top:3px;
- font-size:18px
- }
- .cljs-icon:before {
- content:"\F104";
- top:2px
- }
- .cljs-icon:before,.cmake-icon:before {
- font-family:file-icons;
- font-size:15px
- }
- .cmake-icon:before {
- content:"\E93F";
- top:1px;
- font-size:14px
- }
- .codecov-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\2602";
- top:2px
- }
- .composer-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E683";
- top:0
- }
- .config-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\F07C";
- top:2px;
- font-size:14px
- }
- .cordova-icon:before {
- content:"\EA11"
- }
- .coq-icon:before,.cordova-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .coq-icon:before {
- content:"\E95F";
- font-size:16px;
- left:1px
- }
- .cp-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E942";
- top:3px;
- font-size:17px
- }
- .creole-icon:before {
- content:"\E95E"
- }
- .creole-icon:before,.crystal-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .crystal-icon:before {
- content:"\E902";
- left:1px
- }
- .csound-icon:before {
- content:"\E9F0"
- }
- .csound-icon:before,.csscript-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .csscript-icon:before {
- content:"\E9E2"
- }
- .cucumber-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\F02B";
- top:3px
- }
- .cython-icon:before {
- content:"\E963"
- }
- .cython-icon:before,.d3-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .d3-icon:before {
- content:"\EA10"
- }
- .darcs-icon:before {
- content:"\E964"
- }
- .darcs-icon:before,.dashboard-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .dashboard-icon:before {
- content:"\F07D";
- font-size:13px
- }
- .dbase-icon:before {
- content:"\E9F1"
- }
- .dbase-icon:before,.default-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .default-icon:before {
- content:"\1F5CC";
- font-size:14px
- }
- .diff-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E960";
- top:2px
- }
- .docker-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\F106";
- top:3px;
- font-size:18px
- }
- .doxygen-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E928";
- top:1px;
- font-size:13px
- }
- .doge-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E946";
- top:2px
- }
- .dyalog-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E90C";
- top:1px;
- font-size:14px;
- left:1px
- }
- .dylib-icon:before {
- content:"\EA15";
- top:2px
- }
- .dylib-icon:before,.e-icon:before {
- font-family:file-icons;
- font-size:15px
- }
- .e-icon:before {
- content:"E";
- top:1px;
- font-size:14px
- }
- .eagle-icon:before {
- content:"\E965"
- }
- .eagle-icon:before,.ec-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .ec-icon:before {
- content:"\E9C9"
- }
- .ecere-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E966";
- top:3px;
- font-size:16px
- }
- .editorconfig-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\EA1B";
- top:3px
- }
- .eiffel-icon:before {
- content:"\E967";
- top:2px
- }
- .eiffel-icon:before,.electron-icon:before {
- font-family:file-icons;
- font-size:15px;
- font-size:16px
- }
- .electron-icon:before {
- content:"\EA27";
- top:3px;
- text-shadow:0 0 0
- }
- .elm-icon:before {
- content:"\F102";
- top:2px
- }
- .elm-icon:before,.em-icon:before {
- font-family:file-icons;
- font-size:15px
- }
- .em-icon:before {
- content:"\E968";
- top:3px;
- font-size:16px
- }
- .ember-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E61B";
- top:2px;
- font-size:14px
- }
- .emacs-icon:before {
- content:"\E926";
- top:2px
- }
- .emacs-icon:before,.eq-icon:before {
- font-family:file-icons;
- font-size:15px
- }
- .eq-icon:before {
- content:"\EA0A";
- top:5px
- }
- .eslint-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\EA0F";
- top:3px;
- font-size:16px
- }
- .excel-icon:before {
- content:"\E9EE"
- }
- .excel-icon:before,.fabfile-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .fabfile-icon:before {
- content:"\E94B";
- font-size:16px
- }
- .factor-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E96A";
- top:3px;
- font-size:18px;
- left:-2px;
- -webkit-transform:scale(1.2);
- transform:scale(1.2)
- }
- .fancy-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E96B";
- top:2px;
- font-size:16px
- }
- .fantom-icon:before {
- content:"\E96F";
- left:1px
- }
- .fantom-icon:before,.fbx-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .fbx-icon:before {
- content:"\E9FC"
- }
- .ff-icon:before {
- content:"\FB00"
- }
- .ff-icon:before,.finder-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:3px
- }
- .finder-icon:before {
- content:"\E9E9";
- font-size:16px
- }
- .flow-icon:before {
- content:"\E921";
- top:1px
- }
- .flow-icon:before,.flux-icon:before {
- font-family:file-icons;
- font-size:15px
- }
- .flux-icon:before {
- content:"\E969";
- top:2px
- }
- .font-icon:before {
- content:"\E90F"
- }
- .font-icon:before,.fortran-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:1px;
- font-size:14px;
- left:1px
- }
- .fortran-icon:before {
- content:"\E90A"
- }
- .freemarker-icon:before {
- content:"\E970"
- }
- .freemarker-icon:before,.frege-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px;
- font-size:16px;
- left:1px
- }
- .frege-icon:before {
- content:"\E96E"
- }
- .fuelux-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\EA09";
- top:3px;
- font-size:16px;
- left:2px;
- -webkit-transform:scale(1.15);
- transform:scale(1.15);
- text-shadow:0 0 0
- }
- .gams-icon:before {
- content:"\E973";
- top:2px
- }
- .gams-icon:before,.gap-icon:before {
- font-family:file-icons;
- font-size:15px;
- left:1px
- }
- .gap-icon:before {
- content:"\E971";
- top:3px;
- font-size:16px
- }
- .gdb-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\EA08";
- top:3px;
- font-size:16px;
- -webkit-transform:scale(1.15);
- transform:scale(1.15);
- text-shadow:0 0 0
- }
- .genshi-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E976";
- top:3px
- }
- .gentoo-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E96D";
- top:1px;
- font-size:14px;
- left:1px
- }
- .gf-icon:before {
- content:"\E978"
- }
- .gf-icon:before,.glade-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .glade-icon:before {
- content:"\E938"
- }
- .glyphs-icon:before {
- content:"G"
- }
- .glyphs-icon:before,.gml-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:3px
- }
- .gml-icon:before {
- content:"\E975";
- font-size:16px
- }
- .gn-icon:before {
- content:"\EA25"
- }
- .gn-icon:before,.gnu-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .gnu-icon:before {
- content:"\E679";
- font-size:16px;
- text-shadow:0 0 0
- }
- .go-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E624";
- top:3px
- }
- .godot-icon:before {
- content:"\E974"
- }
- .godot-icon:before,.golo-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .golo-icon:before {
- content:"\E979"
- }
- .gosu-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E97A";
- top:2px
- }
- .gradle-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E903";
- top:3px;
- font-size:16px;
- left:1px
- }
- .graphql-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E97C";
- top:2px
- }
- .graphviz-icon:before {
- content:"\E97D";
- left:1px
- }
- .graphviz-icon:before,.groovy-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:4px;
- font-size:17px
- }
- .groovy-icon:before {
- content:"\E904";
- left:-1px
- }
- .grunt-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E611";
- top:1px;
- font-size:14px
- }
- .gulp-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E610";
- top:0;
- font-size:16px
- }
- .hack-icon:before {
- content:"\E9CE"
- }
- .hack-icon:before,.haml-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .haml-icon:before {
- content:"\F15B"
- }
- .harbour-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E97B";
- top:2px;
- font-size:16px;
- text-shadow:0 0 0
- }
- .hashicorp-icon:before {
- content:"\E97E"
- }
- .hashicorp-icon:before,.haxe-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .haxe-icon:before {
- content:"\E907"
- }
- .hy-icon:before {
- content:"\E97F";
- top:2px
- }
- .hy-icon:before,.idl-icon:before {
- font-family:file-icons;
- font-size:15px
- }
- .idl-icon:before {
- content:"\E947";
- top:3px;
- font-size:18px
- }
- .idris-icon:before {
- content:"\E983"
- }
- .idris-icon:before,.igorpro-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px;
- font-size:16px;
- -webkit-font-smoothing:subpixel-antialiased
- }
- .igorpro-icon:before {
- content:"\E980"
- }
- .indesign-icon:before {
- content:"\E9F4"
- }
- .indesign-icon:before,.inform7-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .inform7-icon:before {
- content:"\E984";
- font-size:16px;
- text-shadow:0 0 0
- }
- .inno-icon:before {
- content:"\E985";
- top:2px
- }
- .inno-icon:before,.io-icon:before {
- font-family:file-icons;
- font-size:15px
- }
- .io-icon:before {
- content:"\E981";
- top:1px;
- font-size:13px;
- -webkit-font-smoothing:subpixel-antialiased
- }
- .ioke-icon:before {
- content:"\E982"
- }
- .ioke-icon:before,.ionic-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .ionic-icon:before {
- content:"\F14B"
- }
- .isabelle-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E945";
- top:2px;
- font-size:16px
- }
- .j-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E937";
- top:1px;
- font-size:13px
- }
- .jade-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E90D";
- top:1px;
- font-size:14px
- }
- .jake-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E948";
- top:3px;
- font-size:16px
- }
- .jenkins-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E667";
- top:3px;
- font-size:18px;
- text-shadow:0 0 0
- }
- .jinja-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E944";
- top:2px
- }
- .jsonld-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E958";
- top:3px;
- font-size:17px
- }
- .jsx-icon:before {
- content:"\E9E6"
- }
- .jsx-icon:before,.julia-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:1px;
- font-size:14px
- }
- .julia-icon:before {
- content:"\26EC"
- }
- .jupyter-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E987";
- top:3px;
- font-size:16px
- }
- .karma-icon:before {
- content:"\E9CD"
- }
- .karma-icon:before,.keynote-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .keynote-icon:before {
- content:"\E9E5"
- }
- .khronos-icon:before {
- content:"\E9F8"
- }
- .khronos-icon:before,.kivy-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .kivy-icon:before {
- content:"\E901"
- }
- .knockout-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"K";
- top:2px
- }
- .kotlin-icon:before {
- content:"\E989"
- }
- .kotlin-icon:before,.krl-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:1px;
- font-size:14px
- }
- .krl-icon:before {
- content:"\E988"
- }
- .labview-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E98A";
- top:2px;
- font-size:16px
- }
- .lasso-icon:before {
- content:"\E98C";
- left:1px
- }
- .lasso-icon:before,.leaflet-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .leaflet-icon:before {
- content:"\EA07"
- }
- .lean-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"L";
- top:1px;
- font-size:13px
- }
- .lein-icon:before {
- content:"\F105";
- top:3px;
- text-shadow:0 0 0;
- -webkit-transform:scale(1.15);
- transform:scale(1.15)
- }
- .lein-icon:before,.lfe-icon:before {
- font-family:file-icons;
- font-size:15px;
- font-size:16px
- }
- .lfe-icon:before {
- content:"\E94C";
- top:2px
- }
- .lightwave-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E9FB";
- top:2px
- }
- .lisp-icon:before {
- content:"\E908"
- }
- .lisp-icon:before,.llvm-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:3px;
- font-size:17px
- }
- .llvm-icon:before {
- content:"\E91D"
- }
- .logtalk-icon:before {
- content:"\E98D"
- }
- .logtalk-icon:before,.lookml-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px;
- text-shadow:0 0 0
- }
- .lookml-icon:before {
- content:"\E98E";
- font-size:16px
- }
- .ls-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E914";
- top:2px;
- font-size:14px
- }
- .lsl-icon:before {
- content:"\E98B";
- top:1px
- }
- .lsl-icon:before,.lua-icon:before {
- font-family:file-icons;
- font-size:15px
- }
- .lua-icon:before {
- content:"\E91B";
- top:2px;
- font-size:14px
- }
- .mako-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E98F";
- top:4px;
- font-size:16px
- }
- .mapbox-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E941";
- top:1px;
- font-size:13px
- }
- .marko-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E920";
- top:4px;
- font-size:18px;
- left:-1px;
- -webkit-transform:scale(1.05);
- transform:scale(1.05)
- }
- .mathematica-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E990";
- top:2px;
- font-size:16px
- }
- .mathjax-icon:before {
- content:"\EA06"
- }
- .mathjax-icon:before,.matlab-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .matlab-icon:before {
- content:"\E991"
- }
- .max-icon:before {
- content:"\E993"
- }
- .max-icon:before,.maxscript-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .maxscript-icon:before {
- content:"\E900"
- }
- .maya-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E9F6";
- top:2px;
- font-size:16px
- }
- .manpage-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E936";
- top:3px
- }
- .mediawiki-icon:before {
- content:"\E954";
- top:2px
- }
- .mediawiki-icon:before,.mercury-icon:before {
- font-family:file-icons;
- font-size:15px;
- font-size:16px
- }
- .mercury-icon:before {
- content:"\E994";
- top:3px;
- -webkit-transform:scale(1.2);
- transform:scale(1.2)
- }
- .metal-icon:before {
- content:"M";
- left:1px
- }
- .metal-icon:before,.meteor-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:1px
- }
- .meteor-icon:before {
- content:"\E6A5"
- }
- .minecraft-icon:before {
- content:"\E9DC"
- }
- .minecraft-icon:before,.mirah-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .mirah-icon:before {
- content:"\E995"
- }
- .mocha-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\26FE";
- top:2px;
- font-size:17px
- }
- .model-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E9E8";
- top:2px;
- font-size:16px
- }
- .modula2-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E996";
- top:2px
- }
- .monkey-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E997";
- top:3px;
- font-size:18px;
- left:-1px
- }
- .mruby-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\EA18";
- top:2px
- }
- .mupad-icon:before {
- content:"\E9CA";
- top:3px
- }
- .mupad-icon:before,.mustache-icon:before {
- font-family:file-icons;
- font-size:15px;
- font-size:16px
- }
- .mustache-icon:before {
- content:"\E60F";
- top:2px
- }
- .nant-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E9E1";
- top:3px;
- -webkit-transform:scale(1.2);
- transform:scale(1.2)
- }
- .neko-icon:before {
- content:"\EA05"
- }
- .neko-icon:before,.netlogo-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .netlogo-icon:before {
- content:"\E99C";
- left:1px
- }
- .newrelic-icon:before {
- content:"\E9D7"
- }
- .newrelic-icon:before,.nginx-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .nginx-icon:before {
- content:"\F146B"
- }
- .nib-icon:before {
- content:"\2712"
- }
- .nib-icon:before,.nimrod-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .nimrod-icon:before {
- content:"\E998"
- }
- .nit-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E999";
- top:2px
- }
- .nix-icon:before {
- content:"\E99A"
- }
- .nix-icon:before,.nmap-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:3px;
- font-size:16px
- }
- .nmap-icon:before {
- content:"\E94D";
- -webkit-transform:scale(1.1);
- transform:scale(1.1)
- }
- .nodemon-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\EA26";
- top:2px
- }
- .normalize-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\EA04";
- top:3px;
- font-size:16px
- }
- .npm-icon:before {
- content:"\E91C"
- }
- .npm-icon:before,.nsis-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:3px
- }
- .nsis-icon:before {
- content:"\EA1E";
- font-size:16px
- }
- .numpy-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E99D";
- top:2px;
- font-size:14px
- }
- .nuget-icon:before {
- content:"\E9D9"
- }
- .nuget-icon:before,.nunjucks-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .nunjucks-icon:before {
- content:"\E953";
- font-size:16px
- }
- .nvidia-icon:before {
- content:"\E95D"
- }
- .nvidia-icon:before,.objj-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .objj-icon:before {
- content:"\E99E"
- }
- .ocaml-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E91A";
- top:1px;
- font-size:14px
- }
- .onenote-icon:before {
- content:"\E9EB"
- }
- .onenote-icon:before,.ooc-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .ooc-icon:before {
- content:"\E9CB"
- }
- .opa-icon:before {
- content:"\2601"
- }
- .opa-icon:before,.opencl-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .opencl-icon:before {
- content:"\E99F";
- font-size:16px
- }
- .openoffice-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E9E4";
- top:2px
- }
- .org-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E917";
- top:1px;
- font-size:14px;
- left:1px
- }
- .owl-icon:before {
- content:"\E957";
- top:2px
- }
- .owl-icon:before,.ox-icon:before {
- font-family:file-icons;
- font-size:15px
- }
- .ox-icon:before {
- content:"\E9A1";
- top:3px;
- font-size:16px;
- text-shadow:0 0 0
- }
- .oxygene-icon:before {
- content:"\E9BF"
- }
- .oxygene-icon:before,.oz-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .oz-icon:before {
- content:"\E9BE"
- }
- .pan-icon:before {
- content:"\E9BD"
- }
- .pan-icon:before,.papyrus-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .papyrus-icon:before {
- content:"\E9BC"
- }
- .parrot-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E9BB";
- top:3px;
- font-size:16px
- }
- .pascal-icon:before {
- content:"\E92A"
- }
- .pascal-icon:before,.patch-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .patch-icon:before {
- content:"\E961"
- }
- .pawn-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\265F";
- top:1px;
- font-size:14px
- }
- .perl6-icon:before {
- content:"\E96C"
- }
- .perl6-icon:before,.phalcon-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .phalcon-icon:before {
- content:"\E94A"
- }
- .php-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\F147";
- top:1px;
- font-size:14px;
- left:1px
- }
- .pickle-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E9C4";
- top:2px
- }
- .pike-icon:before {
- font-size:15px;
- content:"\E9B9";
- top:4px;
- font-size:16px;
- -webkit-transform:scale(1.15);
- transform:scale(1.15)
- }
- .pike-icon:before,.pogo-icon:before {
- font-family:file-icons;
- -webkit-font-smoothing:subpixel-antialiased
- }
- .pogo-icon:before {
- font-size:15px;
- content:"\E9B8";
- top:3px;
- font-size:14px
- }
- .pony-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E9B7";
- top:3px;
- font-size:16px
- }
- .pointwise-icon:before {
- content:"\E977"
- }
- .pointwise-icon:before,.postcss-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .postcss-icon:before {
- content:"\E910";
- font-size:14px
- }
- .postscript-icon:before {
- content:"\E955"
- }
- .postscript-icon:before,.povray-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px;
- left:1px
- }
- .povray-icon:before {
- content:"P"
- }
- .powerbuilder-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\EA14"
- }
- .powerpoint-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E9EC";
- top:2px
- }
- .powershell-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E9DA";
- top:2px;
- font-size:16px
- }
- .premiere-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E9F5";
- top:2px
- }
- .processing-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E9A0";
- top:2px
- }
- .progress-icon:before {
- content:"\E9C0";
- top:2px;
- -webkit-transform:scale(1.2);
- transform:scale(1.2)
- }
- .progress-icon:before,.propeller-icon:before {
- font-family:file-icons;
- font-size:15px;
- font-size:16px
- }
- .propeller-icon:before {
- content:"\E9B5";
- top:3px
- }
- .protractor-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E9DE";
- top:3px
- }
- .psd-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E6B8";
- top:2px
- }
- .pug-icon:before {
- content:"\EA13"
- }
- .pug-alt-icon:before,.pug-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:3px;
- font-size:16px
- }
- .pug-alt-icon:before {
- content:"\E9D0"
- }
- .puppet-icon:before {
- content:"\F0C3";
- left:1px
- }
- .puppet-icon:before,.purebasic-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .purebasic-icon:before {
- content:"\1B5"
- }
- .purescript-icon:before {
- content:"\E9B2"
- }
- .purescript-icon:before,.r-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:3px
- }
- .r-icon:before {
- content:"\E905";
- font-size:17px
- }
- .racket-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E9B1";
- top:2px;
- left:1px
- }
- .raml-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E913";
- top:1px;
- font-size:14px
- }
- .rascal-icon:before {
- content:"\EA24"
- }
- .rascal-icon:before,.rdoc-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .rdoc-icon:before {
- content:"\E9B0";
- left:1px
- }
- .react-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\F100";
- top:2px
- }
- .rebol-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E9AE";
- top:1px;
- font-size:13px
- }
- .reason-icon:before {
- content:"\EA1D"
- }
- .reason-icon:before,.red-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:3px
- }
- .red-icon:before {
- content:"\E9AD";
- font-size:16px
- }
- .regex-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"*";
- top:1px;
- font-size:12px;
- left:1px
- }
- .rexx-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\EA16";
- top:2px;
- font-size:14px;
- left:1px
- }
- .riot-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E919";
- top:4px;
- font-size:18px
- }
- .robot-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E9AC";
- top:2px;
- font-size:14px
- }
- .rollup-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\EA20";
- top:2px
- }
- .rst-icon:before {
- content:"\E9CC"
- }
- .rst-icon:before,.sage-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:3px;
- font-size:16px
- }
- .sage-icon:before {
- content:"\E9AB";
- -webkit-font-smoothing:subpixel-antialiased
- }
- .saltstack-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E915";
- top:2px;
- font-size:14px
- }
- .sas-icon:before {
- content:"\E95A"
- }
- .sas-icon:before,.sbt-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .sbt-icon:before {
- content:"\E9D2";
- font-size:14px
- }
- .scd-icon:before {
- content:"\E9A2"
- }
- .scad-icon:before,.scd-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .scad-icon:before {
- content:"\E911";
- font-size:14px
- }
- .scheme-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\3BB";
- top:2px
- }
- .scilab-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E9A9";
- top:3px;
- font-size:18px;
- left:-1px;
- -webkit-font-smoothing:subpixel-antialiased
- }
- .scrutinizer-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E9D4";
- top:2px;
- font-size:14px
- }
- .self-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E9A8";
- top:3px;
- font-size:16px;
- text-shadow:0 0 0;
- -webkit-transform:scale(1.2);
- transform:scale(1.2)
- }
- .sf-icon:before {
- content:"\E9DB"
- }
- .sf-icon:before,.shen-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .shen-icon:before {
- content:"\E9A7";
- font-size:16px
- }
- .shopify-icon:before {
- content:"\E9CF"
- }
- .shopify-icon:before,.shuriken-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .shuriken-icon:before {
- content:"\272B";
- font-size:14px
- }
- .sigils-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\1F764";
- top:3px;
- font-size:16px;
- text-shadow:0 0 0
- }
- .silverstripe-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E800";
- top:2px
- }
- .sketch-icon:before {
- content:"\E927"
- }
- .sketch-icon:before,.slash-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .slash-icon:before {
- content:"\E9A6"
- }
- .snyk-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\EA1C";
- top:2px;
- font-size:16px
- }
- .sparql-icon:before {
- content:"\E959";
- top:2px
- }
- .sparql-icon:before,.sqf-icon:before {
- font-family:file-icons;
- font-size:15px
- }
- .sqf-icon:before {
- content:"\E9A5";
- top:1px;
- text-shadow:0 0 0
- }
- .sqlite-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E9DD";
- top:3px
- }
- .stan-icon:before {
- content:"\E9A4"
- }
- .stan-icon:before,.stata-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .stata-icon:before {
- content:"\E9A3"
- }
- .storyist-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E9EF";
- top:2px;
- font-size:16px
- }
- .strings-icon:before {
- content:"\E9E0"
- }
- .strings-icon:before,.stylelint-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .stylelint-icon:before {
- content:"\E93D"
- }
- .stylus-icon:before {
- content:"s";
- left:1px
- }
- .stylus-icon:before,.sublime-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .sublime-icon:before {
- content:"\E986"
- }
- .svn-icon:before {
- content:"\EA17"
- }
- .svn-icon:before,.sysverilog-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .sysverilog-icon:before {
- content:"\E9C3"
- }
- .tag-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\F015";
- top:2px;
- font-size:14px
- }
- .tcl-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E956";
- top:2px;
- font-size:16px
- }
- .terminal-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\F0C8";
- top:2px;
- font-size:14px
- }
- .tern-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\1F54A";
- top:4px;
- font-size:16px
- }
- .terraform-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E916";
- top:1px;
- font-size:14px
- }
- .tex-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E600";
- top:4px;
- font-size:16px;
- -webkit-font-smoothing:subpixel-antialiased
- }
- .textile-icon:before {
- content:"t"
- }
- .textile-icon:before,.textmate-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .textmate-icon:before {
- content:"\2122";
- font-size:16px
- }
- .thor-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E9D8";
- top:2px
- }
- .ts-icon:before {
- content:"\2A6"
- }
- .ts-icon:before,.tsx-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:1px;
- font-size:14px
- }
- .tsx-icon:before {
- content:"\E9E7"
- }
- .turing-icon:before {
- content:"\E9B6"
- }
- .turing-icon:before,.txl-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .txl-icon:before {
- content:"\E9C1"
- }
- .typedoc-icon:before {
- content:"\E9FE"
- }
- .typedoc-icon:before,.typings-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .typings-icon:before {
- content:"\E9DF"
- }
- .uno-icon:before {
- content:"\E9B3"
- }
- .uno-icon:before,.unreal-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .unreal-icon:before {
- content:"u"
- }
- .urweb-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E9BA";
- top:4px;
- font-size:18px;
- left:-1px;
- text-shadow:0 0 0
- }
- .webpack-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\E91E";
- top:3px
- }
- .wercker-icon:before {
- content:"\EA19"
- }
- .wercker-icon:before,.word-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .word-icon:before {
- content:"\E9ED"
- }
- .v8-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\EA1F";
- top:3px;
- font-size:16px
- }
- .vagrant-icon:before {
- content:"V";
- top:2px
- }
- .vagrant-icon:before,.varnish-icon:before {
- font-family:file-icons;
- font-size:15px;
- font-size:14px
- }
- .varnish-icon:before {
- content:"\E9B4";
- top:1px
- }
- .verilog-icon:before {
- content:"\E949"
- }
- .verilog-icon:before,.vhdl-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .vhdl-icon:before {
- content:"\E9AA"
- }
- .video-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\F057";
- top:1px;
- font-size:14px
- }
- .vue-icon:before {
- content:"\E906";
- top:3px
- }
- .vue-icon:before,.x10-icon:before {
- font-family:file-icons;
- font-size:15px
- }
- .x10-icon:before {
- content:"\2169";
- top:2px
- }
- .xmos-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"X";
- top:1px;
- font-size:14px
- }
- .xojo-icon:before {
- content:"\E9AF"
- }
- .xojo-icon:before,.xpages-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .xpages-icon:before {
- content:"\E9C5"
- }
- .xtend-icon:before {
- content:"\E9C6"
- }
- .xtend-icon:before,.yang-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .yang-icon:before {
- content:"\262F"
- }
- .yarn-icon:before {
- font-family:file-icons;
- font-size:15px;
- content:"\EA1A";
- top:2px;
- font-size:16px
- }
- .yui-icon:before {
- content:"\EA00"
- }
- .yui-icon:before,.zbrush-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .zbrush-icon:before {
- content:"\E9F2";
- font-size:16px
- }
- .zephir-icon:before {
- content:"\E9C7";
- -webkit-font-smoothing:subpixel-antialiased
- }
- .zephir-icon:before,.zimpl-icon:before {
- font-family:file-icons;
- font-size:15px;
- top:2px
- }
- .zimpl-icon:before {
- content:"\E9C8";
- font-size:16px;
- left:1px
- }
|