You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

treeIcon.css 48 kB

2 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024
  1. .fa-folder{
  2. color: #333;
  3. }
  4. .light-red:before {
  5. color:#c97071
  6. }
  7. .medium-red:before {
  8. color:#ac4142
  9. }
  10. .dark-red:before {
  11. color:#742c2d
  12. }
  13. .light-green:before {
  14. color:#a6ba7b
  15. }
  16. .medium-green:before {
  17. color:#90a959
  18. }
  19. .dark-green:before {
  20. color:#66783e
  21. }
  22. .light-yellow:before {
  23. color:#fae0bc
  24. }
  25. .medium-yellow:before {
  26. color:#ee9e2e
  27. }
  28. .dark-yellow:before {
  29. color:#d88511
  30. }
  31. .light-blue:before {
  32. color:#6098b0
  33. }
  34. .medium-blue:before {
  35. color:#6a9fb5
  36. }
  37. .dark-blue:before {
  38. color:#46788d
  39. }
  40. .light-maroon:before {
  41. color:#be7953
  42. }
  43. .medium-maroon:before {
  44. color:#8f5536
  45. }
  46. .dark-maroon:before {
  47. color:#573421
  48. }
  49. .light-purple:before {
  50. color:#c7a4c0
  51. }
  52. .medium-purple:before {
  53. color:#aa759f
  54. }
  55. .dark-purple:before {
  56. color:#825078
  57. }
  58. .light-orange:before {
  59. color:#d99762
  60. }
  61. .medium-orange:before {
  62. color:#d28445
  63. }
  64. .dark-orange:before {
  65. color:#a35f27
  66. }
  67. .light-cyan:before {
  68. color:#6bb0a4
  69. }
  70. .medium-cyan:before {
  71. color:#75b5aa
  72. }
  73. .dark-cyan:before {
  74. color:#4d9085
  75. }
  76. .light-pink:before {
  77. color:#ff4ddb
  78. }
  79. .medium-pink:before {
  80. color:#f0c
  81. }
  82. .dark-pink:before {
  83. color:#b3008f
  84. }
  85. .theme-colour-check {
  86. background:#fff
  87. }
  88. @font-face {
  89. font-family:FontAwesome;
  90. font-weight:400;
  91. font-style:normal;
  92. src:url(/iconfonts1/fontawesome.af7ae50.woff2)
  93. }
  94. @font-face {
  95. font-family:Mfizz;
  96. src:url(/iconfonts1/mfixx.0a32a80.woff2);
  97. font-weight:400;
  98. font-style:normal
  99. }
  100. @font-face {
  101. font-family:Devicons;
  102. src:url(/iconfonts1/devopicons.e19892d.woff2);
  103. font-weight:400;
  104. font-style:normal
  105. }
  106. @font-face {
  107. font-family:file-icons;
  108. src:url("/iconfonts1/file-icons.woff2");
  109. font-weight:400;
  110. font-style:normal
  111. }
  112. @font-face {
  113. font-family:octicons;
  114. src:url(/iconfonts1/octicons.de59a97.woff2);
  115. font-weight:400;
  116. font-style:normal
  117. }
  118. .file-icon:before {
  119. font-weight:400;
  120. font-style:normal;
  121. text-align:center;
  122. width:16px;
  123. line-height:1;
  124. position:relative;
  125. display:inline-block;
  126. -webkit-font-smoothing:antialiased
  127. }
  128. .binary-icon:before {
  129. content:"\F094"
  130. }
  131. .binary-icon:before,.book-icon:before {
  132. font-family:octicons;
  133. font-size:16px;
  134. top:1px
  135. }
  136. .book-icon:before {
  137. content:"\F007"
  138. }
  139. .brew-icon:before {
  140. font-family:octicons;
  141. font-size:16px;
  142. top:1px;
  143. content:"\F069";
  144. font-size:15px;
  145. left:1px
  146. }
  147. .checklist-icon:before {
  148. font-family:octicons;
  149. font-size:16px;
  150. top:1px;
  151. content:"\F076";
  152. font-size:17px;
  153. left:1px
  154. }
  155. .code-icon:before {
  156. content:"\F05F"
  157. }
  158. .code-icon:before,.database-icon:before {
  159. font-family:octicons;
  160. font-size:16px;
  161. top:1px
  162. }
  163. .database-icon:before {
  164. content:"\F096"
  165. }
  166. .gear-icon:before {
  167. content:"\F02F"
  168. }
  169. .gear-icon:before,.git-commit-icon:before {
  170. font-family:octicons;
  171. font-size:16px;
  172. top:1px
  173. }
  174. .git-commit-icon:before {
  175. content:"\F01F"
  176. }
  177. .git-merge-icon:before {
  178. content:"\F023"
  179. }
  180. .git-merge-icon:before,.github-icon:before {
  181. font-family:octicons;
  182. font-size:16px;
  183. top:1px
  184. }
  185. .github-icon:before {
  186. content:"\F00A"
  187. }
  188. .graph-icon:before {
  189. content:"\F043"
  190. }
  191. .graph-icon:before,.image-icon:before {
  192. font-family:octicons;
  193. font-size:16px;
  194. top:1px
  195. }
  196. .image-icon:before {
  197. content:"\F012"
  198. }
  199. .key-icon:before {
  200. content:"\F049"
  201. }
  202. .key-icon:before,.link-icon:before {
  203. font-family:octicons;
  204. font-size:16px;
  205. top:1px
  206. }
  207. .link-icon:before {
  208. content:"\F0B0"
  209. }
  210. .markdown-icon:before {
  211. content:"\F0C9"
  212. }
  213. .markdown-icon:before,.package-icon:before {
  214. font-family:octicons;
  215. font-size:16px;
  216. top:1px
  217. }
  218. .package-icon:before {
  219. content:"\F0C4"
  220. }
  221. .ruby-icon:before {
  222. content:"\F047"
  223. }
  224. .ruby-icon:before,.secret-icon:before {
  225. font-family:octicons;
  226. font-size:16px;
  227. top:1px
  228. }
  229. .secret-icon:before {
  230. content:"\F08C"
  231. }
  232. .squirrel-icon:before {
  233. font-family:octicons;
  234. font-size:16px;
  235. top:1px;
  236. content:"\F0B2";
  237. font-size:15px
  238. }
  239. .text-icon:before {
  240. content:"\F011"
  241. }
  242. .text-icon:before,.zip-icon:before {
  243. font-family:octicons;
  244. font-size:16px;
  245. top:1px
  246. }
  247. .zip-icon:before {
  248. content:"\F013"
  249. }
  250. .android-icon:before {
  251. font-family:FontAwesome;
  252. font-size:13px;
  253. content:"\F17B";
  254. font-size:16px;
  255. top:1px
  256. }
  257. .at-icon:before {
  258. content:"\F1FA"
  259. }
  260. .at-icon:before,.audio-icon:before {
  261. font-family:FontAwesome;
  262. font-size:13px;
  263. font-size:15px;
  264. top:1px
  265. }
  266. .audio-icon:before {
  267. content:"\F028"
  268. }
  269. .bullhorn-icon:before {
  270. font-family:FontAwesome;
  271. font-size:13px;
  272. content:"\F0A1";
  273. font-size:16px;
  274. top:2px
  275. }
  276. .calc-icon:before {
  277. content:"\F1EC"
  278. }
  279. .calc-icon:before,.coffee-icon:before {
  280. font-family:FontAwesome;
  281. font-size:13px;
  282. font-size:14px
  283. }
  284. .coffee-icon:before {
  285. content:"\F0F4";
  286. top:1px
  287. }
  288. .css3-icon:before {
  289. content:"\F13C";
  290. top:0
  291. }
  292. .circle-icon:before,.css3-icon:before {
  293. font-family:FontAwesome;
  294. font-size:13px
  295. }
  296. .circle-icon:before {
  297. content:"\F111";
  298. font-size:16px;
  299. top:1px
  300. }
  301. .earth-icon:before {
  302. content:"\F0AC"
  303. }
  304. .earth-icon:before,.gears-icon:before {
  305. font-family:FontAwesome;
  306. font-size:13px;
  307. font-size:15px
  308. }
  309. .gears-icon:before {
  310. content:"\F085"
  311. }
  312. .html5-icon:before {
  313. font-family:FontAwesome;
  314. font-size:13px;
  315. content:"\F13B";
  316. font-size:15px;
  317. top:1px
  318. }
  319. .mobile-icon:before {
  320. font-family:FontAwesome;
  321. font-size:13px;
  322. content:"\F10B";
  323. font-size:20px;
  324. top:2px
  325. }
  326. .moon-icon:before {
  327. font-family:FontAwesome;
  328. font-size:13px;
  329. content:"\F186";
  330. font-size:16px;
  331. top:1px
  332. }
  333. .music-icon:before {
  334. content:"\F001"
  335. }
  336. .music-icon:before,.print-icon:before {
  337. font-family:FontAwesome;
  338. font-size:13px;
  339. font-size:15px
  340. }
  341. .print-icon:before {
  342. content:"\F02F";
  343. top:2px
  344. }
  345. .recycle-icon:before {
  346. font-family:FontAwesome;
  347. font-size:13px;
  348. content:"\F1B8";
  349. font-size:15px;
  350. top:2px
  351. }
  352. .rss-icon:before {
  353. font-family:FontAwesome;
  354. font-size:13px;
  355. content:"\F143";
  356. font-size:16px;
  357. top:2px
  358. }
  359. .smarty-icon:before {
  360. font-family:FontAwesome;
  361. font-size:13px;
  362. content:"\F0EB";
  363. font-size:15px
  364. }
  365. .sourcemap-icon:before {
  366. content:"\F279"
  367. }
  368. .sourcemap-icon:before,.sun-icon:before {
  369. font-family:FontAwesome;
  370. font-size:13px;
  371. font-size:14px
  372. }
  373. .sun-icon:before {
  374. content:"\F185";
  375. -webkit-font-smoothing:subpixel-antialiased
  376. }
  377. .toc-icon:before {
  378. font-family:FontAwesome;
  379. font-size:13px;
  380. content:"\F03A";
  381. font-size:15px;
  382. top:2px
  383. }
  384. .twig-icon:before {
  385. content:"\F1BB"
  386. }
  387. .pdf-icon:before,.twig-icon:before {
  388. font-family:FontAwesome;
  389. font-size:13px;
  390. font-size:14px
  391. }
  392. .pdf-icon:before {
  393. content:"\F1C1"
  394. }
  395. .folder-icon:before {
  396. content:"\F07B"
  397. }
  398. .folder-icon-open:before,.folder-icon:before {
  399. font-family:FontAwesome;
  400. font-size:13px;
  401. font-size:14px
  402. }
  403. .folder-icon-open:before {
  404. content:"\F07C"
  405. }
  406. .file-generic:before {
  407. font-family:FontAwesome;
  408. font-size:13px;
  409. content:"\F0F6";
  410. font-size:14px
  411. }
  412. .apache-icon:before {
  413. content:"\F102";
  414. top:3px
  415. }
  416. .apache-icon:before,.archlinux-icon:before {
  417. font-family:Mfizz;
  418. font-size:14px;
  419. font-size:15px
  420. }
  421. .archlinux-icon:before {
  422. content:"A";
  423. top:1px
  424. }
  425. .c-icon:before {
  426. font-family:Mfizz;
  427. font-size:14px;
  428. content:"\F106";
  429. top:1px;
  430. font-size:13px
  431. }
  432. .cpp-icon:before {
  433. content:"\F10B"
  434. }
  435. .cpp-icon:before,.csharp-icon:before {
  436. font-family:Mfizz;
  437. font-size:14px;
  438. top:1px
  439. }
  440. .csharp-icon:before {
  441. content:"\F10C"
  442. }
  443. .debian-icon:before {
  444. content:"\F111"
  445. }
  446. .debian-icon:before,.elixir-icon:before {
  447. font-family:Mfizz;
  448. font-size:14px;
  449. top:1px
  450. }
  451. .elixir-icon:before {
  452. content:"\F113"
  453. }
  454. .gnome-icon:before {
  455. font-family:Mfizz;
  456. font-size:14px;
  457. content:"\F119";
  458. top:1px
  459. }
  460. .haskell-icon:before {
  461. content:"\F121"
  462. }
  463. .haskell-icon:before,.java-icon:before {
  464. font-family:Mfizz;
  465. font-size:14px;
  466. top:2px;
  467. font-size:16px
  468. }
  469. .java-icon:before {
  470. content:"\F126"
  471. }
  472. .js-icon:before {
  473. font-family:Mfizz;
  474. content:"\F129";
  475. top:1px;
  476. font-size:14px
  477. }
  478. .msql-icon:before {
  479. font-family:Mfizz;
  480. font-size:14px;
  481. content:"\F136";
  482. top:2px;
  483. font-size:15px;
  484. text-shadow:0 0 0
  485. }
  486. .objc-icon:before {
  487. font-family:Mfizz;
  488. font-size:14px;
  489. content:"\F13E";
  490. top:2px;
  491. font-size:16px
  492. }
  493. .osx-icon:before {
  494. content:"\F141"
  495. }
  496. .osx-icon:before,.perl-icon:before {
  497. font-family:Mfizz;
  498. font-size:14px;
  499. top:1px
  500. }
  501. .perl-icon:before {
  502. content:"\F142"
  503. }
  504. .python-icon:before {
  505. font-family:Mfizz;
  506. font-size:14px;
  507. content:"\F14C";
  508. top:1px
  509. }
  510. .red-hat-icon:before {
  511. font-family:Mfizz;
  512. font-size:14px;
  513. content:"\F14E";
  514. top:2px
  515. }
  516. .scala-icon:before {
  517. content:"\F154"
  518. }
  519. .scala-icon:before,.sql-icon:before {
  520. font-family:Mfizz;
  521. font-size:14px;
  522. top:1px
  523. }
  524. .sql-icon:before {
  525. content:"\F10E"
  526. }
  527. .svg-icon:before {
  528. font-family:Mfizz;
  529. font-size:14px;
  530. content:"\F15C";
  531. top:1px
  532. }
  533. .tt-icon:before {
  534. font-family:Mfizz;
  535. font-size:14px;
  536. content:"TT"
  537. }
  538. .x11-icon:before {
  539. font-family:Mfizz;
  540. font-size:14px;
  541. content:"\F16E";
  542. top:1px;
  543. font-size:13px
  544. }
  545. .angular-icon:before {
  546. font-family:Devicons;
  547. font-size:16px;
  548. top:3px;
  549. content:"\E653"
  550. }
  551. .appcelerator-icon:before {
  552. font-family:Devicons;
  553. font-size:16px;
  554. top:3px;
  555. content:"\E6AB"
  556. }
  557. .appstore-icon:before {
  558. content:"\E613"
  559. }
  560. .appstore-icon:before,.asp-icon:before {
  561. font-family:Devicons;
  562. font-size:16px;
  563. top:3px
  564. }
  565. .asp-icon:before {
  566. content:"\E67F"
  567. }
  568. .atom-icon:before {
  569. content:"\E664";
  570. -webkit-font-smoothing:subpixel-antialiased
  571. }
  572. .atom-icon:before,.backbone-icon:before {
  573. font-family:Devicons;
  574. font-size:16px;
  575. top:3px
  576. }
  577. .backbone-icon:before {
  578. content:"\E652"
  579. }
  580. .bootstrap-icon:before {
  581. font-family:Devicons;
  582. font-size:16px;
  583. top:3px;
  584. content:"\E647";
  585. font-size:15px;
  586. top:2px
  587. }
  588. .bower-icon:before {
  589. content:"\E64D";
  590. text-shadow:0 0 0
  591. }
  592. .bower-icon:before,.chrome-icon:before {
  593. font-family:Devicons;
  594. font-size:16px;
  595. top:3px
  596. }
  597. .chrome-icon:before {
  598. content:"\E643"
  599. }
  600. .clojure-icon:before {
  601. font-family:Devicons;
  602. font-size:16px;
  603. top:3px;
  604. content:"\E668";
  605. -webkit-font-smoothing:subpixel-antialiased
  606. }
  607. .compass-icon:before {
  608. font-family:Devicons;
  609. font-size:16px;
  610. top:3px;
  611. content:"\E661";
  612. font-size:14px;
  613. top:2px
  614. }
  615. .dart-icon:before {
  616. font-family:Devicons;
  617. font-size:16px;
  618. top:3px;
  619. content:"\E698";
  620. font-size:15px;
  621. top:2px
  622. }
  623. .dlang-icon:before {
  624. font-family:Devicons;
  625. font-size:16px;
  626. top:3px;
  627. content:"\E6AF"
  628. }
  629. .dojo-icon:before {
  630. font-family:Devicons;
  631. top:3px;
  632. content:"\E61C";
  633. font-size:16px;
  634. top:4px;
  635. -webkit-transform:scale(1.2);
  636. transform:scale(1.2);
  637. -webkit-font-smoothing:subpixel-antialiased
  638. }
  639. .dropbox-icon:before {
  640. content:"\E607"
  641. }
  642. .dropbox-icon:before,.eclipse-icon:before {
  643. font-family:Devicons;
  644. font-size:16px;
  645. top:3px
  646. }
  647. .eclipse-icon:before {
  648. content:"\E69E"
  649. }
  650. .erlang-icon:before {
  651. content:"\E6B1"
  652. }
  653. .erlang-icon:before,.extjs-icon:before {
  654. font-family:Devicons;
  655. font-size:16px;
  656. top:3px
  657. }
  658. .extjs-icon:before {
  659. content:"\E68E"
  660. }
  661. .fsharp-icon:before {
  662. content:"\E6A7";
  663. left:1px
  664. }
  665. .fsharp-icon:before,.git-icon:before {
  666. font-family:Devicons;
  667. font-size:16px;
  668. top:3px;
  669. top:2px
  670. }
  671. .git-icon:before {
  672. content:"\E602";
  673. font-size:15px
  674. }
  675. .heroku-icon:before {
  676. font-family:Devicons;
  677. font-size:16px;
  678. top:3px;
  679. content:"\E67B"
  680. }
  681. .jquery-icon:before {
  682. content:"\E650"
  683. }
  684. .jquery-icon:before,.jqueryui-icon:before {
  685. font-family:Devicons;
  686. font-size:16px;
  687. top:3px;
  688. font-size:15px;
  689. top:2px
  690. }
  691. .jqueryui-icon:before {
  692. content:"\E654"
  693. }
  694. .laravel-icon:before {
  695. content:"\E63F"
  696. }
  697. .laravel-icon:before,.materialize-icon:before {
  698. font-family:Devicons;
  699. font-size:16px;
  700. top:3px;
  701. -webkit-font-smoothing:subpixel-antialiased
  702. }
  703. .materialize-icon:before {
  704. content:"\E6B6";
  705. -webkit-transform:scale(1.2);
  706. transform:scale(1.2)
  707. }
  708. .modernizr-icon:before {
  709. font-family:Devicons;
  710. font-size:16px;
  711. top:3px;
  712. content:"\E620"
  713. }
  714. .mootools-icon:before {
  715. content:"\E68F";
  716. text-shadow:0 0 0
  717. }
  718. .mootools-icon:before,.node-icon:before {
  719. font-family:Devicons;
  720. font-size:16px;
  721. top:3px
  722. }
  723. .node-icon:before {
  724. content:"\E618"
  725. }
  726. .pod-icon:before {
  727. font-family:Devicons;
  728. font-size:16px;
  729. top:3px;
  730. content:"\E669";
  731. font-size:15px;
  732. top:2px
  733. }
  734. .prolog-icon:before {
  735. content:"\E6A1"
  736. }
  737. .prolog-icon:before,.rails-icon:before {
  738. font-family:Devicons;
  739. font-size:16px;
  740. top:3px
  741. }
  742. .rails-icon:before {
  743. content:"\E63B"
  744. }
  745. .raphael-icon:before {
  746. font-family:Devicons;
  747. font-size:16px;
  748. top:3px;
  749. content:"\E65F";
  750. font-size:15px
  751. }
  752. .requirejs-icon:before {
  753. content:"\E670"
  754. }
  755. .requirejs-icon:before,.rust-icon:before {
  756. font-family:Devicons;
  757. font-size:16px;
  758. top:3px
  759. }
  760. .rust-icon:before {
  761. content:"\E6A8"
  762. }
  763. .sass-icon:before {
  764. content:"\E64B"
  765. }
  766. .sass-icon:before,.sencha-icon:before {
  767. font-family:Devicons;
  768. font-size:16px;
  769. top:3px
  770. }
  771. .sencha-icon:before {
  772. content:"\E68C"
  773. }
  774. .snapsvg-icon:before {
  775. content:"\E65E"
  776. }
  777. .snapsvg-icon:before,.swift-icon:before {
  778. font-family:Devicons;
  779. font-size:16px;
  780. top:3px
  781. }
  782. .swift-icon:before {
  783. content:"\E655";
  784. left:-1px
  785. }
  786. .travis-icon:before {
  787. content:"\E67E"
  788. }
  789. .travis-icon:before,.uikit-icon:before {
  790. font-family:Devicons;
  791. font-size:16px;
  792. top:3px;
  793. font-size:15px;
  794. top:2px
  795. }
  796. .uikit-icon:before {
  797. content:"\E673"
  798. }
  799. .unity3d-icon:before {
  800. content:"\E621"
  801. }
  802. .unity3d-icon:before,.vim-icon:before {
  803. font-family:Devicons;
  804. font-size:16px;
  805. top:3px
  806. }
  807. .vim-icon:before {
  808. content:"\E6C5"
  809. }
  810. .vs-icon:before {
  811. content:"\E60C"
  812. }
  813. .vs-icon:before,.windows-icon:before {
  814. font-family:Devicons;
  815. font-size:16px;
  816. top:3px;
  817. font-size:14px;
  818. top:2px
  819. }
  820. .windows-icon:before {
  821. content:"\E60F"
  822. }
  823. .yeoman-icon:before {
  824. font-family:Devicons;
  825. font-size:16px;
  826. top:3px;
  827. content:"\E67A"
  828. }
  829. ._1c-icon:before {
  830. content:"\A5EA"
  831. }
  832. ._1c-alt-icon:before,._1c-icon:before {
  833. font-family:file-icons;
  834. font-size:15px;
  835. top:3px;
  836. font-size:16px
  837. }
  838. ._1c-alt-icon:before {
  839. content:"\EA28"
  840. }
  841. .abap-icon:before {
  842. content:"\E92B"
  843. }
  844. .abap-icon:before,.access-icon:before {
  845. font-family:file-icons;
  846. font-size:15px;
  847. top:2px
  848. }
  849. .access-icon:before {
  850. content:"\E9EA"
  851. }
  852. .ada-icon:before {
  853. font-family:file-icons;
  854. font-size:15px;
  855. content:"\E90B";
  856. top:3px;
  857. font-size:17px
  858. }
  859. .ae-icon:before {
  860. content:"\E9F3"
  861. }
  862. .ae-icon:before,.ahk-icon:before {
  863. font-family:file-icons;
  864. font-size:15px;
  865. top:2px
  866. }
  867. .ahk-icon:before {
  868. content:"\E932"
  869. }
  870. .ai-icon:before {
  871. content:"\E6B4"
  872. }
  873. .ai-icon:before,.alloy-icon:before {
  874. font-family:file-icons;
  875. font-size:15px;
  876. top:2px
  877. }
  878. .alloy-icon:before {
  879. content:"\E935"
  880. }
  881. .alpine-icon:before {
  882. font-family:file-icons;
  883. font-size:15px;
  884. content:"\E9FF";
  885. top:2px;
  886. font-size:16px
  887. }
  888. .ampl-icon:before {
  889. content:"\E94E";
  890. left:1px
  891. }
  892. .ampl-icon:before,.amx-icon:before {
  893. font-family:file-icons;
  894. font-size:15px;
  895. top:3px;
  896. font-size:16px
  897. }
  898. .amx-icon:before {
  899. content:"\E99B"
  900. }
  901. .ant-icon:before {
  902. font-family:file-icons;
  903. font-size:15px;
  904. content:"\E93E";
  905. top:4px;
  906. font-size:18px;
  907. -webkit-transform:scale(1.1);
  908. transform:scale(1.1)
  909. }
  910. .antlr-icon:before {
  911. font-family:file-icons;
  912. font-size:15px;
  913. content:"\E92C";
  914. top:3px
  915. }
  916. .api-icon:before {
  917. content:"\E92D"
  918. }
  919. .api-icon:before,.apl-icon:before {
  920. font-family:file-icons;
  921. font-size:15px;
  922. top:2px
  923. }
  924. .apl-icon:before {
  925. content:"\234B"
  926. }
  927. .apple-icon:before {
  928. font-family:file-icons;
  929. font-size:15px;
  930. content:"\E925";
  931. top:1px
  932. }
  933. .appveyor-icon:before {
  934. content:"\E923"
  935. }
  936. .appveyor-icon:before,.arc-icon:before {
  937. font-family:file-icons;
  938. font-size:15px;
  939. top:2px
  940. }
  941. .arc-icon:before {
  942. content:"\E92F"
  943. }
  944. .arduino-icon:before {
  945. font-family:file-icons;
  946. font-size:15px;
  947. content:"\E930";
  948. top:3px;
  949. font-size:16px
  950. }
  951. .arttext-icon:before {
  952. font-family:file-icons;
  953. font-size:15px;
  954. content:"\24D0";
  955. top:2px
  956. }
  957. .as-icon:before {
  958. content:"\E92E"
  959. }
  960. .as-icon:before,.asciidoc-icon:before {
  961. font-family:file-icons;
  962. font-size:15px;
  963. top:1px;
  964. font-size:14px
  965. }
  966. .asciidoc-icon:before {
  967. content:"\E918"
  968. }
  969. .ats-icon:before {
  970. content:"\E934"
  971. }
  972. .ats-icon:before,.audacity-icon:before {
  973. font-family:file-icons;
  974. font-size:15px;
  975. top:2px
  976. }
  977. .audacity-icon:before {
  978. content:"\E9F9"
  979. }
  980. .augeas-icon:before {
  981. content:"\E931"
  982. }
  983. .augeas-icon:before,.autoit-icon:before {
  984. font-family:file-icons;
  985. font-size:15px;
  986. top:2px
  987. }
  988. .autoit-icon:before {
  989. content:"\E933";
  990. font-size:16px
  991. }
  992. .babel-icon:before {
  993. content:"\E91F";
  994. left:1px
  995. }
  996. .babel-icon:before,.bibtex-icon:before {
  997. font-family:file-icons;
  998. font-size:15px;
  999. top:2px
  1000. }
  1001. .bibtex-icon:before {
  1002. content:"\E601";
  1003. font-size:16px;
  1004. -webkit-font-smoothing:subpixel-antialiased
  1005. }
  1006. .blender-icon:before {
  1007. font-family:file-icons;
  1008. font-size:15px;
  1009. content:"\E9FA";
  1010. top:2px
  1011. }
  1012. .bluespec-icon:before {
  1013. font-family:file-icons;
  1014. font-size:15px;
  1015. content:"\E93C";
  1016. top:1px;
  1017. font-size:13px;
  1018. left:1px
  1019. }
  1020. .boo-icon:before {
  1021. content:"\E939"
  1022. }
  1023. .boo-icon:before,.boot-icon:before {
  1024. font-family:file-icons;
  1025. font-size:15px;
  1026. top:2px
  1027. }
  1028. .boot-icon:before {
  1029. content:"\F103";
  1030. font-size:16px
  1031. }
  1032. .brain-icon:before {
  1033. content:"\E93A"
  1034. }
  1035. .brain-icon:before,.brakeman-icon:before {
  1036. font-family:file-icons;
  1037. font-size:15px;
  1038. top:2px
  1039. }
  1040. .brakeman-icon:before {
  1041. content:"\E9D6"
  1042. }
  1043. .bro-icon:before {
  1044. font-family:file-icons;
  1045. font-size:15px;
  1046. content:"\E93B";
  1047. top:3px;
  1048. font-size:16px
  1049. }
  1050. .broccoli-icon:before {
  1051. font-family:file-icons;
  1052. font-size:15px;
  1053. content:"\E922";
  1054. top:1px;
  1055. font-size:14px
  1056. }
  1057. .byond-icon:before {
  1058. content:"\E962"
  1059. }
  1060. .byond-icon:before,.cabal-icon:before {
  1061. font-family:file-icons;
  1062. font-size:15px;
  1063. top:2px
  1064. }
  1065. .cabal-icon:before {
  1066. content:"\E9C2"
  1067. }
  1068. .cake-icon:before {
  1069. content:"\E9E3"
  1070. }
  1071. .cake-icon:before,.cakefile-icon:before {
  1072. font-family:file-icons;
  1073. font-size:15px;
  1074. top:2px
  1075. }
  1076. .cakefile-icon:before {
  1077. content:"\E924"
  1078. }
  1079. .cakephp-icon:before {
  1080. font-family:file-icons;
  1081. font-size:15px;
  1082. content:"\E9D3";
  1083. top:1px;
  1084. font-size:14px
  1085. }
  1086. .cc-icon:before {
  1087. font-family:file-icons;
  1088. font-size:15px;
  1089. content:"\E9D5";
  1090. top:2px;
  1091. font-size:16px
  1092. }
  1093. .ceylon-icon:before {
  1094. content:"\E94F"
  1095. }
  1096. .ceylon-icon:before,.cf-icon:before {
  1097. font-family:file-icons;
  1098. font-size:15px;
  1099. top:2px
  1100. }
  1101. .cf-icon:before {
  1102. content:"\E929"
  1103. }
  1104. .chai-icon:before {
  1105. font-family:file-icons;
  1106. font-size:15px;
  1107. content:"c";
  1108. top:3px;
  1109. font-size:16px
  1110. }
  1111. .chapel-icon:before {
  1112. content:"\E950"
  1113. }
  1114. .chapel-icon:before,.chartjs-icon:before {
  1115. font-family:file-icons;
  1116. font-size:15px;
  1117. top:2px
  1118. }
  1119. .chartjs-icon:before {
  1120. content:"\EA0B"
  1121. }
  1122. .chuck-icon:before {
  1123. content:"\E943"
  1124. }
  1125. .chuck-icon:before,.circleci-icon:before {
  1126. font-family:file-icons;
  1127. font-size:15px;
  1128. top:2px
  1129. }
  1130. .circleci-icon:before {
  1131. content:"\EA12";
  1132. font-size:14px
  1133. }
  1134. .cirru-icon:before {
  1135. content:"\E951"
  1136. }
  1137. .cirru-icon:before,.cl-icon:before {
  1138. font-family:file-icons;
  1139. font-size:15px;
  1140. top:2px;
  1141. text-shadow:0 0 0
  1142. }
  1143. .cl-icon:before {
  1144. content:"\E972"
  1145. }
  1146. .clarion-icon:before {
  1147. font-family:file-icons;
  1148. font-size:15px;
  1149. content:"\E952";
  1150. top:1px;
  1151. font-size:14px;
  1152. left:1px
  1153. }
  1154. .clean-icon:before {
  1155. font-family:file-icons;
  1156. font-size:15px;
  1157. content:"\E95B";
  1158. top:2px;
  1159. font-size:16px
  1160. }
  1161. .click-icon:before {
  1162. font-family:file-icons;
  1163. font-size:15px;
  1164. content:"\E95C";
  1165. top:2px
  1166. }
  1167. .clips-icon:before {
  1168. font-family:file-icons;
  1169. font-size:15px;
  1170. content:"\E940";
  1171. top:3px;
  1172. font-size:18px
  1173. }
  1174. .cljs-icon:before {
  1175. content:"\F104";
  1176. top:2px
  1177. }
  1178. .cljs-icon:before,.cmake-icon:before {
  1179. font-family:file-icons;
  1180. font-size:15px
  1181. }
  1182. .cmake-icon:before {
  1183. content:"\E93F";
  1184. top:1px;
  1185. font-size:14px
  1186. }
  1187. .codecov-icon:before {
  1188. font-family:file-icons;
  1189. font-size:15px;
  1190. content:"\2602";
  1191. top:2px
  1192. }
  1193. .composer-icon:before {
  1194. font-family:file-icons;
  1195. font-size:15px;
  1196. content:"\E683";
  1197. top:0
  1198. }
  1199. .config-icon:before {
  1200. font-family:file-icons;
  1201. font-size:15px;
  1202. content:"\F07C";
  1203. top:2px;
  1204. font-size:14px
  1205. }
  1206. .cordova-icon:before {
  1207. content:"\EA11"
  1208. }
  1209. .coq-icon:before,.cordova-icon:before {
  1210. font-family:file-icons;
  1211. font-size:15px;
  1212. top:2px
  1213. }
  1214. .coq-icon:before {
  1215. content:"\E95F";
  1216. font-size:16px;
  1217. left:1px
  1218. }
  1219. .cp-icon:before {
  1220. font-family:file-icons;
  1221. font-size:15px;
  1222. content:"\E942";
  1223. top:3px;
  1224. font-size:17px
  1225. }
  1226. .creole-icon:before {
  1227. content:"\E95E"
  1228. }
  1229. .creole-icon:before,.crystal-icon:before {
  1230. font-family:file-icons;
  1231. font-size:15px;
  1232. top:2px
  1233. }
  1234. .crystal-icon:before {
  1235. content:"\E902";
  1236. left:1px
  1237. }
  1238. .csound-icon:before {
  1239. content:"\E9F0"
  1240. }
  1241. .csound-icon:before,.csscript-icon:before {
  1242. font-family:file-icons;
  1243. font-size:15px;
  1244. top:2px
  1245. }
  1246. .csscript-icon:before {
  1247. content:"\E9E2"
  1248. }
  1249. .cucumber-icon:before {
  1250. font-family:file-icons;
  1251. font-size:15px;
  1252. content:"\F02B";
  1253. top:3px
  1254. }
  1255. .cython-icon:before {
  1256. content:"\E963"
  1257. }
  1258. .cython-icon:before,.d3-icon:before {
  1259. font-family:file-icons;
  1260. font-size:15px;
  1261. top:2px
  1262. }
  1263. .d3-icon:before {
  1264. content:"\EA10"
  1265. }
  1266. .darcs-icon:before {
  1267. content:"\E964"
  1268. }
  1269. .darcs-icon:before,.dashboard-icon:before {
  1270. font-family:file-icons;
  1271. font-size:15px;
  1272. top:2px
  1273. }
  1274. .dashboard-icon:before {
  1275. content:"\F07D";
  1276. font-size:13px
  1277. }
  1278. .dbase-icon:before {
  1279. content:"\E9F1"
  1280. }
  1281. .dbase-icon:before,.default-icon:before {
  1282. font-family:file-icons;
  1283. font-size:15px;
  1284. top:2px
  1285. }
  1286. .default-icon:before {
  1287. content:"\1F5CC";
  1288. font-size:14px
  1289. }
  1290. .diff-icon:before {
  1291. font-family:file-icons;
  1292. font-size:15px;
  1293. content:"\E960";
  1294. top:2px
  1295. }
  1296. .docker-icon:before {
  1297. font-family:file-icons;
  1298. font-size:15px;
  1299. content:"\F106";
  1300. top:3px;
  1301. font-size:18px
  1302. }
  1303. .doxygen-icon:before {
  1304. font-family:file-icons;
  1305. font-size:15px;
  1306. content:"\E928";
  1307. top:1px;
  1308. font-size:13px
  1309. }
  1310. .doge-icon:before {
  1311. font-family:file-icons;
  1312. font-size:15px;
  1313. content:"\E946";
  1314. top:2px
  1315. }
  1316. .dyalog-icon:before {
  1317. font-family:file-icons;
  1318. font-size:15px;
  1319. content:"\E90C";
  1320. top:1px;
  1321. font-size:14px;
  1322. left:1px
  1323. }
  1324. .dylib-icon:before {
  1325. content:"\EA15";
  1326. top:2px
  1327. }
  1328. .dylib-icon:before,.e-icon:before {
  1329. font-family:file-icons;
  1330. font-size:15px
  1331. }
  1332. .e-icon:before {
  1333. content:"E";
  1334. top:1px;
  1335. font-size:14px
  1336. }
  1337. .eagle-icon:before {
  1338. content:"\E965"
  1339. }
  1340. .eagle-icon:before,.ec-icon:before {
  1341. font-family:file-icons;
  1342. font-size:15px;
  1343. top:2px
  1344. }
  1345. .ec-icon:before {
  1346. content:"\E9C9"
  1347. }
  1348. .ecere-icon:before {
  1349. font-family:file-icons;
  1350. font-size:15px;
  1351. content:"\E966";
  1352. top:3px;
  1353. font-size:16px
  1354. }
  1355. .editorconfig-icon:before {
  1356. font-family:file-icons;
  1357. font-size:15px;
  1358. content:"\EA1B";
  1359. top:3px
  1360. }
  1361. .eiffel-icon:before {
  1362. content:"\E967";
  1363. top:2px
  1364. }
  1365. .eiffel-icon:before,.electron-icon:before {
  1366. font-family:file-icons;
  1367. font-size:15px;
  1368. font-size:16px
  1369. }
  1370. .electron-icon:before {
  1371. content:"\EA27";
  1372. top:3px;
  1373. text-shadow:0 0 0
  1374. }
  1375. .elm-icon:before {
  1376. content:"\F102";
  1377. top:2px
  1378. }
  1379. .elm-icon:before,.em-icon:before {
  1380. font-family:file-icons;
  1381. font-size:15px
  1382. }
  1383. .em-icon:before {
  1384. content:"\E968";
  1385. top:3px;
  1386. font-size:16px
  1387. }
  1388. .ember-icon:before {
  1389. font-family:file-icons;
  1390. font-size:15px;
  1391. content:"\E61B";
  1392. top:2px;
  1393. font-size:14px
  1394. }
  1395. .emacs-icon:before {
  1396. content:"\E926";
  1397. top:2px
  1398. }
  1399. .emacs-icon:before,.eq-icon:before {
  1400. font-family:file-icons;
  1401. font-size:15px
  1402. }
  1403. .eq-icon:before {
  1404. content:"\EA0A";
  1405. top:5px
  1406. }
  1407. .eslint-icon:before {
  1408. font-family:file-icons;
  1409. font-size:15px;
  1410. content:"\EA0F";
  1411. top:3px;
  1412. font-size:16px
  1413. }
  1414. .excel-icon:before {
  1415. content:"\E9EE"
  1416. }
  1417. .excel-icon:before,.fabfile-icon:before {
  1418. font-family:file-icons;
  1419. font-size:15px;
  1420. top:2px
  1421. }
  1422. .fabfile-icon:before {
  1423. content:"\E94B";
  1424. font-size:16px
  1425. }
  1426. .factor-icon:before {
  1427. font-family:file-icons;
  1428. font-size:15px;
  1429. content:"\E96A";
  1430. top:3px;
  1431. font-size:18px;
  1432. left:-2px;
  1433. -webkit-transform:scale(1.2);
  1434. transform:scale(1.2)
  1435. }
  1436. .fancy-icon:before {
  1437. font-family:file-icons;
  1438. font-size:15px;
  1439. content:"\E96B";
  1440. top:2px;
  1441. font-size:16px
  1442. }
  1443. .fantom-icon:before {
  1444. content:"\E96F";
  1445. left:1px
  1446. }
  1447. .fantom-icon:before,.fbx-icon:before {
  1448. font-family:file-icons;
  1449. font-size:15px;
  1450. top:2px
  1451. }
  1452. .fbx-icon:before {
  1453. content:"\E9FC"
  1454. }
  1455. .ff-icon:before {
  1456. content:"\FB00"
  1457. }
  1458. .ff-icon:before,.finder-icon:before {
  1459. font-family:file-icons;
  1460. font-size:15px;
  1461. top:3px
  1462. }
  1463. .finder-icon:before {
  1464. content:"\E9E9";
  1465. font-size:16px
  1466. }
  1467. .flow-icon:before {
  1468. content:"\E921";
  1469. top:1px
  1470. }
  1471. .flow-icon:before,.flux-icon:before {
  1472. font-family:file-icons;
  1473. font-size:15px
  1474. }
  1475. .flux-icon:before {
  1476. content:"\E969";
  1477. top:2px
  1478. }
  1479. .font-icon:before {
  1480. content:"\E90F"
  1481. }
  1482. .font-icon:before,.fortran-icon:before {
  1483. font-family:file-icons;
  1484. font-size:15px;
  1485. top:1px;
  1486. font-size:14px;
  1487. left:1px
  1488. }
  1489. .fortran-icon:before {
  1490. content:"\E90A"
  1491. }
  1492. .freemarker-icon:before {
  1493. content:"\E970"
  1494. }
  1495. .freemarker-icon:before,.frege-icon:before {
  1496. font-family:file-icons;
  1497. font-size:15px;
  1498. top:2px;
  1499. font-size:16px;
  1500. left:1px
  1501. }
  1502. .frege-icon:before {
  1503. content:"\E96E"
  1504. }
  1505. .fuelux-icon:before {
  1506. font-family:file-icons;
  1507. font-size:15px;
  1508. content:"\EA09";
  1509. top:3px;
  1510. font-size:16px;
  1511. left:2px;
  1512. -webkit-transform:scale(1.15);
  1513. transform:scale(1.15);
  1514. text-shadow:0 0 0
  1515. }
  1516. .gams-icon:before {
  1517. content:"\E973";
  1518. top:2px
  1519. }
  1520. .gams-icon:before,.gap-icon:before {
  1521. font-family:file-icons;
  1522. font-size:15px;
  1523. left:1px
  1524. }
  1525. .gap-icon:before {
  1526. content:"\E971";
  1527. top:3px;
  1528. font-size:16px
  1529. }
  1530. .gdb-icon:before {
  1531. font-family:file-icons;
  1532. font-size:15px;
  1533. content:"\EA08";
  1534. top:3px;
  1535. font-size:16px;
  1536. -webkit-transform:scale(1.15);
  1537. transform:scale(1.15);
  1538. text-shadow:0 0 0
  1539. }
  1540. .genshi-icon:before {
  1541. font-family:file-icons;
  1542. font-size:15px;
  1543. content:"\E976";
  1544. top:3px
  1545. }
  1546. .gentoo-icon:before {
  1547. font-family:file-icons;
  1548. font-size:15px;
  1549. content:"\E96D";
  1550. top:1px;
  1551. font-size:14px;
  1552. left:1px
  1553. }
  1554. .gf-icon:before {
  1555. content:"\E978"
  1556. }
  1557. .gf-icon:before,.glade-icon:before {
  1558. font-family:file-icons;
  1559. font-size:15px;
  1560. top:2px
  1561. }
  1562. .glade-icon:before {
  1563. content:"\E938"
  1564. }
  1565. .glyphs-icon:before {
  1566. content:"G"
  1567. }
  1568. .glyphs-icon:before,.gml-icon:before {
  1569. font-family:file-icons;
  1570. font-size:15px;
  1571. top:3px
  1572. }
  1573. .gml-icon:before {
  1574. content:"\E975";
  1575. font-size:16px
  1576. }
  1577. .gn-icon:before {
  1578. content:"\EA25"
  1579. }
  1580. .gn-icon:before,.gnu-icon:before {
  1581. font-family:file-icons;
  1582. font-size:15px;
  1583. top:2px
  1584. }
  1585. .gnu-icon:before {
  1586. content:"\E679";
  1587. font-size:16px;
  1588. text-shadow:0 0 0
  1589. }
  1590. .go-icon:before {
  1591. font-family:file-icons;
  1592. font-size:15px;
  1593. content:"\E624";
  1594. top:3px
  1595. }
  1596. .godot-icon:before {
  1597. content:"\E974"
  1598. }
  1599. .godot-icon:before,.golo-icon:before {
  1600. font-family:file-icons;
  1601. font-size:15px;
  1602. top:2px
  1603. }
  1604. .golo-icon:before {
  1605. content:"\E979"
  1606. }
  1607. .gosu-icon:before {
  1608. font-family:file-icons;
  1609. font-size:15px;
  1610. content:"\E97A";
  1611. top:2px
  1612. }
  1613. .gradle-icon:before {
  1614. font-family:file-icons;
  1615. font-size:15px;
  1616. content:"\E903";
  1617. top:3px;
  1618. font-size:16px;
  1619. left:1px
  1620. }
  1621. .graphql-icon:before {
  1622. font-family:file-icons;
  1623. font-size:15px;
  1624. content:"\E97C";
  1625. top:2px
  1626. }
  1627. .graphviz-icon:before {
  1628. content:"\E97D";
  1629. left:1px
  1630. }
  1631. .graphviz-icon:before,.groovy-icon:before {
  1632. font-family:file-icons;
  1633. font-size:15px;
  1634. top:4px;
  1635. font-size:17px
  1636. }
  1637. .groovy-icon:before {
  1638. content:"\E904";
  1639. left:-1px
  1640. }
  1641. .grunt-icon:before {
  1642. font-family:file-icons;
  1643. font-size:15px;
  1644. content:"\E611";
  1645. top:1px;
  1646. font-size:14px
  1647. }
  1648. .gulp-icon:before {
  1649. font-family:file-icons;
  1650. font-size:15px;
  1651. content:"\E610";
  1652. top:0;
  1653. font-size:16px
  1654. }
  1655. .hack-icon:before {
  1656. content:"\E9CE"
  1657. }
  1658. .hack-icon:before,.haml-icon:before {
  1659. font-family:file-icons;
  1660. font-size:15px;
  1661. top:2px
  1662. }
  1663. .haml-icon:before {
  1664. content:"\F15B"
  1665. }
  1666. .harbour-icon:before {
  1667. font-family:file-icons;
  1668. font-size:15px;
  1669. content:"\E97B";
  1670. top:2px;
  1671. font-size:16px;
  1672. text-shadow:0 0 0
  1673. }
  1674. .hashicorp-icon:before {
  1675. content:"\E97E"
  1676. }
  1677. .hashicorp-icon:before,.haxe-icon:before {
  1678. font-family:file-icons;
  1679. font-size:15px;
  1680. top:2px
  1681. }
  1682. .haxe-icon:before {
  1683. content:"\E907"
  1684. }
  1685. .hy-icon:before {
  1686. content:"\E97F";
  1687. top:2px
  1688. }
  1689. .hy-icon:before,.idl-icon:before {
  1690. font-family:file-icons;
  1691. font-size:15px
  1692. }
  1693. .idl-icon:before {
  1694. content:"\E947";
  1695. top:3px;
  1696. font-size:18px
  1697. }
  1698. .idris-icon:before {
  1699. content:"\E983"
  1700. }
  1701. .idris-icon:before,.igorpro-icon:before {
  1702. font-family:file-icons;
  1703. font-size:15px;
  1704. top:2px;
  1705. font-size:16px;
  1706. -webkit-font-smoothing:subpixel-antialiased
  1707. }
  1708. .igorpro-icon:before {
  1709. content:"\E980"
  1710. }
  1711. .indesign-icon:before {
  1712. content:"\E9F4"
  1713. }
  1714. .indesign-icon:before,.inform7-icon:before {
  1715. font-family:file-icons;
  1716. font-size:15px;
  1717. top:2px
  1718. }
  1719. .inform7-icon:before {
  1720. content:"\E984";
  1721. font-size:16px;
  1722. text-shadow:0 0 0
  1723. }
  1724. .inno-icon:before {
  1725. content:"\E985";
  1726. top:2px
  1727. }
  1728. .inno-icon:before,.io-icon:before {
  1729. font-family:file-icons;
  1730. font-size:15px
  1731. }
  1732. .io-icon:before {
  1733. content:"\E981";
  1734. top:1px;
  1735. font-size:13px;
  1736. -webkit-font-smoothing:subpixel-antialiased
  1737. }
  1738. .ioke-icon:before {
  1739. content:"\E982"
  1740. }
  1741. .ioke-icon:before,.ionic-icon:before {
  1742. font-family:file-icons;
  1743. font-size:15px;
  1744. top:2px
  1745. }
  1746. .ionic-icon:before {
  1747. content:"\F14B"
  1748. }
  1749. .isabelle-icon:before {
  1750. font-family:file-icons;
  1751. font-size:15px;
  1752. content:"\E945";
  1753. top:2px;
  1754. font-size:16px
  1755. }
  1756. .j-icon:before {
  1757. font-family:file-icons;
  1758. font-size:15px;
  1759. content:"\E937";
  1760. top:1px;
  1761. font-size:13px
  1762. }
  1763. .jade-icon:before {
  1764. font-family:file-icons;
  1765. font-size:15px;
  1766. content:"\E90D";
  1767. top:1px;
  1768. font-size:14px
  1769. }
  1770. .jake-icon:before {
  1771. font-family:file-icons;
  1772. font-size:15px;
  1773. content:"\E948";
  1774. top:3px;
  1775. font-size:16px
  1776. }
  1777. .jenkins-icon:before {
  1778. font-family:file-icons;
  1779. font-size:15px;
  1780. content:"\E667";
  1781. top:3px;
  1782. font-size:18px;
  1783. text-shadow:0 0 0
  1784. }
  1785. .jinja-icon:before {
  1786. font-family:file-icons;
  1787. font-size:15px;
  1788. content:"\E944";
  1789. top:2px
  1790. }
  1791. .jsonld-icon:before {
  1792. font-family:file-icons;
  1793. font-size:15px;
  1794. content:"\E958";
  1795. top:3px;
  1796. font-size:17px
  1797. }
  1798. .jsx-icon:before {
  1799. content:"\E9E6"
  1800. }
  1801. .jsx-icon:before,.julia-icon:before {
  1802. font-family:file-icons;
  1803. font-size:15px;
  1804. top:1px;
  1805. font-size:14px
  1806. }
  1807. .julia-icon:before {
  1808. content:"\26EC"
  1809. }
  1810. .jupyter-icon:before {
  1811. font-family:file-icons;
  1812. font-size:15px;
  1813. content:"\E987";
  1814. top:3px;
  1815. font-size:16px
  1816. }
  1817. .karma-icon:before {
  1818. content:"\E9CD"
  1819. }
  1820. .karma-icon:before,.keynote-icon:before {
  1821. font-family:file-icons;
  1822. font-size:15px;
  1823. top:2px
  1824. }
  1825. .keynote-icon:before {
  1826. content:"\E9E5"
  1827. }
  1828. .khronos-icon:before {
  1829. content:"\E9F8"
  1830. }
  1831. .khronos-icon:before,.kivy-icon:before {
  1832. font-family:file-icons;
  1833. font-size:15px;
  1834. top:2px
  1835. }
  1836. .kivy-icon:before {
  1837. content:"\E901"
  1838. }
  1839. .knockout-icon:before {
  1840. font-family:file-icons;
  1841. font-size:15px;
  1842. content:"K";
  1843. top:2px
  1844. }
  1845. .kotlin-icon:before {
  1846. content:"\E989"
  1847. }
  1848. .kotlin-icon:before,.krl-icon:before {
  1849. font-family:file-icons;
  1850. font-size:15px;
  1851. top:1px;
  1852. font-size:14px
  1853. }
  1854. .krl-icon:before {
  1855. content:"\E988"
  1856. }
  1857. .labview-icon:before {
  1858. font-family:file-icons;
  1859. font-size:15px;
  1860. content:"\E98A";
  1861. top:2px;
  1862. font-size:16px
  1863. }
  1864. .lasso-icon:before {
  1865. content:"\E98C";
  1866. left:1px
  1867. }
  1868. .lasso-icon:before,.leaflet-icon:before {
  1869. font-family:file-icons;
  1870. font-size:15px;
  1871. top:2px
  1872. }
  1873. .leaflet-icon:before {
  1874. content:"\EA07"
  1875. }
  1876. .lean-icon:before {
  1877. font-family:file-icons;
  1878. font-size:15px;
  1879. content:"L";
  1880. top:1px;
  1881. font-size:13px
  1882. }
  1883. .lein-icon:before {
  1884. content:"\F105";
  1885. top:3px;
  1886. text-shadow:0 0 0;
  1887. -webkit-transform:scale(1.15);
  1888. transform:scale(1.15)
  1889. }
  1890. .lein-icon:before,.lfe-icon:before {
  1891. font-family:file-icons;
  1892. font-size:15px;
  1893. font-size:16px
  1894. }
  1895. .lfe-icon:before {
  1896. content:"\E94C";
  1897. top:2px
  1898. }
  1899. .lightwave-icon:before {
  1900. font-family:file-icons;
  1901. font-size:15px;
  1902. content:"\E9FB";
  1903. top:2px
  1904. }
  1905. .lisp-icon:before {
  1906. content:"\E908"
  1907. }
  1908. .lisp-icon:before,.llvm-icon:before {
  1909. font-family:file-icons;
  1910. font-size:15px;
  1911. top:3px;
  1912. font-size:17px
  1913. }
  1914. .llvm-icon:before {
  1915. content:"\E91D"
  1916. }
  1917. .logtalk-icon:before {
  1918. content:"\E98D"
  1919. }
  1920. .logtalk-icon:before,.lookml-icon:before {
  1921. font-family:file-icons;
  1922. font-size:15px;
  1923. top:2px;
  1924. text-shadow:0 0 0
  1925. }
  1926. .lookml-icon:before {
  1927. content:"\E98E";
  1928. font-size:16px
  1929. }
  1930. .ls-icon:before {
  1931. font-family:file-icons;
  1932. font-size:15px;
  1933. content:"\E914";
  1934. top:2px;
  1935. font-size:14px
  1936. }
  1937. .lsl-icon:before {
  1938. content:"\E98B";
  1939. top:1px
  1940. }
  1941. .lsl-icon:before,.lua-icon:before {
  1942. font-family:file-icons;
  1943. font-size:15px
  1944. }
  1945. .lua-icon:before {
  1946. content:"\E91B";
  1947. top:2px;
  1948. font-size:14px
  1949. }
  1950. .mako-icon:before {
  1951. font-family:file-icons;
  1952. font-size:15px;
  1953. content:"\E98F";
  1954. top:4px;
  1955. font-size:16px
  1956. }
  1957. .mapbox-icon:before {
  1958. font-family:file-icons;
  1959. font-size:15px;
  1960. content:"\E941";
  1961. top:1px;
  1962. font-size:13px
  1963. }
  1964. .marko-icon:before {
  1965. font-family:file-icons;
  1966. font-size:15px;
  1967. content:"\E920";
  1968. top:4px;
  1969. font-size:18px;
  1970. left:-1px;
  1971. -webkit-transform:scale(1.05);
  1972. transform:scale(1.05)
  1973. }
  1974. .mathematica-icon:before {
  1975. font-family:file-icons;
  1976. font-size:15px;
  1977. content:"\E990";
  1978. top:2px;
  1979. font-size:16px
  1980. }
  1981. .mathjax-icon:before {
  1982. content:"\EA06"
  1983. }
  1984. .mathjax-icon:before,.matlab-icon:before {
  1985. font-family:file-icons;
  1986. font-size:15px;
  1987. top:2px
  1988. }
  1989. .matlab-icon:before {
  1990. content:"\E991"
  1991. }
  1992. .max-icon:before {
  1993. content:"\E993"
  1994. }
  1995. .max-icon:before,.maxscript-icon:before {
  1996. font-family:file-icons;
  1997. font-size:15px;
  1998. top:2px
  1999. }
  2000. .maxscript-icon:before {
  2001. content:"\E900"
  2002. }
  2003. .maya-icon:before {
  2004. font-family:file-icons;
  2005. font-size:15px;
  2006. content:"\E9F6";
  2007. top:2px;
  2008. font-size:16px
  2009. }
  2010. .manpage-icon:before {
  2011. font-family:file-icons;
  2012. font-size:15px;
  2013. content:"\E936";
  2014. top:3px
  2015. }
  2016. .mediawiki-icon:before {
  2017. content:"\E954";
  2018. top:2px
  2019. }
  2020. .mediawiki-icon:before,.mercury-icon:before {
  2021. font-family:file-icons;
  2022. font-size:15px;
  2023. font-size:16px
  2024. }
  2025. .mercury-icon:before {
  2026. content:"\E994";
  2027. top:3px;
  2028. -webkit-transform:scale(1.2);
  2029. transform:scale(1.2)
  2030. }
  2031. .metal-icon:before {
  2032. content:"M";
  2033. left:1px
  2034. }
  2035. .metal-icon:before,.meteor-icon:before {
  2036. font-family:file-icons;
  2037. font-size:15px;
  2038. top:1px
  2039. }
  2040. .meteor-icon:before {
  2041. content:"\E6A5"
  2042. }
  2043. .minecraft-icon:before {
  2044. content:"\E9DC"
  2045. }
  2046. .minecraft-icon:before,.mirah-icon:before {
  2047. font-family:file-icons;
  2048. font-size:15px;
  2049. top:2px
  2050. }
  2051. .mirah-icon:before {
  2052. content:"\E995"
  2053. }
  2054. .mocha-icon:before {
  2055. font-family:file-icons;
  2056. font-size:15px;
  2057. content:"\26FE";
  2058. top:2px;
  2059. font-size:17px
  2060. }
  2061. .model-icon:before {
  2062. font-family:file-icons;
  2063. font-size:15px;
  2064. content:"\E9E8";
  2065. top:2px;
  2066. font-size:16px
  2067. }
  2068. .modula2-icon:before {
  2069. font-family:file-icons;
  2070. font-size:15px;
  2071. content:"\E996";
  2072. top:2px
  2073. }
  2074. .monkey-icon:before {
  2075. font-family:file-icons;
  2076. font-size:15px;
  2077. content:"\E997";
  2078. top:3px;
  2079. font-size:18px;
  2080. left:-1px
  2081. }
  2082. .mruby-icon:before {
  2083. font-family:file-icons;
  2084. font-size:15px;
  2085. content:"\EA18";
  2086. top:2px
  2087. }
  2088. .mupad-icon:before {
  2089. content:"\E9CA";
  2090. top:3px
  2091. }
  2092. .mupad-icon:before,.mustache-icon:before {
  2093. font-family:file-icons;
  2094. font-size:15px;
  2095. font-size:16px
  2096. }
  2097. .mustache-icon:before {
  2098. content:"\E60F";
  2099. top:2px
  2100. }
  2101. .nant-icon:before {
  2102. font-family:file-icons;
  2103. font-size:15px;
  2104. content:"\E9E1";
  2105. top:3px;
  2106. -webkit-transform:scale(1.2);
  2107. transform:scale(1.2)
  2108. }
  2109. .neko-icon:before {
  2110. content:"\EA05"
  2111. }
  2112. .neko-icon:before,.netlogo-icon:before {
  2113. font-family:file-icons;
  2114. font-size:15px;
  2115. top:2px
  2116. }
  2117. .netlogo-icon:before {
  2118. content:"\E99C";
  2119. left:1px
  2120. }
  2121. .newrelic-icon:before {
  2122. content:"\E9D7"
  2123. }
  2124. .newrelic-icon:before,.nginx-icon:before {
  2125. font-family:file-icons;
  2126. font-size:15px;
  2127. top:2px
  2128. }
  2129. .nginx-icon:before {
  2130. content:"\F146B"
  2131. }
  2132. .nib-icon:before {
  2133. content:"\2712"
  2134. }
  2135. .nib-icon:before,.nimrod-icon:before {
  2136. font-family:file-icons;
  2137. font-size:15px;
  2138. top:2px
  2139. }
  2140. .nimrod-icon:before {
  2141. content:"\E998"
  2142. }
  2143. .nit-icon:before {
  2144. font-family:file-icons;
  2145. font-size:15px;
  2146. content:"\E999";
  2147. top:2px
  2148. }
  2149. .nix-icon:before {
  2150. content:"\E99A"
  2151. }
  2152. .nix-icon:before,.nmap-icon:before {
  2153. font-family:file-icons;
  2154. font-size:15px;
  2155. top:3px;
  2156. font-size:16px
  2157. }
  2158. .nmap-icon:before {
  2159. content:"\E94D";
  2160. -webkit-transform:scale(1.1);
  2161. transform:scale(1.1)
  2162. }
  2163. .nodemon-icon:before {
  2164. font-family:file-icons;
  2165. font-size:15px;
  2166. content:"\EA26";
  2167. top:2px
  2168. }
  2169. .normalize-icon:before {
  2170. font-family:file-icons;
  2171. font-size:15px;
  2172. content:"\EA04";
  2173. top:3px;
  2174. font-size:16px
  2175. }
  2176. .npm-icon:before {
  2177. content:"\E91C"
  2178. }
  2179. .npm-icon:before,.nsis-icon:before {
  2180. font-family:file-icons;
  2181. font-size:15px;
  2182. top:3px
  2183. }
  2184. .nsis-icon:before {
  2185. content:"\EA1E";
  2186. font-size:16px
  2187. }
  2188. .numpy-icon:before {
  2189. font-family:file-icons;
  2190. font-size:15px;
  2191. content:"\E99D";
  2192. top:2px;
  2193. font-size:14px
  2194. }
  2195. .nuget-icon:before {
  2196. content:"\E9D9"
  2197. }
  2198. .nuget-icon:before,.nunjucks-icon:before {
  2199. font-family:file-icons;
  2200. font-size:15px;
  2201. top:2px
  2202. }
  2203. .nunjucks-icon:before {
  2204. content:"\E953";
  2205. font-size:16px
  2206. }
  2207. .nvidia-icon:before {
  2208. content:"\E95D"
  2209. }
  2210. .nvidia-icon:before,.objj-icon:before {
  2211. font-family:file-icons;
  2212. font-size:15px;
  2213. top:2px
  2214. }
  2215. .objj-icon:before {
  2216. content:"\E99E"
  2217. }
  2218. .ocaml-icon:before {
  2219. font-family:file-icons;
  2220. font-size:15px;
  2221. content:"\E91A";
  2222. top:1px;
  2223. font-size:14px
  2224. }
  2225. .onenote-icon:before {
  2226. content:"\E9EB"
  2227. }
  2228. .onenote-icon:before,.ooc-icon:before {
  2229. font-family:file-icons;
  2230. font-size:15px;
  2231. top:2px
  2232. }
  2233. .ooc-icon:before {
  2234. content:"\E9CB"
  2235. }
  2236. .opa-icon:before {
  2237. content:"\2601"
  2238. }
  2239. .opa-icon:before,.opencl-icon:before {
  2240. font-family:file-icons;
  2241. font-size:15px;
  2242. top:2px
  2243. }
  2244. .opencl-icon:before {
  2245. content:"\E99F";
  2246. font-size:16px
  2247. }
  2248. .openoffice-icon:before {
  2249. font-family:file-icons;
  2250. font-size:15px;
  2251. content:"\E9E4";
  2252. top:2px
  2253. }
  2254. .org-icon:before {
  2255. font-family:file-icons;
  2256. font-size:15px;
  2257. content:"\E917";
  2258. top:1px;
  2259. font-size:14px;
  2260. left:1px
  2261. }
  2262. .owl-icon:before {
  2263. content:"\E957";
  2264. top:2px
  2265. }
  2266. .owl-icon:before,.ox-icon:before {
  2267. font-family:file-icons;
  2268. font-size:15px
  2269. }
  2270. .ox-icon:before {
  2271. content:"\E9A1";
  2272. top:3px;
  2273. font-size:16px;
  2274. text-shadow:0 0 0
  2275. }
  2276. .oxygene-icon:before {
  2277. content:"\E9BF"
  2278. }
  2279. .oxygene-icon:before,.oz-icon:before {
  2280. font-family:file-icons;
  2281. font-size:15px;
  2282. top:2px
  2283. }
  2284. .oz-icon:before {
  2285. content:"\E9BE"
  2286. }
  2287. .pan-icon:before {
  2288. content:"\E9BD"
  2289. }
  2290. .pan-icon:before,.papyrus-icon:before {
  2291. font-family:file-icons;
  2292. font-size:15px;
  2293. top:2px
  2294. }
  2295. .papyrus-icon:before {
  2296. content:"\E9BC"
  2297. }
  2298. .parrot-icon:before {
  2299. font-family:file-icons;
  2300. font-size:15px;
  2301. content:"\E9BB";
  2302. top:3px;
  2303. font-size:16px
  2304. }
  2305. .pascal-icon:before {
  2306. content:"\E92A"
  2307. }
  2308. .pascal-icon:before,.patch-icon:before {
  2309. font-family:file-icons;
  2310. font-size:15px;
  2311. top:2px
  2312. }
  2313. .patch-icon:before {
  2314. content:"\E961"
  2315. }
  2316. .pawn-icon:before {
  2317. font-family:file-icons;
  2318. font-size:15px;
  2319. content:"\265F";
  2320. top:1px;
  2321. font-size:14px
  2322. }
  2323. .perl6-icon:before {
  2324. content:"\E96C"
  2325. }
  2326. .perl6-icon:before,.phalcon-icon:before {
  2327. font-family:file-icons;
  2328. font-size:15px;
  2329. top:2px
  2330. }
  2331. .phalcon-icon:before {
  2332. content:"\E94A"
  2333. }
  2334. .php-icon:before {
  2335. font-family:file-icons;
  2336. font-size:15px;
  2337. content:"\F147";
  2338. top:1px;
  2339. font-size:14px;
  2340. left:1px
  2341. }
  2342. .pickle-icon:before {
  2343. font-family:file-icons;
  2344. font-size:15px;
  2345. content:"\E9C4";
  2346. top:2px
  2347. }
  2348. .pike-icon:before {
  2349. font-size:15px;
  2350. content:"\E9B9";
  2351. top:4px;
  2352. font-size:16px;
  2353. -webkit-transform:scale(1.15);
  2354. transform:scale(1.15)
  2355. }
  2356. .pike-icon:before,.pogo-icon:before {
  2357. font-family:file-icons;
  2358. -webkit-font-smoothing:subpixel-antialiased
  2359. }
  2360. .pogo-icon:before {
  2361. font-size:15px;
  2362. content:"\E9B8";
  2363. top:3px;
  2364. font-size:14px
  2365. }
  2366. .pony-icon:before {
  2367. font-family:file-icons;
  2368. font-size:15px;
  2369. content:"\E9B7";
  2370. top:3px;
  2371. font-size:16px
  2372. }
  2373. .pointwise-icon:before {
  2374. content:"\E977"
  2375. }
  2376. .pointwise-icon:before,.postcss-icon:before {
  2377. font-family:file-icons;
  2378. font-size:15px;
  2379. top:2px
  2380. }
  2381. .postcss-icon:before {
  2382. content:"\E910";
  2383. font-size:14px
  2384. }
  2385. .postscript-icon:before {
  2386. content:"\E955"
  2387. }
  2388. .postscript-icon:before,.povray-icon:before {
  2389. font-family:file-icons;
  2390. font-size:15px;
  2391. top:2px;
  2392. left:1px
  2393. }
  2394. .povray-icon:before {
  2395. content:"P"
  2396. }
  2397. .powerbuilder-icon:before {
  2398. font-family:file-icons;
  2399. font-size:15px;
  2400. content:"\EA14"
  2401. }
  2402. .powerpoint-icon:before {
  2403. font-family:file-icons;
  2404. font-size:15px;
  2405. content:"\E9EC";
  2406. top:2px
  2407. }
  2408. .powershell-icon:before {
  2409. font-family:file-icons;
  2410. font-size:15px;
  2411. content:"\E9DA";
  2412. top:2px;
  2413. font-size:16px
  2414. }
  2415. .premiere-icon:before {
  2416. font-family:file-icons;
  2417. font-size:15px;
  2418. content:"\E9F5";
  2419. top:2px
  2420. }
  2421. .processing-icon:before {
  2422. font-family:file-icons;
  2423. font-size:15px;
  2424. content:"\E9A0";
  2425. top:2px
  2426. }
  2427. .progress-icon:before {
  2428. content:"\E9C0";
  2429. top:2px;
  2430. -webkit-transform:scale(1.2);
  2431. transform:scale(1.2)
  2432. }
  2433. .progress-icon:before,.propeller-icon:before {
  2434. font-family:file-icons;
  2435. font-size:15px;
  2436. font-size:16px
  2437. }
  2438. .propeller-icon:before {
  2439. content:"\E9B5";
  2440. top:3px
  2441. }
  2442. .protractor-icon:before {
  2443. font-family:file-icons;
  2444. font-size:15px;
  2445. content:"\E9DE";
  2446. top:3px
  2447. }
  2448. .psd-icon:before {
  2449. font-family:file-icons;
  2450. font-size:15px;
  2451. content:"\E6B8";
  2452. top:2px
  2453. }
  2454. .pug-icon:before {
  2455. content:"\EA13"
  2456. }
  2457. .pug-alt-icon:before,.pug-icon:before {
  2458. font-family:file-icons;
  2459. font-size:15px;
  2460. top:3px;
  2461. font-size:16px
  2462. }
  2463. .pug-alt-icon:before {
  2464. content:"\E9D0"
  2465. }
  2466. .puppet-icon:before {
  2467. content:"\F0C3";
  2468. left:1px
  2469. }
  2470. .puppet-icon:before,.purebasic-icon:before {
  2471. font-family:file-icons;
  2472. font-size:15px;
  2473. top:2px
  2474. }
  2475. .purebasic-icon:before {
  2476. content:"\1B5"
  2477. }
  2478. .purescript-icon:before {
  2479. content:"\E9B2"
  2480. }
  2481. .purescript-icon:before,.r-icon:before {
  2482. font-family:file-icons;
  2483. font-size:15px;
  2484. top:3px
  2485. }
  2486. .r-icon:before {
  2487. content:"\E905";
  2488. font-size:17px
  2489. }
  2490. .racket-icon:before {
  2491. font-family:file-icons;
  2492. font-size:15px;
  2493. content:"\E9B1";
  2494. top:2px;
  2495. left:1px
  2496. }
  2497. .raml-icon:before {
  2498. font-family:file-icons;
  2499. font-size:15px;
  2500. content:"\E913";
  2501. top:1px;
  2502. font-size:14px
  2503. }
  2504. .rascal-icon:before {
  2505. content:"\EA24"
  2506. }
  2507. .rascal-icon:before,.rdoc-icon:before {
  2508. font-family:file-icons;
  2509. font-size:15px;
  2510. top:2px
  2511. }
  2512. .rdoc-icon:before {
  2513. content:"\E9B0";
  2514. left:1px
  2515. }
  2516. .react-icon:before {
  2517. font-family:file-icons;
  2518. font-size:15px;
  2519. content:"\F100";
  2520. top:2px
  2521. }
  2522. .rebol-icon:before {
  2523. font-family:file-icons;
  2524. font-size:15px;
  2525. content:"\E9AE";
  2526. top:1px;
  2527. font-size:13px
  2528. }
  2529. .reason-icon:before {
  2530. content:"\EA1D"
  2531. }
  2532. .reason-icon:before,.red-icon:before {
  2533. font-family:file-icons;
  2534. font-size:15px;
  2535. top:3px
  2536. }
  2537. .red-icon:before {
  2538. content:"\E9AD";
  2539. font-size:16px
  2540. }
  2541. .regex-icon:before {
  2542. font-family:file-icons;
  2543. font-size:15px;
  2544. content:"*";
  2545. top:1px;
  2546. font-size:12px;
  2547. left:1px
  2548. }
  2549. .rexx-icon:before {
  2550. font-family:file-icons;
  2551. font-size:15px;
  2552. content:"\EA16";
  2553. top:2px;
  2554. font-size:14px;
  2555. left:1px
  2556. }
  2557. .riot-icon:before {
  2558. font-family:file-icons;
  2559. font-size:15px;
  2560. content:"\E919";
  2561. top:4px;
  2562. font-size:18px
  2563. }
  2564. .robot-icon:before {
  2565. font-family:file-icons;
  2566. font-size:15px;
  2567. content:"\E9AC";
  2568. top:2px;
  2569. font-size:14px
  2570. }
  2571. .rollup-icon:before {
  2572. font-family:file-icons;
  2573. font-size:15px;
  2574. content:"\EA20";
  2575. top:2px
  2576. }
  2577. .rst-icon:before {
  2578. content:"\E9CC"
  2579. }
  2580. .rst-icon:before,.sage-icon:before {
  2581. font-family:file-icons;
  2582. font-size:15px;
  2583. top:3px;
  2584. font-size:16px
  2585. }
  2586. .sage-icon:before {
  2587. content:"\E9AB";
  2588. -webkit-font-smoothing:subpixel-antialiased
  2589. }
  2590. .saltstack-icon:before {
  2591. font-family:file-icons;
  2592. font-size:15px;
  2593. content:"\E915";
  2594. top:2px;
  2595. font-size:14px
  2596. }
  2597. .sas-icon:before {
  2598. content:"\E95A"
  2599. }
  2600. .sas-icon:before,.sbt-icon:before {
  2601. font-family:file-icons;
  2602. font-size:15px;
  2603. top:2px
  2604. }
  2605. .sbt-icon:before {
  2606. content:"\E9D2";
  2607. font-size:14px
  2608. }
  2609. .scd-icon:before {
  2610. content:"\E9A2"
  2611. }
  2612. .scad-icon:before,.scd-icon:before {
  2613. font-family:file-icons;
  2614. font-size:15px;
  2615. top:2px
  2616. }
  2617. .scad-icon:before {
  2618. content:"\E911";
  2619. font-size:14px
  2620. }
  2621. .scheme-icon:before {
  2622. font-family:file-icons;
  2623. font-size:15px;
  2624. content:"\3BB";
  2625. top:2px
  2626. }
  2627. .scilab-icon:before {
  2628. font-family:file-icons;
  2629. font-size:15px;
  2630. content:"\E9A9";
  2631. top:3px;
  2632. font-size:18px;
  2633. left:-1px;
  2634. -webkit-font-smoothing:subpixel-antialiased
  2635. }
  2636. .scrutinizer-icon:before {
  2637. font-family:file-icons;
  2638. font-size:15px;
  2639. content:"\E9D4";
  2640. top:2px;
  2641. font-size:14px
  2642. }
  2643. .self-icon:before {
  2644. font-family:file-icons;
  2645. font-size:15px;
  2646. content:"\E9A8";
  2647. top:3px;
  2648. font-size:16px;
  2649. text-shadow:0 0 0;
  2650. -webkit-transform:scale(1.2);
  2651. transform:scale(1.2)
  2652. }
  2653. .sf-icon:before {
  2654. content:"\E9DB"
  2655. }
  2656. .sf-icon:before,.shen-icon:before {
  2657. font-family:file-icons;
  2658. font-size:15px;
  2659. top:2px
  2660. }
  2661. .shen-icon:before {
  2662. content:"\E9A7";
  2663. font-size:16px
  2664. }
  2665. .shopify-icon:before {
  2666. content:"\E9CF"
  2667. }
  2668. .shopify-icon:before,.shuriken-icon:before {
  2669. font-family:file-icons;
  2670. font-size:15px;
  2671. top:2px
  2672. }
  2673. .shuriken-icon:before {
  2674. content:"\272B";
  2675. font-size:14px
  2676. }
  2677. .sigils-icon:before {
  2678. font-family:file-icons;
  2679. font-size:15px;
  2680. content:"\1F764";
  2681. top:3px;
  2682. font-size:16px;
  2683. text-shadow:0 0 0
  2684. }
  2685. .silverstripe-icon:before {
  2686. font-family:file-icons;
  2687. font-size:15px;
  2688. content:"\E800";
  2689. top:2px
  2690. }
  2691. .sketch-icon:before {
  2692. content:"\E927"
  2693. }
  2694. .sketch-icon:before,.slash-icon:before {
  2695. font-family:file-icons;
  2696. font-size:15px;
  2697. top:2px
  2698. }
  2699. .slash-icon:before {
  2700. content:"\E9A6"
  2701. }
  2702. .snyk-icon:before {
  2703. font-family:file-icons;
  2704. font-size:15px;
  2705. content:"\EA1C";
  2706. top:2px;
  2707. font-size:16px
  2708. }
  2709. .sparql-icon:before {
  2710. content:"\E959";
  2711. top:2px
  2712. }
  2713. .sparql-icon:before,.sqf-icon:before {
  2714. font-family:file-icons;
  2715. font-size:15px
  2716. }
  2717. .sqf-icon:before {
  2718. content:"\E9A5";
  2719. top:1px;
  2720. text-shadow:0 0 0
  2721. }
  2722. .sqlite-icon:before {
  2723. font-family:file-icons;
  2724. font-size:15px;
  2725. content:"\E9DD";
  2726. top:3px
  2727. }
  2728. .stan-icon:before {
  2729. content:"\E9A4"
  2730. }
  2731. .stan-icon:before,.stata-icon:before {
  2732. font-family:file-icons;
  2733. font-size:15px;
  2734. top:2px
  2735. }
  2736. .stata-icon:before {
  2737. content:"\E9A3"
  2738. }
  2739. .storyist-icon:before {
  2740. font-family:file-icons;
  2741. font-size:15px;
  2742. content:"\E9EF";
  2743. top:2px;
  2744. font-size:16px
  2745. }
  2746. .strings-icon:before {
  2747. content:"\E9E0"
  2748. }
  2749. .strings-icon:before,.stylelint-icon:before {
  2750. font-family:file-icons;
  2751. font-size:15px;
  2752. top:2px
  2753. }
  2754. .stylelint-icon:before {
  2755. content:"\E93D"
  2756. }
  2757. .stylus-icon:before {
  2758. content:"s";
  2759. left:1px
  2760. }
  2761. .stylus-icon:before,.sublime-icon:before {
  2762. font-family:file-icons;
  2763. font-size:15px;
  2764. top:2px
  2765. }
  2766. .sublime-icon:before {
  2767. content:"\E986"
  2768. }
  2769. .svn-icon:before {
  2770. content:"\EA17"
  2771. }
  2772. .svn-icon:before,.sysverilog-icon:before {
  2773. font-family:file-icons;
  2774. font-size:15px;
  2775. top:2px
  2776. }
  2777. .sysverilog-icon:before {
  2778. content:"\E9C3"
  2779. }
  2780. .tag-icon:before {
  2781. font-family:file-icons;
  2782. font-size:15px;
  2783. content:"\F015";
  2784. top:2px;
  2785. font-size:14px
  2786. }
  2787. .tcl-icon:before {
  2788. font-family:file-icons;
  2789. font-size:15px;
  2790. content:"\E956";
  2791. top:2px;
  2792. font-size:16px
  2793. }
  2794. .terminal-icon:before {
  2795. font-family:file-icons;
  2796. font-size:15px;
  2797. content:"\F0C8";
  2798. top:2px;
  2799. font-size:14px
  2800. }
  2801. .tern-icon:before {
  2802. font-family:file-icons;
  2803. font-size:15px;
  2804. content:"\1F54A";
  2805. top:4px;
  2806. font-size:16px
  2807. }
  2808. .terraform-icon:before {
  2809. font-family:file-icons;
  2810. font-size:15px;
  2811. content:"\E916";
  2812. top:1px;
  2813. font-size:14px
  2814. }
  2815. .tex-icon:before {
  2816. font-family:file-icons;
  2817. font-size:15px;
  2818. content:"\E600";
  2819. top:4px;
  2820. font-size:16px;
  2821. -webkit-font-smoothing:subpixel-antialiased
  2822. }
  2823. .textile-icon:before {
  2824. content:"t"
  2825. }
  2826. .textile-icon:before,.textmate-icon:before {
  2827. font-family:file-icons;
  2828. font-size:15px;
  2829. top:2px
  2830. }
  2831. .textmate-icon:before {
  2832. content:"\2122";
  2833. font-size:16px
  2834. }
  2835. .thor-icon:before {
  2836. font-family:file-icons;
  2837. font-size:15px;
  2838. content:"\E9D8";
  2839. top:2px
  2840. }
  2841. .ts-icon:before {
  2842. content:"\2A6"
  2843. }
  2844. .ts-icon:before,.tsx-icon:before {
  2845. font-family:file-icons;
  2846. font-size:15px;
  2847. top:1px;
  2848. font-size:14px
  2849. }
  2850. .tsx-icon:before {
  2851. content:"\E9E7"
  2852. }
  2853. .turing-icon:before {
  2854. content:"\E9B6"
  2855. }
  2856. .turing-icon:before,.txl-icon:before {
  2857. font-family:file-icons;
  2858. font-size:15px;
  2859. top:2px
  2860. }
  2861. .txl-icon:before {
  2862. content:"\E9C1"
  2863. }
  2864. .typedoc-icon:before {
  2865. content:"\E9FE"
  2866. }
  2867. .typedoc-icon:before,.typings-icon:before {
  2868. font-family:file-icons;
  2869. font-size:15px;
  2870. top:2px
  2871. }
  2872. .typings-icon:before {
  2873. content:"\E9DF"
  2874. }
  2875. .uno-icon:before {
  2876. content:"\E9B3"
  2877. }
  2878. .uno-icon:before,.unreal-icon:before {
  2879. font-family:file-icons;
  2880. font-size:15px;
  2881. top:2px
  2882. }
  2883. .unreal-icon:before {
  2884. content:"u"
  2885. }
  2886. .urweb-icon:before {
  2887. font-family:file-icons;
  2888. font-size:15px;
  2889. content:"\E9BA";
  2890. top:4px;
  2891. font-size:18px;
  2892. left:-1px;
  2893. text-shadow:0 0 0
  2894. }
  2895. .webpack-icon:before {
  2896. font-family:file-icons;
  2897. font-size:15px;
  2898. content:"\E91E";
  2899. top:3px
  2900. }
  2901. .wercker-icon:before {
  2902. content:"\EA19"
  2903. }
  2904. .wercker-icon:before,.word-icon:before {
  2905. font-family:file-icons;
  2906. font-size:15px;
  2907. top:2px
  2908. }
  2909. .word-icon:before {
  2910. content:"\E9ED"
  2911. }
  2912. .v8-icon:before {
  2913. font-family:file-icons;
  2914. font-size:15px;
  2915. content:"\EA1F";
  2916. top:3px;
  2917. font-size:16px
  2918. }
  2919. .vagrant-icon:before {
  2920. content:"V";
  2921. top:2px
  2922. }
  2923. .vagrant-icon:before,.varnish-icon:before {
  2924. font-family:file-icons;
  2925. font-size:15px;
  2926. font-size:14px
  2927. }
  2928. .varnish-icon:before {
  2929. content:"\E9B4";
  2930. top:1px
  2931. }
  2932. .verilog-icon:before {
  2933. content:"\E949"
  2934. }
  2935. .verilog-icon:before,.vhdl-icon:before {
  2936. font-family:file-icons;
  2937. font-size:15px;
  2938. top:2px
  2939. }
  2940. .vhdl-icon:before {
  2941. content:"\E9AA"
  2942. }
  2943. .video-icon:before {
  2944. font-family:file-icons;
  2945. font-size:15px;
  2946. content:"\F057";
  2947. top:1px;
  2948. font-size:14px
  2949. }
  2950. .vue-icon:before {
  2951. content:"\E906";
  2952. top:3px
  2953. }
  2954. .vue-icon:before,.x10-icon:before {
  2955. font-family:file-icons;
  2956. font-size:15px
  2957. }
  2958. .x10-icon:before {
  2959. content:"\2169";
  2960. top:2px
  2961. }
  2962. .xmos-icon:before {
  2963. font-family:file-icons;
  2964. font-size:15px;
  2965. content:"X";
  2966. top:1px;
  2967. font-size:14px
  2968. }
  2969. .xojo-icon:before {
  2970. content:"\E9AF"
  2971. }
  2972. .xojo-icon:before,.xpages-icon:before {
  2973. font-family:file-icons;
  2974. font-size:15px;
  2975. top:2px
  2976. }
  2977. .xpages-icon:before {
  2978. content:"\E9C5"
  2979. }
  2980. .xtend-icon:before {
  2981. content:"\E9C6"
  2982. }
  2983. .xtend-icon:before,.yang-icon:before {
  2984. font-family:file-icons;
  2985. font-size:15px;
  2986. top:2px
  2987. }
  2988. .yang-icon:before {
  2989. content:"\262F"
  2990. }
  2991. .yarn-icon:before {
  2992. font-family:file-icons;
  2993. font-size:15px;
  2994. content:"\EA1A";
  2995. top:2px;
  2996. font-size:16px
  2997. }
  2998. .yui-icon:before {
  2999. content:"\EA00"
  3000. }
  3001. .yui-icon:before,.zbrush-icon:before {
  3002. font-family:file-icons;
  3003. font-size:15px;
  3004. top:2px
  3005. }
  3006. .zbrush-icon:before {
  3007. content:"\E9F2";
  3008. font-size:16px
  3009. }
  3010. .zephir-icon:before {
  3011. content:"\E9C7";
  3012. -webkit-font-smoothing:subpixel-antialiased
  3013. }
  3014. .zephir-icon:before,.zimpl-icon:before {
  3015. font-family:file-icons;
  3016. font-size:15px;
  3017. top:2px
  3018. }
  3019. .zimpl-icon:before {
  3020. content:"\E9C8";
  3021. font-size:16px;
  3022. left:1px
  3023. }