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

linea-icon.css 48KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403
  1. .glyphs.character-mapping li {
  2. margin: 0 30px 20px 0;
  3. display: inline-block;
  4. width: 90px;
  5. text-align: center;
  6. font-size: 24px;
  7. color: #2b2b2b;
  8. }
  9. .linea-icon {
  10. position: relative;
  11. }
  12. .linea-icon svg {
  13. fill: #000;
  14. }
  15. .glyphs.character-mapping input {
  16. margin: 0;
  17. padding: 5px 0;
  18. line-height: 12px;
  19. font-size: 12px;
  20. display: block;
  21. width: 100%;
  22. border: 1px solid #eee;
  23. text-align: center;
  24. outline: 0;
  25. }
  26. .glyphs.character-mapping input:focus,
  27. .glyphs.character-mapping input:hover
  28. {
  29. border: 1px solid #2f2c2c;
  30. }
  31. @font-face {
  32. font-family: "linea-arrows-10";
  33. src: url("../linea-icons/linea-arrows-10.eot");
  34. src: url("../linea-icons/linea-arrows-10d41d.eot?#iefix") format("embedded-opentype"), url("../linea-icons/linea-arrows-10.woff") format("woff"), url("../linea-icons/linea-arrows-10.ttf") format("truetype"), url("../linea-icons/linea-arrows-10.svg#linea-arrows-10") format("svg");
  35. font-weight: normal;
  36. font-style: normal;
  37. }
  38. .linea-aerrow[data-icon]:before {
  39. font-family: "linea-arrows-10" !important;
  40. content: attr(data-icon);
  41. font-style: normal !important;
  42. font-weight: normal !important;
  43. font-variant: normal !important;
  44. text-transform: none !important;
  45. speak: none;
  46. line-height: 1;
  47. -webkit-font-smoothing: antialiased;
  48. -moz-osx-font-smoothing: grayscale;
  49. }
  50. [class^="linea-icon-"]:before,
  51. [class*="linea- icon-"]:before {
  52. font-family: "linea-arrows-10" !important;
  53. font-style: normal !important;
  54. font-weight: normal !important;
  55. font-variant: normal !important;
  56. text-transform: none !important;
  57. speak: none;
  58. line-height: 1;
  59. -webkit-font-smoothing: antialiased;
  60. -moz-osx-font-smoothing: grayscale;
  61. }
  62. .icon-arrows-anticlockwise:before {
  63. content: "\e000";
  64. }
  65. .icon-arrows-anticlockwise-dashed:before {
  66. content: "\e001";
  67. }
  68. .icon-arrows-button-down:before {
  69. content: "\e002";
  70. }
  71. .icon-arrows-button-off:before {
  72. content: "\e003";
  73. }
  74. .icon-arrows-button-on:before {
  75. content: "\e004";
  76. }
  77. .icon-arrows-button-up:before {
  78. content: "\e005";
  79. }
  80. .icon-arrows-check:before {
  81. content: "\e006";
  82. }
  83. .icon-arrows-circle-check:before {
  84. content: "\e007";
  85. }
  86. .icon-arrows-circle-down:before {
  87. content: "\e008";
  88. }
  89. .icon-arrows-circle-downleft:before {
  90. content: "\e009";
  91. }
  92. .icon-arrows-circle-downright:before {
  93. content: "\e00a";
  94. }
  95. .icon-arrows-circle-left:before {
  96. content: "\e00b";
  97. }
  98. .icon-arrows-circle-minus:before {
  99. content: "\e00c";
  100. }
  101. .icon-arrows-circle-plus:before {
  102. content: "\e00d";
  103. }
  104. .icon-arrows-circle-remove:before {
  105. content: "\e00e";
  106. }
  107. .icon-arrows-circle-right:before {
  108. content: "\e00f";
  109. }
  110. .icon-arrows-circle-up:before {
  111. content: "\e010";
  112. }
  113. .icon-arrows-circle-upleft:before {
  114. content: "\e011";
  115. }
  116. .icon-arrows-circle-upright:before {
  117. content: "\e012";
  118. }
  119. .icon-arrows-clockwise:before {
  120. content: "\e013";
  121. }
  122. .icon-arrows-clockwise-dashed:before {
  123. content: "\e014";
  124. }
  125. .icon-arrows-compress:before {
  126. content: "\e015";
  127. }
  128. .icon-arrows-deny:before {
  129. content: "\e016";
  130. }
  131. .icon-arrows-diagonal:before {
  132. content: "\e017";
  133. }
  134. .icon-arrows-diagonal2:before {
  135. content: "\e018";
  136. }
  137. .icon-arrows-down:before {
  138. content: "\e019";
  139. }
  140. .icon-arrows-down-double:before {
  141. content: "\e01a";
  142. }
  143. .icon-arrows-downleft:before {
  144. content: "\e01b";
  145. }
  146. .icon-arrows-downright:before {
  147. content: "\e01c";
  148. }
  149. .icon-arrows-drag-down:before {
  150. content: "\e01d";
  151. }
  152. .icon-arrows-drag-down-dashed:before {
  153. content: "\e01e";
  154. }
  155. .icon-arrows-drag-horiz:before {
  156. content: "\e01f";
  157. }
  158. .icon-arrows-drag-left:before {
  159. content: "\e020";
  160. }
  161. .icon-arrows-drag-left-dashed:before {
  162. content: "\e021";
  163. }
  164. .icon-arrows-drag-right:before {
  165. content: "\e022";
  166. }
  167. .icon-arrows-drag-right-dashed:before {
  168. content: "\e023";
  169. }
  170. .icon-arrows-drag-up:before {
  171. content: "\e024";
  172. }
  173. .icon-arrows-drag-up-dashed:before {
  174. content: "\e025";
  175. }
  176. .icon-arrows-drag-vert:before {
  177. content: "\e026";
  178. }
  179. .icon-arrows-exclamation:before {
  180. content: "\e027";
  181. }
  182. .icon-arrows-expand:before {
  183. content: "\e028";
  184. }
  185. .icon-arrows-expand-diagonal1:before {
  186. content: "\e029";
  187. }
  188. .icon-arrows-expand-horizontal1:before {
  189. content: "\e02a";
  190. }
  191. .icon-arrows-expand-vertical1:before {
  192. content: "\e02b";
  193. }
  194. .icon-arrows-fit-horizontal:before {
  195. content: "\e02c";
  196. }
  197. .icon-arrows-fit-vertical:before {
  198. content: "\e02d";
  199. }
  200. .icon-arrows-glide:before {
  201. content: "\e02e";
  202. }
  203. .icon-arrows-glide-horizontal:before {
  204. content: "\e02f";
  205. }
  206. .icon-arrows-glide-vertical:before {
  207. content: "\e030";
  208. }
  209. .icon-arrows-hamburger1:before {
  210. content: "\e031";
  211. }
  212. .icon-arrows-hamburger-2:before {
  213. content: "\e032";
  214. }
  215. .icon-arrows-horizontal:before {
  216. content: "\e033";
  217. }
  218. .icon-arrows-info:before {
  219. content: "\e034";
  220. }
  221. .icon-arrows-keyboard-alt:before {
  222. content: "\e035";
  223. }
  224. .icon-arrows-keyboard-cmd:before {
  225. content: "\e036";
  226. }
  227. .icon-arrows-keyboard-delete:before {
  228. content: "\e037";
  229. }
  230. .icon-arrows-keyboard-down:before {
  231. content: "\e038";
  232. }
  233. .icon-arrows-keyboard-left:before {
  234. content: "\e039";
  235. }
  236. .icon-arrows-keyboard-return:before {
  237. content: "\e03a";
  238. }
  239. .icon-arrows-keyboard-right:before {
  240. content: "\e03b";
  241. }
  242. .icon-arrows-keyboard-shift:before {
  243. content: "\e03c";
  244. }
  245. .icon-arrows-keyboard-tab:before {
  246. content: "\e03d";
  247. }
  248. .icon-arrows-keyboard-up:before {
  249. content: "\e03e";
  250. }
  251. .icon-arrows-left:before {
  252. content: "\e03f";
  253. }
  254. .icon-arrows-left-double-32:before {
  255. content: "\e040";
  256. }
  257. .icon-arrows-minus:before {
  258. content: "\e041";
  259. }
  260. .icon-arrows-move:before {
  261. content: "\e042";
  262. }
  263. .icon-arrows-move2:before {
  264. content: "\e043";
  265. }
  266. .icon-arrows-move-bottom:before {
  267. content: "\e044";
  268. }
  269. .icon-arrows-move-left:before {
  270. content: "\e045";
  271. }
  272. .icon-arrows-move-right:before {
  273. content: "\e046";
  274. }
  275. .icon-arrows-move-top:before {
  276. content: "\e047";
  277. }
  278. .icon-arrows-plus:before {
  279. content: "\e048";
  280. }
  281. .icon-arrows-question:before {
  282. content: "\e049";
  283. }
  284. .icon-arrows-remove:before {
  285. content: "\e04a";
  286. }
  287. .icon-arrows-right:before {
  288. content: "\e04b";
  289. }
  290. .icon-arrows-right-double:before {
  291. content: "\e04c";
  292. }
  293. .icon-arrows-rotate:before {
  294. content: "\e04d";
  295. }
  296. .icon-arrows-rotate-anti:before {
  297. content: "\e04e";
  298. }
  299. .icon-arrows-rotate-anti-dashed:before {
  300. content: "\e04f";
  301. }
  302. .icon-arrows-rotate-dashed:before {
  303. content: "\e050";
  304. }
  305. .icon-arrows-shrink:before {
  306. content: "\e051";
  307. }
  308. .icon-arrows-shrink-diagonal1:before {
  309. content: "\e052";
  310. }
  311. .icon-arrows-shrink-diagonal2:before {
  312. content: "\e053";
  313. }
  314. .icon-arrows-shrink-horizonal2:before {
  315. content: "\e054";
  316. }
  317. .icon-arrows-shrink-horizontal1:before {
  318. content: "\e055";
  319. }
  320. .icon-arrows-shrink-vertical1:before {
  321. content: "\e056";
  322. }
  323. .icon-arrows-shrink-vertical2:before {
  324. content: "\e057";
  325. }
  326. .icon-arrows-sign-down:before {
  327. content: "\e058";
  328. }
  329. .icon-arrows-sign-left:before {
  330. content: "\e059";
  331. }
  332. .icon-arrows-sign-right:before {
  333. content: "\e05a";
  334. }
  335. .icon-arrows-sign-up:before {
  336. content: "\e05b";
  337. }
  338. .icon-arrows-slide-down1:before {
  339. content: "\e05c";
  340. }
  341. .icon-arrows-slide-down2:before {
  342. content: "\e05d";
  343. }
  344. .icon-arrows-slide-left1:before {
  345. content: "\e05e";
  346. }
  347. .icon-arrows-slide-left2:before {
  348. content: "\e05f";
  349. }
  350. .icon-arrows-slide-right1:before {
  351. content: "\e060";
  352. }
  353. .icon-arrows-slide-right2:before {
  354. content: "\e061";
  355. }
  356. .icon-arrows-slide-up1:before {
  357. content: "\e062";
  358. }
  359. .icon-arrows-slide-up2:before {
  360. content: "\e063";
  361. }
  362. .icon-arrows-slim-down:before {
  363. content: "\e064";
  364. }
  365. .icon-arrows-slim-down-dashed:before {
  366. content: "\e065";
  367. }
  368. .icon-arrows-slim-left:before {
  369. content: "\e066";
  370. }
  371. .icon-arrows-slim-left-dashed:before {
  372. content: "\e067";
  373. }
  374. .icon-arrows-slim-right:before {
  375. content: "\e068";
  376. }
  377. .icon-arrows-slim-right-dashed:before {
  378. content: "\e069";
  379. }
  380. .icon-arrows-slim-up:before {
  381. content: "\e06a";
  382. }
  383. .icon-arrows-slim-up-dashed:before {
  384. content: "\e06b";
  385. }
  386. .icon-arrows-square-check:before {
  387. content: "\e06c";
  388. }
  389. .icon-arrows-square-down:before {
  390. content: "\e06d";
  391. }
  392. .icon-arrows-square-downleft:before {
  393. content: "\e06e";
  394. }
  395. .icon-arrows-square-downright:before {
  396. content: "\e06f";
  397. }
  398. .icon-arrows-square-left:before {
  399. content: "\e070";
  400. }
  401. .icon-arrows-square-minus:before {
  402. content: "\e071";
  403. }
  404. .icon-arrows-square-plus:before {
  405. content: "\e072";
  406. }
  407. .icon-arrows-square-remove:before {
  408. content: "\e073";
  409. }
  410. .icon-arrows-square-right:before {
  411. content: "\e074";
  412. }
  413. .icon-arrows-square-up:before {
  414. content: "\e075";
  415. }
  416. .icon-arrows-square-upleft:before {
  417. content: "\e076";
  418. }
  419. .icon-arrows-square-upright:before {
  420. content: "\e077";
  421. }
  422. .icon-arrows-squares:before {
  423. content: "\e078";
  424. }
  425. .icon-arrows-stretch-diagonal1:before {
  426. content: "\e079";
  427. }
  428. .icon-arrows-stretch-diagonal2:before {
  429. content: "\e07a";
  430. }
  431. .icon-arrows-stretch-diagonal3:before {
  432. content: "\e07b";
  433. }
  434. .icon-arrows-stretch-diagonal4:before {
  435. content: "\e07c";
  436. }
  437. .icon-arrows-stretch-horizontal1:before {
  438. content: "\e07d";
  439. }
  440. .icon-arrows-stretch-horizontal2:before {
  441. content: "\e07e";
  442. }
  443. .icon-arrows-stretch-vertical1:before {
  444. content: "\e07f";
  445. }
  446. .icon-arrows-stretch-vertical2:before {
  447. content: "\e080";
  448. }
  449. .icon-arrows-switch-horizontal:before {
  450. content: "\e081";
  451. }
  452. .icon-arrows-switch-vertical:before {
  453. content: "\e082";
  454. }
  455. .icon-arrows-up:before {
  456. content: "\e083";
  457. }
  458. .icon-arrows-up-double-33:before {
  459. content: "\e084";
  460. }
  461. .icon-arrows-upleft:before {
  462. content: "\e085";
  463. }
  464. .icon-arrows-upright:before {
  465. content: "\e086";
  466. }
  467. .icon-arrows-vertical:before {
  468. content: "\e087";
  469. }
  470. /*Basic icon*/
  471. @font-face {
  472. font-family: "linea-basic-10";
  473. src: url("../linea-icons/linea-basic-10.eot");
  474. src: url("../linea-icons/linea-basic-10d41d.eot?#iefix") format("embedded-opentype"), url("../linea-icons/linea-basic-10.woff") format("woff"), url("../linea-icons/linea-basic-10.ttf") format("truetype"), url("../linea-icons/linea-basic-10.svg#linea-basic-10") format("svg");
  475. font-weight: normal;
  476. font-style: normal;
  477. }
  478. .linea-basic[data-icon]:before {
  479. font-family: "linea-basic-10" !important;
  480. content: attr(data-icon);
  481. font-style: normal !important;
  482. font-weight: normal !important;
  483. font-variant: normal !important;
  484. text-transform: none !important;
  485. speak: none;
  486. line-height: 1;
  487. -webkit-font-smoothing: antialiased;
  488. -moz-osx-font-smoothing: grayscale;
  489. }
  490. [class^="linea-icon-"]:before,
  491. [class*="linea- icon-"]:before {
  492. font-family: "linea-basic-10" !important;
  493. font-style: normal !important;
  494. font-weight: normal !important;
  495. font-variant: normal !important;
  496. text-transform: none !important;
  497. speak: none;
  498. line-height: 1;
  499. -webkit-font-smoothing: antialiased;
  500. -moz-osx-font-smoothing: grayscale;
  501. }
  502. .icon-basic-accelerator:before {
  503. content: "a";
  504. }
  505. .icon-basic-alarm:before {
  506. content: "b";
  507. }
  508. .icon-basic-anchor:before {
  509. content: "c";
  510. }
  511. .icon-basic-anticlockwise:before {
  512. content: "d";
  513. }
  514. .icon-basic-archive:before {
  515. content: "e";
  516. }
  517. .icon-basic-archive-full:before {
  518. content: "f";
  519. }
  520. .icon-basic-ban:before {
  521. content: "g";
  522. }
  523. .icon-basic-battery-charge:before {
  524. content: "h";
  525. }
  526. .icon-basic-battery-empty:before {
  527. content: "i";
  528. }
  529. .icon-basic-battery-full:before {
  530. content: "j";
  531. }
  532. .icon-basic-battery-half:before {
  533. content: "k";
  534. }
  535. .icon-basic-bolt:before {
  536. content: "l";
  537. }
  538. .icon-basic-book:before {
  539. content: "m";
  540. }
  541. .icon-basic-book-pen:before {
  542. content: "n";
  543. }
  544. .icon-basic-book-pencil:before {
  545. content: "o";
  546. }
  547. .icon-basic-bookmark:before {
  548. content: "p";
  549. }
  550. .icon-basic-calculator:before {
  551. content: "q";
  552. }
  553. .icon-basic-calendar:before {
  554. content: "r";
  555. }
  556. .icon-basic-cards-diamonds:before {
  557. content: "s";
  558. }
  559. .icon-basic-cards-hearts:before {
  560. content: "t";
  561. }
  562. .icon-basic-case:before {
  563. content: "u";
  564. }
  565. .icon-basic-chronometer:before {
  566. content: "v";
  567. }
  568. .icon-basic-clessidre:before {
  569. content: "w";
  570. }
  571. .icon-basic-clock:before {
  572. content: "x";
  573. }
  574. .icon-basic-clockwise:before {
  575. content: "y";
  576. }
  577. .icon-basic-cloud:before {
  578. content: "z";
  579. }
  580. .icon-basic-clubs:before {
  581. content: "A";
  582. }
  583. .icon-basic-compass:before {
  584. content: "B";
  585. }
  586. .icon-basic-cup:before {
  587. content: "C";
  588. }
  589. .icon-basic-diamonds:before {
  590. content: "D";
  591. }
  592. .icon-basic-display:before {
  593. content: "E";
  594. }
  595. .icon-basic-download:before {
  596. content: "F";
  597. }
  598. .icon-basic-exclamation:before {
  599. content: "G";
  600. }
  601. .icon-basic-eye:before {
  602. content: "H";
  603. }
  604. .icon-basic-eye-closed:before {
  605. content: "I";
  606. }
  607. .icon-basic-female:before {
  608. content: "J";
  609. }
  610. .icon-basic-flag1:before {
  611. content: "K";
  612. }
  613. .icon-basic-flag2:before {
  614. content: "L";
  615. }
  616. .icon-basic-floppydisk:before {
  617. content: "M";
  618. }
  619. .icon-basic-folder:before {
  620. content: "N";
  621. }
  622. .icon-basic-folder-multiple:before {
  623. content: "O";
  624. }
  625. .icon-basic-gear:before {
  626. content: "P";
  627. }
  628. .icon-basic-geolocalize-01:before {
  629. content: "Q";
  630. }
  631. .icon-basic-geolocalize-05:before {
  632. content: "R";
  633. }
  634. .icon-basic-globe:before {
  635. content: "S";
  636. }
  637. .icon-basic-gunsight:before {
  638. content: "T";
  639. }
  640. .icon-basic-hammer:before {
  641. content: "U";
  642. }
  643. .icon-basic-headset:before {
  644. content: "V";
  645. }
  646. .icon-basic-heart:before {
  647. content: "W";
  648. }
  649. .icon-basic-heart-broken:before {
  650. content: "X";
  651. }
  652. .icon-basic-helm:before {
  653. content: "Y";
  654. }
  655. .icon-basic-home:before {
  656. content: "Z";
  657. }
  658. .icon-basic-info:before {
  659. content: "0";
  660. }
  661. .icon-basic-ipod:before {
  662. content: "1";
  663. }
  664. .icon-basic-joypad:before {
  665. content: "2";
  666. }
  667. .icon-basic-key:before {
  668. content: "3";
  669. }
  670. .icon-basic-keyboard:before {
  671. content: "4";
  672. }
  673. .icon-basic-laptop:before {
  674. content: "5";
  675. }
  676. .icon-basic-life-buoy:before {
  677. content: "6";
  678. }
  679. .icon-basic-lightbulb:before {
  680. content: "7";
  681. }
  682. .icon-basic-link:before {
  683. content: "8";
  684. }
  685. .icon-basic-lock:before {
  686. content: "9";
  687. }
  688. .icon-basic-lock-open:before {
  689. content: "!";
  690. }
  691. .icon-basic-magic-mouse:before {
  692. content: "\"";
  693. }
  694. .icon-basic-magnifier:before {
  695. content: "#";
  696. }
  697. .icon-basic-magnifier-minus:before {
  698. content: "$";
  699. }
  700. .icon-basic-magnifier-plus:before {
  701. content: "%";
  702. }
  703. .icon-basic-mail:before {
  704. content: "&";
  705. }
  706. .icon-basic-mail-multiple:before {
  707. content: "'";
  708. }
  709. .icon-basic-mail-open:before {
  710. content: "(";
  711. }
  712. .icon-basic-mail-open-text:before {
  713. content: ")";
  714. }
  715. .icon-basic-male:before {
  716. content: "*";
  717. }
  718. .icon-basic-map:before {
  719. content: "+";
  720. }
  721. .icon-basic-message:before {
  722. content: ",";
  723. }
  724. .icon-basic-message-multiple:before {
  725. content: "-";
  726. }
  727. .icon-basic-message-txt:before {
  728. content: ".";
  729. }
  730. .icon-basic-mixer2:before {
  731. content: "/";
  732. }
  733. .icon-basic-mouse:before {
  734. content: ":";
  735. }
  736. .icon-basic-notebook:before {
  737. content: ";";
  738. }
  739. .icon-basic-notebook-pen:before {
  740. content: "<";
  741. }
  742. .icon-basic-notebook-pencil:before {
  743. content: "=";
  744. }
  745. .icon-basic-paperplane:before {
  746. content: ">";
  747. }
  748. .icon-basic-pencil-ruler:before {
  749. content: "?";
  750. }
  751. .icon-basic-pencil-ruler-pen:before {
  752. content: "@";
  753. }
  754. .icon-basic-photo:before {
  755. content: "[";
  756. }
  757. .icon-basic-picture:before {
  758. content: "]";
  759. }
  760. .icon-basic-picture-multiple:before {
  761. content: "^";
  762. }
  763. .icon-basic-pin1:before {
  764. content: "_";
  765. }
  766. .icon-basic-pin2:before {
  767. content: "`";
  768. }
  769. .icon-basic-postcard:before {
  770. content: "{";
  771. }
  772. .icon-basic-postcard-multiple:before {
  773. content: "|";
  774. }
  775. .icon-basic-printer:before {
  776. content: "}";
  777. }
  778. .icon-basic-question:before {
  779. content: "~";
  780. }
  781. .icon-basic-rss:before {
  782. content: "\\";
  783. }
  784. .icon-basic-server:before {
  785. content: "\e000";
  786. }
  787. .icon-basic-server2:before {
  788. content: "\e001";
  789. }
  790. .icon-basic-server-cloud:before {
  791. content: "\e002";
  792. }
  793. .icon-basic-server-download:before {
  794. content: "\e003";
  795. }
  796. .icon-basic-server-upload:before {
  797. content: "\e004";
  798. }
  799. .icon-basic-settings:before {
  800. content: "\e005";
  801. }
  802. .icon-basic-share:before {
  803. content: "\e006";
  804. }
  805. .icon-basic-sheet:before {
  806. content: "\e007";
  807. }
  808. .icon-basic-sheet-multiple:before {
  809. content: "\e008";
  810. }
  811. .icon-basic-sheet-pen:before {
  812. content: "\e009";
  813. }
  814. .icon-basic-sheet-pencil:before {
  815. content: "\e00a";
  816. }
  817. .icon-basic-sheet-txt:before {
  818. content: "\e00b";
  819. }
  820. .icon-basic-signs:before {
  821. content: "\e00c";
  822. }
  823. .icon-basic-smartphone:before {
  824. content: "\e00d";
  825. }
  826. .icon-basic-spades:before {
  827. content: "\e00e";
  828. }
  829. .icon-basic-spread:before {
  830. content: "\e00f";
  831. }
  832. .icon-basic-spread-bookmark:before {
  833. content: "\e010";
  834. }
  835. .icon-basic-spread-text:before {
  836. content: "\e011";
  837. }
  838. .icon-basic-spread-text-bookmark:before {
  839. content: "\e012";
  840. }
  841. .icon-basic-star:before {
  842. content: "\e013";
  843. }
  844. .icon-basic-tablet:before {
  845. content: "\e014";
  846. }
  847. .icon-basic-target:before {
  848. content: "\e015";
  849. }
  850. .icon-basic-todo:before {
  851. content: "\e016";
  852. }
  853. .icon-basic-todo-pen:before {
  854. content: "\e017";
  855. }
  856. .icon-basic-todo-pencil:before {
  857. content: "\e018";
  858. }
  859. .icon-basic-todo-txt:before {
  860. content: "\e019";
  861. }
  862. .icon-basic-todolist-pen:before {
  863. content: "\e01a";
  864. }
  865. .icon-basic-todolist-pencil:before {
  866. content: "\e01b";
  867. }
  868. .icon-basic-trashcan:before {
  869. content: "\e01c";
  870. }
  871. .icon-basic-trashcan-full:before {
  872. content: "\e01d";
  873. }
  874. .icon-basic-trashcan-refresh:before {
  875. content: "\e01e";
  876. }
  877. .icon-basic-trashcan-remove:before {
  878. content: "\e01f";
  879. }
  880. .icon-basic-upload:before {
  881. content: "\e020";
  882. }
  883. .icon-basic-usb:before {
  884. content: "\e021";
  885. }
  886. .icon-basic-video:before {
  887. content: "\e022";
  888. }
  889. .icon-basic-watch:before {
  890. content: "\e023";
  891. }
  892. .icon-basic-webpage:before {
  893. content: "\e024";
  894. }
  895. .icon-basic-webpage-img-txt:before {
  896. content: "\e025";
  897. }
  898. .icon-basic-webpage-multiple:before {
  899. content: "\e026";
  900. }
  901. .icon-basic-webpage-txt:before {
  902. content: "\e027";
  903. }
  904. .icon-basic-world:before {
  905. content: "\e028";
  906. }
  907. /*Basic elaboration*/
  908. @font-face {
  909. font-family: "linea-basic-elaboration-10";
  910. src: url("../linea-icons/linea-basic-elaboration-10.eot");
  911. src: url("../linea-icons/linea-basic-elaboration-10d41d.eot?#iefix") format("embedded-opentype"), url("../linea-icons/linea-basic-elaboration-10.woff") format("woff"), url("../linea-icons/linea-basic-elaboration-10.ttf") format("truetype"), url("../linea-icons/linea-basic-elaboration-10.svg#linea-basic-elaboration-10") format("svg");
  912. font-weight: normal;
  913. font-style: normal;
  914. }
  915. .linea-elaborate[data-icon]:before {
  916. font-family: "linea-basic-elaboration-10" !important;
  917. content: attr(data-icon);
  918. font-style: normal !important;
  919. font-weight: normal !important;
  920. font-variant: normal !important;
  921. text-transform: none !important;
  922. speak: none;
  923. line-height: 1;
  924. -webkit-font-smoothing: antialiased;
  925. -moz-osx-font-smoothing: grayscale;
  926. }
  927. [class^="linea-icon-"]:before,
  928. [class*="linea- icon-"]:before {
  929. font-family: "linea-basic-elaboration-10" !important;
  930. font-style: normal !important;
  931. font-weight: normal !important;
  932. font-variant: normal !important;
  933. text-transform: none !important;
  934. speak: none;
  935. line-height: 1;
  936. -webkit-font-smoothing: antialiased;
  937. -moz-osx-font-smoothing: grayscale;
  938. }
  939. .icon-basic-elaboration-bookmark-checck:before {
  940. content: "a";
  941. }
  942. .icon-basic-elaboration-bookmark-minus:before {
  943. content: "b";
  944. }
  945. .icon-basic-elaboration-bookmark-plus:before {
  946. content: "c";
  947. }
  948. .icon-basic-elaboration-bookmark-remove:before {
  949. content: "d";
  950. }
  951. .icon-basic-elaboration-briefcase-check:before {
  952. content: "e";
  953. }
  954. .icon-basic-elaboration-briefcase-download:before {
  955. content: "f";
  956. }
  957. .icon-basic-elaboration-briefcase-flagged:before {
  958. content: "g";
  959. }
  960. .icon-basic-elaboration-briefcase-minus:before {
  961. content: "h";
  962. }
  963. .icon-basic-elaboration-briefcase-plus:before {
  964. content: "i";
  965. }
  966. .icon-basic-elaboration-briefcase-refresh:before {
  967. content: "j";
  968. }
  969. .icon-basic-elaboration-briefcase-remove:before {
  970. content: "k";
  971. }
  972. .icon-basic-elaboration-briefcase-search:before {
  973. content: "l";
  974. }
  975. .icon-basic-elaboration-briefcase-star:before {
  976. content: "m";
  977. }
  978. .icon-basic-elaboration-briefcase-upload:before {
  979. content: "n";
  980. }
  981. .icon-basic-elaboration-browser-check:before {
  982. content: "o";
  983. }
  984. .icon-basic-elaboration-browser-download:before {
  985. content: "p";
  986. }
  987. .icon-basic-elaboration-browser-minus:before {
  988. content: "q";
  989. }
  990. .icon-basic-elaboration-browser-plus:before {
  991. content: "r";
  992. }
  993. .icon-basic-elaboration-browser-refresh:before {
  994. content: "s";
  995. }
  996. .icon-basic-elaboration-browser-remove:before {
  997. content: "t";
  998. }
  999. .icon-basic-elaboration-browser-search:before {
  1000. content: "u";
  1001. }
  1002. .icon-basic-elaboration-browser-star:before {
  1003. content: "v";
  1004. }
  1005. .icon-basic-elaboration-browser-upload:before {
  1006. content: "w";
  1007. }
  1008. .icon-basic-elaboration-calendar-check:before {
  1009. content: "x";
  1010. }
  1011. .icon-basic-elaboration-calendar-cloud:before {
  1012. content: "y";
  1013. }
  1014. .icon-basic-elaboration-calendar-download:before {
  1015. content: "z";
  1016. }
  1017. .icon-basic-elaboration-calendar-empty:before {
  1018. content: "A";
  1019. }
  1020. .icon-basic-elaboration-calendar-flagged:before {
  1021. content: "B";
  1022. }
  1023. .icon-basic-elaboration-calendar-heart:before {
  1024. content: "C";
  1025. }
  1026. .icon-basic-elaboration-calendar-minus:before {
  1027. content: "D";
  1028. }
  1029. .icon-basic-elaboration-calendar-next:before {
  1030. content: "E";
  1031. }
  1032. .icon-basic-elaboration-calendar-noaccess:before {
  1033. content: "F";
  1034. }
  1035. .icon-basic-elaboration-calendar-pencil:before {
  1036. content: "G";
  1037. }
  1038. .icon-basic-elaboration-calendar-plus:before {
  1039. content: "H";
  1040. }
  1041. .icon-basic-elaboration-calendar-previous:before {
  1042. content: "I";
  1043. }
  1044. .icon-basic-elaboration-calendar-refresh:before {
  1045. content: "J";
  1046. }
  1047. .icon-basic-elaboration-calendar-remove:before {
  1048. content: "K";
  1049. }
  1050. .icon-basic-elaboration-calendar-search:before {
  1051. content: "L";
  1052. }
  1053. .icon-basic-elaboration-calendar-star:before {
  1054. content: "M";
  1055. }
  1056. .icon-basic-elaboration-calendar-upload:before {
  1057. content: "N";
  1058. }
  1059. .icon-basic-elaboration-cloud-check:before {
  1060. content: "O";
  1061. }
  1062. .icon-basic-elaboration-cloud-download:before {
  1063. content: "P";
  1064. }
  1065. .icon-basic-elaboration-cloud-minus:before {
  1066. content: "Q";
  1067. }
  1068. .icon-basic-elaboration-cloud-noaccess:before {
  1069. content: "R";
  1070. }
  1071. .icon-basic-elaboration-cloud-plus:before {
  1072. content: "S";
  1073. }
  1074. .icon-basic-elaboration-cloud-refresh:before {
  1075. content: "T";
  1076. }
  1077. .icon-basic-elaboration-cloud-remove:before {
  1078. content: "U";
  1079. }
  1080. .icon-basic-elaboration-cloud-search:before {
  1081. content: "V";
  1082. }
  1083. .icon-basic-elaboration-cloud-upload:before {
  1084. content: "W";
  1085. }
  1086. .icon-basic-elaboration-document-check:before {
  1087. content: "X";
  1088. }
  1089. .icon-basic-elaboration-document-cloud:before {
  1090. content: "Y";
  1091. }
  1092. .icon-basic-elaboration-document-download:before {
  1093. content: "Z";
  1094. }
  1095. .icon-basic-elaboration-document-flagged:before {
  1096. content: "0";
  1097. }
  1098. .icon-basic-elaboration-document-graph:before {
  1099. content: "1";
  1100. }
  1101. .icon-basic-elaboration-document-heart:before {
  1102. content: "2";
  1103. }
  1104. .icon-basic-elaboration-document-minus:before {
  1105. content: "3";
  1106. }
  1107. .icon-basic-elaboration-document-next:before {
  1108. content: "4";
  1109. }
  1110. .icon-basic-elaboration-document-noaccess:before {
  1111. content: "5";
  1112. }
  1113. .icon-basic-elaboration-document-note:before {
  1114. content: "6";
  1115. }
  1116. .icon-basic-elaboration-document-pencil:before {
  1117. content: "7";
  1118. }
  1119. .icon-basic-elaboration-document-picture:before {
  1120. content: "8";
  1121. }
  1122. .icon-basic-elaboration-document-plus:before {
  1123. content: "9";
  1124. }
  1125. .icon-basic-elaboration-document-previous:before {
  1126. content: "!";
  1127. }
  1128. .icon-basic-elaboration-document-refresh:before {
  1129. content: "\"";
  1130. }
  1131. .icon-basic-elaboration-document-remove:before {
  1132. content: "#";
  1133. }
  1134. .icon-basic-elaboration-document-search:before {
  1135. content: "$";
  1136. }
  1137. .icon-basic-elaboration-document-star:before {
  1138. content: "%";
  1139. }
  1140. .icon-basic-elaboration-document-upload:before {
  1141. content: "&";
  1142. }
  1143. .icon-basic-elaboration-folder-check:before {
  1144. content: "'";
  1145. }
  1146. .icon-basic-elaboration-folder-cloud:before {
  1147. content: "(";
  1148. }
  1149. .icon-basic-elaboration-folder-document:before {
  1150. content: ")";
  1151. }
  1152. .icon-basic-elaboration-folder-download:before {
  1153. content: "*";
  1154. }
  1155. .icon-basic-elaboration-folder-flagged:before {
  1156. content: "+";
  1157. }
  1158. .icon-basic-elaboration-folder-graph:before {
  1159. content: ",";
  1160. }
  1161. .icon-basic-elaboration-folder-heart:before {
  1162. content: "-";
  1163. }
  1164. .icon-basic-elaboration-folder-minus:before {
  1165. content: ".";
  1166. }
  1167. .icon-basic-elaboration-folder-next:before {
  1168. content: "/";
  1169. }
  1170. .icon-basic-elaboration-folder-noaccess:before {
  1171. content: ":";
  1172. }
  1173. .icon-basic-elaboration-folder-note:before {
  1174. content: ";";
  1175. }
  1176. .icon-basic-elaboration-folder-pencil:before {
  1177. content: "<";
  1178. }
  1179. .icon-basic-elaboration-folder-picture:before {
  1180. content: "=";
  1181. }
  1182. .icon-basic-elaboration-folder-plus:before {
  1183. content: ">";
  1184. }
  1185. .icon-basic-elaboration-folder-previous:before {
  1186. content: "?";
  1187. }
  1188. .icon-basic-elaboration-folder-refresh:before {
  1189. content: "@";
  1190. }
  1191. .icon-basic-elaboration-folder-remove:before {
  1192. content: "[";
  1193. }
  1194. .icon-basic-elaboration-folder-search:before {
  1195. content: "]";
  1196. }
  1197. .icon-basic-elaboration-folder-star:before {
  1198. content: "^";
  1199. }
  1200. .icon-basic-elaboration-folder-upload:before {
  1201. content: "_";
  1202. }
  1203. .icon-basic-elaboration-mail-check:before {
  1204. content: "`";
  1205. }
  1206. .icon-basic-elaboration-mail-cloud:before {
  1207. content: "{";
  1208. }
  1209. .icon-basic-elaboration-mail-document:before {
  1210. content: "|";
  1211. }
  1212. .icon-basic-elaboration-mail-download:before {
  1213. content: "}";
  1214. }
  1215. .icon-basic-elaboration-mail-flagged:before {
  1216. content: "~";
  1217. }
  1218. .icon-basic-elaboration-mail-heart:before {
  1219. content: "\\";
  1220. }
  1221. .icon-basic-elaboration-mail-next:before {
  1222. content: "\e000";
  1223. }
  1224. .icon-basic-elaboration-mail-noaccess:before {
  1225. content: "\e001";
  1226. }
  1227. .icon-basic-elaboration-mail-note:before {
  1228. content: "\e002";
  1229. }
  1230. .icon-basic-elaboration-mail-pencil:before {
  1231. content: "\e003";
  1232. }
  1233. .icon-basic-elaboration-mail-picture:before {
  1234. content: "\e004";
  1235. }
  1236. .icon-basic-elaboration-mail-previous:before {
  1237. content: "\e005";
  1238. }
  1239. .icon-basic-elaboration-mail-refresh:before {
  1240. content: "\e006";
  1241. }
  1242. .icon-basic-elaboration-mail-remove:before {
  1243. content: "\e007";
  1244. }
  1245. .icon-basic-elaboration-mail-search:before {
  1246. content: "\e008";
  1247. }
  1248. .icon-basic-elaboration-mail-star:before {
  1249. content: "\e009";
  1250. }
  1251. .icon-basic-elaboration-mail-upload:before {
  1252. content: "\e00a";
  1253. }
  1254. .icon-basic-elaboration-message-check:before {
  1255. content: "\e00b";
  1256. }
  1257. .icon-basic-elaboration-message-dots:before {
  1258. content: "\e00c";
  1259. }
  1260. .icon-basic-elaboration-message-happy:before {
  1261. content: "\e00d";
  1262. }
  1263. .icon-basic-elaboration-message-heart:before {
  1264. content: "\e00e";
  1265. }
  1266. .icon-basic-elaboration-message-minus:before {
  1267. content: "\e00f";
  1268. }
  1269. .icon-basic-elaboration-message-note:before {
  1270. content: "\e010";
  1271. }
  1272. .icon-basic-elaboration-message-plus:before {
  1273. content: "\e011";
  1274. }
  1275. .icon-basic-elaboration-message-refresh:before {
  1276. content: "\e012";
  1277. }
  1278. .icon-basic-elaboration-message-remove:before {
  1279. content: "\e013";
  1280. }
  1281. .icon-basic-elaboration-message-sad:before {
  1282. content: "\e014";
  1283. }
  1284. .icon-basic-elaboration-smartphone-cloud:before {
  1285. content: "\e015";
  1286. }
  1287. .icon-basic-elaboration-smartphone-heart:before {
  1288. content: "\e016";
  1289. }
  1290. .icon-basic-elaboration-smartphone-noaccess:before {
  1291. content: "\e017";
  1292. }
  1293. .icon-basic-elaboration-smartphone-note:before {
  1294. content: "\e018";
  1295. }
  1296. .icon-basic-elaboration-smartphone-pencil:before {
  1297. content: "\e019";
  1298. }
  1299. .icon-basic-elaboration-smartphone-picture:before {
  1300. content: "\e01a";
  1301. }
  1302. .icon-basic-elaboration-smartphone-refresh:before {
  1303. content: "\e01b";
  1304. }
  1305. .icon-basic-elaboration-smartphone-search:before {
  1306. content: "\e01c";
  1307. }
  1308. .icon-basic-elaboration-tablet-cloud:before {
  1309. content: "\e01d";
  1310. }
  1311. .icon-basic-elaboration-tablet-heart:before {
  1312. content: "\e01e";
  1313. }
  1314. .icon-basic-elaboration-tablet-noaccess:before {
  1315. content: "\e01f";
  1316. }
  1317. .icon-basic-elaboration-tablet-note:before {
  1318. content: "\e020";
  1319. }
  1320. .icon-basic-elaboration-tablet-pencil:before {
  1321. content: "\e021";
  1322. }
  1323. .icon-basic-elaboration-tablet-picture:before {
  1324. content: "\e022";
  1325. }
  1326. .icon-basic-elaboration-tablet-refresh:before {
  1327. content: "\e023";
  1328. }
  1329. .icon-basic-elaboration-tablet-search:before {
  1330. content: "\e024";
  1331. }
  1332. .icon-basic-elaboration-todolist-2:before {
  1333. content: "\e025";
  1334. }
  1335. .icon-basic-elaboration-todolist-check:before {
  1336. content: "\e026";
  1337. }
  1338. .icon-basic-elaboration-todolist-cloud:before {
  1339. content: "\e027";
  1340. }
  1341. .icon-basic-elaboration-todolist-download:before {
  1342. content: "\e028";
  1343. }
  1344. .icon-basic-elaboration-todolist-flagged:before {
  1345. content: "\e029";
  1346. }
  1347. .icon-basic-elaboration-todolist-minus:before {
  1348. content: "\e02a";
  1349. }
  1350. .icon-basic-elaboration-todolist-noaccess:before {
  1351. content: "\e02b";
  1352. }
  1353. .icon-basic-elaboration-todolist-pencil:before {
  1354. content: "\e02c";
  1355. }
  1356. .icon-basic-elaboration-todolist-plus:before {
  1357. content: "\e02d";
  1358. }
  1359. .icon-basic-elaboration-todolist-refresh:before {
  1360. content: "\e02e";
  1361. }
  1362. .icon-basic-elaboration-todolist-remove:before {
  1363. content: "\e02f";
  1364. }
  1365. .icon-basic-elaboration-todolist-search:before {
  1366. content: "\e030";
  1367. }
  1368. .icon-basic-elaboration-todolist-star:before {
  1369. content: "\e031";
  1370. }
  1371. .icon-basic-elaboration-todolist-upload:before {
  1372. content: "\e032";
  1373. }
  1374. /*Ecommerce*/
  1375. @font-face {
  1376. font-family: "linea-ecommerce-10";
  1377. src: url("../linea-icons/linea-ecommerce-10.eot");
  1378. src: url("../linea-icons/linea-ecommerce-10d41d.eot?#iefix") format("embedded-opentype"), url("../linea-icons/linea-ecommerce-10.woff") format("woff"), url("../linea-icons/linea-ecommerce-10.ttf") format("truetype"), url("../linea-icons/linea-ecommerce-10.svg#linea-ecommerce-10") format("svg");
  1379. font-weight: normal;
  1380. font-style: normal;
  1381. }
  1382. .linea-ecommerce[data-icon]:before {
  1383. font-family: "linea-ecommerce-10" !important;
  1384. content: attr(data-icon);
  1385. font-style: normal !important;
  1386. font-weight: normal !important;
  1387. font-variant: normal !important;
  1388. text-transform: none !important;
  1389. speak: none;
  1390. line-height: 1;
  1391. -webkit-font-smoothing: antialiased;
  1392. -moz-osx-font-smoothing: grayscale;
  1393. }
  1394. [class^="linea-icon-"]:before,
  1395. [class*="linea- icon-"]:before {
  1396. font-family: "linea-ecommerce-10" !important;
  1397. font-style: normal !important;
  1398. font-weight: normal !important;
  1399. font-variant: normal !important;
  1400. text-transform: none !important;
  1401. speak: none;
  1402. line-height: 1;
  1403. -webkit-font-smoothing: antialiased;
  1404. -moz-osx-font-smoothing: grayscale;
  1405. }
  1406. .icon-ecommerce-bag:before {
  1407. content: "a";
  1408. }
  1409. .icon-ecommerce-bag-check:before {
  1410. content: "b";
  1411. }
  1412. .icon-ecommerce-bag-cloud:before {
  1413. content: "c";
  1414. }
  1415. .icon-ecommerce-bag-download:before {
  1416. content: "d";
  1417. }
  1418. .icon-ecommerce-bag-minus:before {
  1419. content: "e";
  1420. }
  1421. .icon-ecommerce-bag-plus:before {
  1422. content: "f";
  1423. }
  1424. .icon-ecommerce-bag-refresh:before {
  1425. content: "g";
  1426. }
  1427. .icon-ecommerce-bag-remove:before {
  1428. content: "h";
  1429. }
  1430. .icon-ecommerce-bag-search:before {
  1431. content: "i";
  1432. }
  1433. .icon-ecommerce-bag-upload:before {
  1434. content: "j";
  1435. }
  1436. .icon-ecommerce-banknote:before {
  1437. content: "k";
  1438. }
  1439. .icon-ecommerce-banknotes:before {
  1440. content: "l";
  1441. }
  1442. .icon-ecommerce-basket:before {
  1443. content: "m";
  1444. }
  1445. .icon-ecommerce-basket-check:before {
  1446. content: "n";
  1447. }
  1448. .icon-ecommerce-basket-cloud:before {
  1449. content: "o";
  1450. }
  1451. .icon-ecommerce-basket-download:before {
  1452. content: "p";
  1453. }
  1454. .icon-ecommerce-basket-minus:before {
  1455. content: "q";
  1456. }
  1457. .icon-ecommerce-basket-plus:before {
  1458. content: "r";
  1459. }
  1460. .icon-ecommerce-basket-refresh:before {
  1461. content: "s";
  1462. }
  1463. .icon-ecommerce-basket-remove:before {
  1464. content: "t";
  1465. }
  1466. .icon-ecommerce-basket-search:before {
  1467. content: "u";
  1468. }
  1469. .icon-ecommerce-basket-upload:before {
  1470. content: "v";
  1471. }
  1472. .icon-ecommerce-bath:before {
  1473. content: "w";
  1474. }
  1475. .icon-ecommerce-cart:before {
  1476. content: "x";
  1477. }
  1478. .icon-ecommerce-cart-check:before {
  1479. content: "y";
  1480. }
  1481. .icon-ecommerce-cart-cloud:before {
  1482. content: "z";
  1483. }
  1484. .icon-ecommerce-cart-content:before {
  1485. content: "A";
  1486. }
  1487. .icon-ecommerce-cart-download:before {
  1488. content: "B";
  1489. }
  1490. .icon-ecommerce-cart-minus:before {
  1491. content: "C";
  1492. }
  1493. .icon-ecommerce-cart-plus:before {
  1494. content: "D";
  1495. }
  1496. .icon-ecommerce-cart-refresh:before {
  1497. content: "E";
  1498. }
  1499. .icon-ecommerce-cart-remove:before {
  1500. content: "F";
  1501. }
  1502. .icon-ecommerce-cart-search:before {
  1503. content: "G";
  1504. }
  1505. .icon-ecommerce-cart-upload:before {
  1506. content: "H";
  1507. }
  1508. .icon-ecommerce-cent:before {
  1509. content: "I";
  1510. }
  1511. .icon-ecommerce-colon:before {
  1512. content: "J";
  1513. }
  1514. .icon-ecommerce-creditcard:before {
  1515. content: "K";
  1516. }
  1517. .icon-ecommerce-diamond:before {
  1518. content: "L";
  1519. }
  1520. .icon-ecommerce-dollar:before {
  1521. content: "M";
  1522. }
  1523. .icon-ecommerce-euro:before {
  1524. content: "N";
  1525. }
  1526. .icon-ecommerce-franc:before {
  1527. content: "O";
  1528. }
  1529. .icon-ecommerce-gift:before {
  1530. content: "P";
  1531. }
  1532. .icon-ecommerce-graph1:before {
  1533. content: "Q";
  1534. }
  1535. .icon-ecommerce-graph2:before {
  1536. content: "R";
  1537. }
  1538. .icon-ecommerce-graph3:before {
  1539. content: "S";
  1540. }
  1541. .icon-ecommerce-graph-decrease:before {
  1542. content: "T";
  1543. }
  1544. .icon-ecommerce-graph-increase:before {
  1545. content: "U";
  1546. }
  1547. .icon-ecommerce-guarani:before {
  1548. content: "V";
  1549. }
  1550. .icon-ecommerce-kips:before {
  1551. content: "W";
  1552. }
  1553. .icon-ecommerce-lira:before {
  1554. content: "X";
  1555. }
  1556. .icon-ecommerce-megaphone:before {
  1557. content: "Y";
  1558. }
  1559. .icon-ecommerce-money:before {
  1560. content: "Z";
  1561. }
  1562. .icon-ecommerce-naira:before {
  1563. content: "0";
  1564. }
  1565. .icon-ecommerce-pesos:before {
  1566. content: "1";
  1567. }
  1568. .icon-ecommerce-pound:before {
  1569. content: "2";
  1570. }
  1571. .icon-ecommerce-receipt:before {
  1572. content: "3";
  1573. }
  1574. .icon-ecommerce-receipt-bath:before {
  1575. content: "4";
  1576. }
  1577. .icon-ecommerce-receipt-cent:before {
  1578. content: "5";
  1579. }
  1580. .icon-ecommerce-receipt-dollar:before {
  1581. content: "6";
  1582. }
  1583. .icon-ecommerce-receipt-euro:before {
  1584. content: "7";
  1585. }
  1586. .icon-ecommerce-receipt-franc:before {
  1587. content: "8";
  1588. }
  1589. .icon-ecommerce-receipt-guarani:before {
  1590. content: "9";
  1591. }
  1592. .icon-ecommerce-receipt-kips:before {
  1593. content: "!";
  1594. }
  1595. .icon-ecommerce-receipt-lira:before {
  1596. content: "\"";
  1597. }
  1598. .icon-ecommerce-receipt-naira:before {
  1599. content: "#";
  1600. }
  1601. .icon-ecommerce-receipt-pesos:before {
  1602. content: "$";
  1603. }
  1604. .icon-ecommerce-receipt-pound:before {
  1605. content: "%";
  1606. }
  1607. .icon-ecommerce-receipt-rublo:before {
  1608. content: "&";
  1609. }
  1610. .icon-ecommerce-receipt-rupee:before {
  1611. content: "'";
  1612. }
  1613. .icon-ecommerce-receipt-tugrik:before {
  1614. content: "(";
  1615. }
  1616. .icon-ecommerce-receipt-won:before {
  1617. content: ")";
  1618. }
  1619. .icon-ecommerce-receipt-yen:before {
  1620. content: "*";
  1621. }
  1622. .icon-ecommerce-receipt-yen2:before {
  1623. content: "+";
  1624. }
  1625. .icon-ecommerce-recept-colon:before {
  1626. content: ",";
  1627. }
  1628. .icon-ecommerce-rublo:before {
  1629. content: "-";
  1630. }
  1631. .icon-ecommerce-rupee:before {
  1632. content: ".";
  1633. }
  1634. .icon-ecommerce-safe:before {
  1635. content: "/";
  1636. }
  1637. .icon-ecommerce-sale:before {
  1638. content: ":";
  1639. }
  1640. .icon-ecommerce-sales:before {
  1641. content: ";";
  1642. }
  1643. .icon-ecommerce-ticket:before {
  1644. content: "<";
  1645. }
  1646. .icon-ecommerce-tugriks:before {
  1647. content: "=";
  1648. }
  1649. .icon-ecommerce-wallet:before {
  1650. content: ">";
  1651. }
  1652. .icon-ecommerce-won:before {
  1653. content: "?";
  1654. }
  1655. .icon-ecommerce-yen:before {
  1656. content: "@";
  1657. }
  1658. .icon-ecommerce-yen2:before {
  1659. content: "[";
  1660. }
  1661. /*Music */
  1662. @font-face {
  1663. font-family: "linea-music-10";
  1664. src: url("../linea-icons/linea-music-10.eot");
  1665. src: url("../linea-icons/linea-music-10d41d.eot?#iefix") format("embedded-opentype"), url("../linea-icons/linea-music-10.woff") format("woff"), url("../linea-icons/linea-music-10.ttf") format("truetype"), url("../linea-icons/linea-music-10.svg#linea-music-10") format("svg");
  1666. font-weight: normal;
  1667. font-style: normal;
  1668. }
  1669. .linea-music[data-icon]:before {
  1670. font-family: "linea-music-10" !important;
  1671. content: attr(data-icon);
  1672. font-style: normal !important;
  1673. font-weight: normal !important;
  1674. font-variant: normal !important;
  1675. text-transform: none !important;
  1676. speak: none;
  1677. line-height: 1;
  1678. -webkit-font-smoothing: antialiased;
  1679. -moz-osx-font-smoothing: grayscale;
  1680. }
  1681. [class^="linea-icon-"]:before,
  1682. [class*="linea- icon-"]:before {
  1683. font-family: "linea-music-10" !important;
  1684. font-style: normal !important;
  1685. font-weight: normal !important;
  1686. font-variant: normal !important;
  1687. text-transform: none !important;
  1688. speak: none;
  1689. line-height: 1;
  1690. -webkit-font-smoothing: antialiased;
  1691. -moz-osx-font-smoothing: grayscale;
  1692. }
  1693. .icon-music-beginning-button:before {
  1694. content: "a";
  1695. }
  1696. .icon-music-bell:before {
  1697. content: "b";
  1698. }
  1699. .icon-music-cd:before {
  1700. content: "c";
  1701. }
  1702. .icon-music-diapason:before {
  1703. content: "d";
  1704. }
  1705. .icon-music-eject-button:before {
  1706. content: "e";
  1707. }
  1708. .icon-music-end-button:before {
  1709. content: "f";
  1710. }
  1711. .icon-music-fastforward-button:before {
  1712. content: "g";
  1713. }
  1714. .icon-music-headphones:before {
  1715. content: "h";
  1716. }
  1717. .icon-music-ipod:before {
  1718. content: "i";
  1719. }
  1720. .icon-music-loudspeaker:before {
  1721. content: "j";
  1722. }
  1723. .icon-music-microphone:before {
  1724. content: "k";
  1725. }
  1726. .icon-music-microphone-old:before {
  1727. content: "l";
  1728. }
  1729. .icon-music-mixer:before {
  1730. content: "m";
  1731. }
  1732. .icon-music-mute:before {
  1733. content: "n";
  1734. }
  1735. .icon-music-note-multiple:before {
  1736. content: "o";
  1737. }
  1738. .icon-music-note-single:before {
  1739. content: "p";
  1740. }
  1741. .icon-music-pause-button:before {
  1742. content: "q";
  1743. }
  1744. .icon-music-play-button:before {
  1745. content: "r";
  1746. }
  1747. .icon-music-playlist:before {
  1748. content: "s";
  1749. }
  1750. .icon-music-radio-ghettoblaster:before {
  1751. content: "t";
  1752. }
  1753. .icon-music-radio-portable:before {
  1754. content: "u";
  1755. }
  1756. .icon-music-record:before {
  1757. content: "v";
  1758. }
  1759. .icon-music-recordplayer:before {
  1760. content: "w";
  1761. }
  1762. .icon-music-repeat-button:before {
  1763. content: "x";
  1764. }
  1765. .icon-music-rewind-button:before {
  1766. content: "y";
  1767. }
  1768. .icon-music-shuffle-button:before {
  1769. content: "z";
  1770. }
  1771. .icon-music-stop-button:before {
  1772. content: "A";
  1773. }
  1774. .icon-music-tape:before {
  1775. content: "B";
  1776. }
  1777. .icon-music-volume-down:before {
  1778. content: "C";
  1779. }
  1780. .icon-music-volume-up:before {
  1781. content: "D";
  1782. }
  1783. /*Software*/
  1784. @font-face {
  1785. font-family: "linea-software-10";
  1786. src: url("../linea-icons/linea-software-10.eot");
  1787. src: url("../linea-icons/linea-software-10d41d.eot?#iefix") format("embedded-opentype"), url("../linea-icons/linea-software-10.woff") format("woff"), url("../linea-icons/linea-software-10.ttf") format("truetype"), url("../linea-icons/linea-software-10.svg#linea-software-10") format("svg");
  1788. font-weight: normal;
  1789. font-style: normal;
  1790. }
  1791. .linea-software[data-icon]:before {
  1792. font-family: "linea-software-10" !important;
  1793. content: attr(data-icon);
  1794. font-style: normal !important;
  1795. font-weight: normal !important;
  1796. font-variant: normal !important;
  1797. text-transform: none !important;
  1798. speak: none;
  1799. line-height: 1;
  1800. -webkit-font-smoothing: antialiased;
  1801. -moz-osx-font-smoothing: grayscale;
  1802. }
  1803. [class^="linea-icon-"]:before,
  1804. [class*="linea- icon-"]:before {
  1805. font-family: "linea-software-10" !important;
  1806. font-style: normal !important;
  1807. font-weight: normal !important;
  1808. font-variant: normal !important;
  1809. text-transform: none !important;
  1810. speak: none;
  1811. line-height: 1;
  1812. -webkit-font-smoothing: antialiased;
  1813. -moz-osx-font-smoothing: grayscale;
  1814. }
  1815. .icon-software-add-vectorpoint:before {
  1816. content: "a";
  1817. }
  1818. .icon-software-box-oval:before {
  1819. content: "b";
  1820. }
  1821. .icon-software-box-polygon:before {
  1822. content: "c";
  1823. }
  1824. .icon-software-box-rectangle:before {
  1825. content: "d";
  1826. }
  1827. .icon-software-box-roundedrectangle:before {
  1828. content: "e";
  1829. }
  1830. .icon-software-character:before {
  1831. content: "f";
  1832. }
  1833. .icon-software-crop:before {
  1834. content: "g";
  1835. }
  1836. .icon-software-eyedropper:before {
  1837. content: "h";
  1838. }
  1839. .icon-software-font-allcaps:before {
  1840. content: "i";
  1841. }
  1842. .icon-software-font-baseline-shift:before {
  1843. content: "j";
  1844. }
  1845. .icon-software-font-horizontal-scale:before {
  1846. content: "k";
  1847. }
  1848. .icon-software-font-kerning:before {
  1849. content: "l";
  1850. }
  1851. .icon-software-font-leading:before {
  1852. content: "m";
  1853. }
  1854. .icon-software-font-size:before {
  1855. content: "n";
  1856. }
  1857. .icon-software-font-smallcapital:before {
  1858. content: "o";
  1859. }
  1860. .icon-software-font-smallcaps:before {
  1861. content: "p";
  1862. }
  1863. .icon-software-font-strikethrough:before {
  1864. content: "q";
  1865. }
  1866. .icon-software-font-tracking:before {
  1867. content: "r";
  1868. }
  1869. .icon-software-font-underline:before {
  1870. content: "s";
  1871. }
  1872. .icon-software-font-vertical-scale:before {
  1873. content: "t";
  1874. }
  1875. .icon-software-horizontal-align-center:before {
  1876. content: "u";
  1877. }
  1878. .icon-software-horizontal-align-left:before {
  1879. content: "v";
  1880. }
  1881. .icon-software-horizontal-align-right:before {
  1882. content: "w";
  1883. }
  1884. .icon-software-horizontal-distribute-center:before {
  1885. content: "x";
  1886. }
  1887. .icon-software-horizontal-distribute-left:before {
  1888. content: "y";
  1889. }
  1890. .icon-software-horizontal-distribute-right:before {
  1891. content: "z";
  1892. }
  1893. .icon-software-indent-firstline:before {
  1894. content: "A";
  1895. }
  1896. .icon-software-indent-left:before {
  1897. content: "B";
  1898. }
  1899. .icon-software-indent-right:before {
  1900. content: "C";
  1901. }
  1902. .icon-software-lasso:before {
  1903. content: "D";
  1904. }
  1905. .icon-software-layers1:before {
  1906. content: "E";
  1907. }
  1908. .icon-software-layers2:before {
  1909. content: "F";
  1910. }
  1911. .icon-software-layout:before {
  1912. content: "G";
  1913. }
  1914. .icon-software-layout-2columns:before {
  1915. content: "H";
  1916. }
  1917. .icon-software-layout-3columns:before {
  1918. content: "I";
  1919. }
  1920. .icon-software-layout-4boxes:before {
  1921. content: "J";
  1922. }
  1923. .icon-software-layout-4columns:before {
  1924. content: "K";
  1925. }
  1926. .icon-software-layout-4lines:before {
  1927. content: "L";
  1928. }
  1929. .icon-software-layout-8boxes:before {
  1930. content: "M";
  1931. }
  1932. .icon-software-layout-header:before {
  1933. content: "N";
  1934. }
  1935. .icon-software-layout-header-2columns:before {
  1936. content: "O";
  1937. }
  1938. .icon-software-layout-header-3columns:before {
  1939. content: "P";
  1940. }
  1941. .icon-software-layout-header-4boxes:before {
  1942. content: "Q";
  1943. }
  1944. .icon-software-layout-header-4columns:before {
  1945. content: "R";
  1946. }
  1947. .icon-software-layout-header-complex:before {
  1948. content: "S";
  1949. }
  1950. .icon-software-layout-header-complex2:before {
  1951. content: "T";
  1952. }
  1953. .icon-software-layout-header-complex3:before {
  1954. content: "U";
  1955. }
  1956. .icon-software-layout-header-complex4:before {
  1957. content: "V";
  1958. }
  1959. .icon-software-layout-header-sideleft:before {
  1960. content: "W";
  1961. }
  1962. .icon-software-layout-header-sideright:before {
  1963. content: "X";
  1964. }
  1965. .icon-software-layout-sidebar-left:before {
  1966. content: "Y";
  1967. }
  1968. .icon-software-layout-sidebar-right:before {
  1969. content: "Z";
  1970. }
  1971. .icon-software-magnete:before {
  1972. content: "0";
  1973. }
  1974. .icon-software-pages:before {
  1975. content: "1";
  1976. }
  1977. .icon-software-paintbrush:before {
  1978. content: "2";
  1979. }
  1980. .icon-software-paintbucket:before {
  1981. content: "3";
  1982. }
  1983. .icon-software-paintroller:before {
  1984. content: "4";
  1985. }
  1986. .icon-software-paragraph:before {
  1987. content: "5";
  1988. }
  1989. .icon-software-paragraph-align-left:before {
  1990. content: "6";
  1991. }
  1992. .icon-software-paragraph-align-right:before {
  1993. content: "7";
  1994. }
  1995. .icon-software-paragraph-center:before {
  1996. content: "8";
  1997. }
  1998. .icon-software-paragraph-justify-all:before {
  1999. content: "9";
  2000. }
  2001. .icon-software-paragraph-justify-center:before {
  2002. content: "!";
  2003. }
  2004. .icon-software-paragraph-justify-left:before {
  2005. content: "\"";
  2006. }
  2007. .icon-software-paragraph-justify-right:before {
  2008. content: "#";
  2009. }
  2010. .icon-software-paragraph-space-after:before {
  2011. content: "$";
  2012. }
  2013. .icon-software-paragraph-space-before:before {
  2014. content: "%";
  2015. }
  2016. .icon-software-pathfinder-exclude:before {
  2017. content: "&";
  2018. }
  2019. .icon-software-pathfinder-intersect:before {
  2020. content: "'";
  2021. }
  2022. .icon-software-pathfinder-subtract:before {
  2023. content: "(";
  2024. }
  2025. .icon-software-pathfinder-unite:before {
  2026. content: ")";
  2027. }
  2028. .icon-software-pen:before {
  2029. content: "*";
  2030. }
  2031. .icon-software-pen-add:before {
  2032. content: "+";
  2033. }
  2034. .icon-software-pen-remove:before {
  2035. content: ",";
  2036. }
  2037. .icon-software-pencil:before {
  2038. content: "-";
  2039. }
  2040. .icon-software-polygonallasso:before {
  2041. content: ".";
  2042. }
  2043. .icon-software-reflect-horizontal:before {
  2044. content: "/";
  2045. }
  2046. .icon-software-reflect-vertical:before {
  2047. content: ":";
  2048. }
  2049. .icon-software-remove-vectorpoint:before {
  2050. content: ";";
  2051. }
  2052. .icon-software-scale-expand:before {
  2053. content: "<";
  2054. }
  2055. .icon-software-scale-reduce:before {
  2056. content: "=";
  2057. }
  2058. .icon-software-selection-oval:before {
  2059. content: ">";
  2060. }
  2061. .icon-software-selection-polygon:before {
  2062. content: "?";
  2063. }
  2064. .icon-software-selection-rectangle:before {
  2065. content: "@";
  2066. }
  2067. .icon-software-selection-roundedrectangle:before {
  2068. content: "[";
  2069. }
  2070. .icon-software-shape-oval:before {
  2071. content: "]";
  2072. }
  2073. .icon-software-shape-polygon:before {
  2074. content: "^";
  2075. }
  2076. .icon-software-shape-rectangle:before {
  2077. content: "_";
  2078. }
  2079. .icon-software-shape-roundedrectangle:before {
  2080. content: "`";
  2081. }
  2082. .icon-software-slice:before {
  2083. content: "{";
  2084. }
  2085. .icon-software-transform-bezier:before {
  2086. content: "|";
  2087. }
  2088. .icon-software-vector-box:before {
  2089. content: "}";
  2090. }
  2091. .icon-software-vector-composite:before {
  2092. content: "~";
  2093. }
  2094. .icon-software-vector-line:before {
  2095. content: "\\";
  2096. }
  2097. .icon-software-vertical-align-bottom:before {
  2098. content: "\e000";
  2099. }
  2100. .icon-software-vertical-align-center:before {
  2101. content: "\e001";
  2102. }
  2103. .icon-software-vertical-align-top:before {
  2104. content: "\e002";
  2105. }
  2106. .icon-software-vertical-distribute-bottom:before {
  2107. content: "\e003";
  2108. }
  2109. .icon-software-vertical-distribute-center:before {
  2110. content: "\e004";
  2111. }
  2112. .icon-software-vertical-distribute-top:before {
  2113. content: "\e005";
  2114. }
  2115. /*Weather*/
  2116. @font-face {
  2117. font-family: "linea-weather-10";
  2118. src: url("../linea-icons/linea-weather-10.eot");
  2119. src: url("../linea-icons/linea-weather-10d41d.eot?#iefix") format("embedded-opentype"), url("../linea-icons/linea-weather-10.woff") format("woff"), url("../linea-icons/linea-weather-10.ttf") format("truetype"), url("../linea-icons/linea-weather-10.svg#linea-weather-10") format("svg");
  2120. font-weight: normal;
  2121. font-style: normal;
  2122. }
  2123. .linea-weather[data-icon]:before {
  2124. font-family: "linea-weather-10" !important;
  2125. content: attr(data-icon);
  2126. font-style: normal !important;
  2127. font-weight: normal !important;
  2128. font-variant: normal !important;
  2129. text-transform: none !important;
  2130. speak: none;
  2131. line-height: 1;
  2132. -webkit-font-smoothing: antialiased;
  2133. -moz-osx-font-smoothing: grayscale;
  2134. }
  2135. [class^="linea-icon-"]:before,
  2136. [class*="linea- icon-"]:before {
  2137. font-family: "linea-weather-10" !important;
  2138. font-style: normal !important;
  2139. font-weight: normal !important;
  2140. font-variant: normal !important;
  2141. text-transform: none !important;
  2142. speak: none;
  2143. line-height: 1;
  2144. -webkit-font-smoothing: antialiased;
  2145. -moz-osx-font-smoothing: grayscale;
  2146. }
  2147. .icon-weather-aquarius:before {
  2148. content: "\e000";
  2149. }
  2150. .icon-weather-aries:before {
  2151. content: "\e001";
  2152. }
  2153. .icon-weather-cancer:before {
  2154. content: "\e002";
  2155. }
  2156. .icon-weather-capricorn:before {
  2157. content: "\e003";
  2158. }
  2159. .icon-weather-cloud:before {
  2160. content: "\e004";
  2161. }
  2162. .icon-weather-cloud-drop:before {
  2163. content: "\e005";
  2164. }
  2165. .icon-weather-cloud-lightning:before {
  2166. content: "\e006";
  2167. }
  2168. .icon-weather-cloud-snowflake:before {
  2169. content: "\e007";
  2170. }
  2171. .icon-weather-downpour-fullmoon:before {
  2172. content: "\e008";
  2173. }
  2174. .icon-weather-downpour-halfmoon:before {
  2175. content: "\e009";
  2176. }
  2177. .icon-weather-downpour-sun:before {
  2178. content: "\e00a";
  2179. }
  2180. .icon-weather-drop:before {
  2181. content: "\e00b";
  2182. }
  2183. .icon-weather-first-quarter:before {
  2184. content: "\e00c";
  2185. }
  2186. .icon-weather-fog:before {
  2187. content: "\e00d";
  2188. }
  2189. .icon-weather-fog-fullmoon:before {
  2190. content: "\e00e";
  2191. }
  2192. .icon-weather-fog-halfmoon:before {
  2193. content: "\e00f";
  2194. }
  2195. .icon-weather-fog-sun:before {
  2196. content: "\e010";
  2197. }
  2198. .icon-weather-fullmoon:before {
  2199. content: "\e011";
  2200. }
  2201. .icon-weather-gemini:before {
  2202. content: "\e012";
  2203. }
  2204. .icon-weather-hail:before {
  2205. content: "\e013";
  2206. }
  2207. .icon-weather-hail-fullmoon:before {
  2208. content: "\e014";
  2209. }
  2210. .icon-weather-hail-halfmoon:before {
  2211. content: "\e015";
  2212. }
  2213. .icon-weather-hail-sun:before {
  2214. content: "\e016";
  2215. }
  2216. .icon-weather-last-quarter:before {
  2217. content: "\e017";
  2218. }
  2219. .icon-weather-leo:before {
  2220. content: "\e018";
  2221. }
  2222. .icon-weather-libra:before {
  2223. content: "\e019";
  2224. }
  2225. .icon-weather-lightning:before {
  2226. content: "\e01a";
  2227. }
  2228. .icon-weather-mistyrain:before {
  2229. content: "\e01b";
  2230. }
  2231. .icon-weather-mistyrain-fullmoon:before {
  2232. content: "\e01c";
  2233. }
  2234. .icon-weather-mistyrain-halfmoon:before {
  2235. content: "\e01d";
  2236. }
  2237. .icon-weather-mistyrain-sun:before {
  2238. content: "\e01e";
  2239. }
  2240. .icon-weather-moon:before {
  2241. content: "\e01f";
  2242. }
  2243. .icon-weather-moondown-full:before {
  2244. content: "\e020";
  2245. }
  2246. .icon-weather-moondown-half:before {
  2247. content: "\e021";
  2248. }
  2249. .icon-weather-moonset-full:before {
  2250. content: "\e022";
  2251. }
  2252. .icon-weather-moonset-half:before {
  2253. content: "\e023";
  2254. }
  2255. .icon-weather-move2:before {
  2256. content: "\e024";
  2257. }
  2258. .icon-weather-newmoon:before {
  2259. content: "\e025";
  2260. }
  2261. .icon-weather-pisces:before {
  2262. content: "\e026";
  2263. }
  2264. .icon-weather-rain:before {
  2265. content: "\e027";
  2266. }
  2267. .icon-weather-rain-fullmoon:before {
  2268. content: "\e028";
  2269. }
  2270. .icon-weather-rain-halfmoon:before {
  2271. content: "\e029";
  2272. }
  2273. .icon-weather-rain-sun:before {
  2274. content: "\e02a";
  2275. }
  2276. .icon-weather-sagittarius:before {
  2277. content: "\e02b";
  2278. }
  2279. .icon-weather-scorpio:before {
  2280. content: "\e02c";
  2281. }
  2282. .icon-weather-snow:before {
  2283. content: "\e02d";
  2284. }
  2285. .icon-weather-snow-fullmoon:before {
  2286. content: "\e02e";
  2287. }
  2288. .icon-weather-snow-halfmoon:before {
  2289. content: "\e02f";
  2290. }
  2291. .icon-weather-snow-sun:before {
  2292. content: "\e030";
  2293. }
  2294. .icon-weather-snowflake:before {
  2295. content: "\e031";
  2296. }
  2297. .icon-weather-star:before {
  2298. content: "\e032";
  2299. }
  2300. .icon-weather-storm-11:before {
  2301. content: "\e033";
  2302. }
  2303. .icon-weather-storm-32:before {
  2304. content: "\e034";
  2305. }
  2306. .icon-weather-storm-fullmoon:before {
  2307. content: "\e035";
  2308. }
  2309. .icon-weather-storm-halfmoon:before {
  2310. content: "\e036";
  2311. }
  2312. .icon-weather-storm-sun:before {
  2313. content: "\e037";
  2314. }
  2315. .icon-weather-sun:before {
  2316. content: "\e038";
  2317. }
  2318. .icon-weather-sundown:before {
  2319. content: "\e039";
  2320. }
  2321. .icon-weather-sunset:before {
  2322. content: "\e03a";
  2323. }
  2324. .icon-weather-taurus:before {
  2325. content: "\e03b";
  2326. }
  2327. .icon-weather-tempest:before {
  2328. content: "\e03c";
  2329. }
  2330. .icon-weather-tempest-fullmoon:before {
  2331. content: "\e03d";
  2332. }
  2333. .icon-weather-tempest-halfmoon:before {
  2334. content: "\e03e";
  2335. }
  2336. .icon-weather-tempest-sun:before {
  2337. content: "\e03f";
  2338. }
  2339. .icon-weather-variable-fullmoon:before {
  2340. content: "\e040";
  2341. }
  2342. .icon-weather-variable-halfmoon:before {
  2343. content: "\e041";
  2344. }
  2345. .icon-weather-variable-sun:before {
  2346. content: "\e042";
  2347. }
  2348. .icon-weather-virgo:before {
  2349. content: "\e043";
  2350. }
  2351. .icon-weather-waning-cresent:before {
  2352. content: "\e044";
  2353. }
  2354. .icon-weather-waning-gibbous:before {
  2355. content: "\e045";
  2356. }
  2357. .icon-weather-waxing-cresent:before {
  2358. content: "\e046";
  2359. }
  2360. .icon-weather-waxing-gibbous:before {
  2361. content: "\e047";
  2362. }
  2363. .icon-weather-wind:before {
  2364. content: "\e048";
  2365. }
  2366. .icon-weather-wind-e:before {
  2367. content: "\e049";
  2368. }
  2369. .icon-weather-wind-fullmoon:before {
  2370. content: "\e04a";
  2371. }
  2372. .icon-weather-wind-halfmoon:before {
  2373. content: "\e04b";
  2374. }
  2375. .icon-weather-wind-n:before {
  2376. content: "\e04c";
  2377. }
  2378. .icon-weather-wind-ne:before {
  2379. content: "\e04d";
  2380. }
  2381. .icon-weather-wind-nw:before {
  2382. content: "\e04e";
  2383. }
  2384. .icon-weather-wind-s:before {
  2385. content: "\e04f";
  2386. }
  2387. .icon-weather-wind-se:before {
  2388. content: "\e050";
  2389. }
  2390. .icon-weather-wind-sun:before {
  2391. content: "\e051";
  2392. }
  2393. .icon-weather-wind-sw:before {
  2394. content: "\e052";
  2395. }
  2396. .icon-weather-wind-w:before {
  2397. content: "\e053";
  2398. }
  2399. .icon-weather-windgust:before {
  2400. content: "\e054";
  2401. }