linea.css 50 KB

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