├── fonts ├── basic │ ├── linea-basic-10.eot │ ├── linea-basic-10.ttf │ └── linea-basic-10.woff ├── music │ ├── linea-music-10.eot │ ├── linea-music-10.ttf │ ├── linea-music-10.woff │ └── linea-music-10.svg ├── arrows │ ├── linea-arrows-10.eot │ ├── linea-arrows-10.ttf │ ├── linea-arrows-10.woff │ └── linea-arrows-10.svg ├── weather │ ├── linea-weather-10.eot │ ├── linea-weather-10.ttf │ └── linea-weather-10.woff ├── software │ ├── linea-software-10.eot │ ├── linea-software-10.ttf │ ├── linea-software-10.woff │ └── linea-software-10.svg ├── ecommerce │ ├── linea-ecommerce-10.eot │ ├── linea-ecommerce-10.ttf │ ├── linea-ecommerce-10.woff │ └── linea-ecommerce-10.svg └── basic_elaboration │ ├── linea-basic-elaboration-10.eot │ ├── linea-basic-elaboration-10.ttf │ └── linea-basic-elaboration-10.woff ├── mixins ├── _appearance.scss └── _font-face.scss ├── linea.scss ├── bower.json ├── package.json ├── README.md ├── icons ├── _music.scss ├── _weather.scss ├── _ecommerce.scss ├── _software.scss ├── _arrows.scss ├── _basic.scss └── _basic_elaboration.scss └── LICENSE /fonts/basic/linea-basic-10.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linea-io/linea-scss/HEAD/fonts/basic/linea-basic-10.eot -------------------------------------------------------------------------------- /fonts/basic/linea-basic-10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linea-io/linea-scss/HEAD/fonts/basic/linea-basic-10.ttf -------------------------------------------------------------------------------- /fonts/basic/linea-basic-10.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linea-io/linea-scss/HEAD/fonts/basic/linea-basic-10.woff -------------------------------------------------------------------------------- /fonts/music/linea-music-10.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linea-io/linea-scss/HEAD/fonts/music/linea-music-10.eot -------------------------------------------------------------------------------- /fonts/music/linea-music-10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linea-io/linea-scss/HEAD/fonts/music/linea-music-10.ttf -------------------------------------------------------------------------------- /fonts/music/linea-music-10.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linea-io/linea-scss/HEAD/fonts/music/linea-music-10.woff -------------------------------------------------------------------------------- /fonts/arrows/linea-arrows-10.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linea-io/linea-scss/HEAD/fonts/arrows/linea-arrows-10.eot -------------------------------------------------------------------------------- /fonts/arrows/linea-arrows-10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linea-io/linea-scss/HEAD/fonts/arrows/linea-arrows-10.ttf -------------------------------------------------------------------------------- /fonts/arrows/linea-arrows-10.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linea-io/linea-scss/HEAD/fonts/arrows/linea-arrows-10.woff -------------------------------------------------------------------------------- /fonts/weather/linea-weather-10.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linea-io/linea-scss/HEAD/fonts/weather/linea-weather-10.eot -------------------------------------------------------------------------------- /fonts/weather/linea-weather-10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linea-io/linea-scss/HEAD/fonts/weather/linea-weather-10.ttf -------------------------------------------------------------------------------- /fonts/software/linea-software-10.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linea-io/linea-scss/HEAD/fonts/software/linea-software-10.eot -------------------------------------------------------------------------------- /fonts/software/linea-software-10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linea-io/linea-scss/HEAD/fonts/software/linea-software-10.ttf -------------------------------------------------------------------------------- /fonts/weather/linea-weather-10.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linea-io/linea-scss/HEAD/fonts/weather/linea-weather-10.woff -------------------------------------------------------------------------------- /fonts/ecommerce/linea-ecommerce-10.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linea-io/linea-scss/HEAD/fonts/ecommerce/linea-ecommerce-10.eot -------------------------------------------------------------------------------- /fonts/ecommerce/linea-ecommerce-10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linea-io/linea-scss/HEAD/fonts/ecommerce/linea-ecommerce-10.ttf -------------------------------------------------------------------------------- /fonts/ecommerce/linea-ecommerce-10.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linea-io/linea-scss/HEAD/fonts/ecommerce/linea-ecommerce-10.woff -------------------------------------------------------------------------------- /fonts/software/linea-software-10.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linea-io/linea-scss/HEAD/fonts/software/linea-software-10.woff -------------------------------------------------------------------------------- /fonts/basic_elaboration/linea-basic-elaboration-10.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linea-io/linea-scss/HEAD/fonts/basic_elaboration/linea-basic-elaboration-10.eot -------------------------------------------------------------------------------- /fonts/basic_elaboration/linea-basic-elaboration-10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linea-io/linea-scss/HEAD/fonts/basic_elaboration/linea-basic-elaboration-10.ttf -------------------------------------------------------------------------------- /fonts/basic_elaboration/linea-basic-elaboration-10.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linea-io/linea-scss/HEAD/fonts/basic_elaboration/linea-basic-elaboration-10.woff -------------------------------------------------------------------------------- /mixins/_appearance.scss: -------------------------------------------------------------------------------- 1 | @mixin ico-font-base { 2 | speak: none; 3 | font-style: normal; 4 | font-weight: normal; 5 | font-variant: normal; 6 | text-transform: none; 7 | line-height: 1; 8 | -webkit-font-smoothing: antialiased; 9 | -moz-osx-font-smoothing: grayscale; 10 | } 11 | -------------------------------------------------------------------------------- /linea.scss: -------------------------------------------------------------------------------- 1 | $linea-font-path: '../fonts/' !default; 2 | 3 | @import 'mixins/font-face'; 4 | @import 'mixins/appearance'; 5 | @import 'icons/basic'; 6 | @import 'icons/basic_elaboration'; 7 | @import 'icons/arrows'; 8 | @import 'icons/ecommerce'; 9 | @import 'icons/music'; 10 | @import 'icons/software'; 11 | @import 'icons/weather'; 12 | -------------------------------------------------------------------------------- /mixins/_font-face.scss: -------------------------------------------------------------------------------- 1 | @mixin icon-font-face($font-family, $file-path) { 2 | font-family: $font-family; 3 | src: url('#{$linea-font-path}#{$file-path}#{$font-family}.eot'); 4 | src: url('#{$linea-font-path}#{$file-path}#{$font-family}.eot?#iefix') format('embedded-opentype'), 5 | url('#{$linea-font-path}#{$file-path}#{$font-family}.woff') format('woff'), 6 | url('#{$linea-font-path}#{$file-path}#{$font-family}.ttf') format('truetype'), 7 | url('#{$linea-font-path}#{$file-path}#{$font-family}.svg##{$font-family}') format('svg'); 8 | font-weight: normal; 9 | font-style: normal; 10 | } 11 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "linea-scss", 3 | "version": "1.0.0", 4 | "homepage": "https://github.com/linea-io/linea-scss", 5 | "authors": [ 6 | {"name": "Dario Ferrando", "homepage": "http://www.dario.io"}, 7 | {"name": "Benjamin Sigidi", "homepage": "https://github.com/benjaminsigidi"} 8 | ], 9 | "description": "SCSS version of Linea, a free outline iconset featuring 730+ icons.", 10 | "main": "linea.scss", 11 | "keywords": [ 12 | "linea", 13 | "iconset", 14 | "icons", 15 | "fonts", 16 | "icon", 17 | "fonts", 18 | "sass", 19 | "compass", 20 | "scss" 21 | ], 22 | "license": "CCBY", 23 | "ignore": [ 24 | "**/.*", 25 | "node_modules", 26 | "bower_components", 27 | "test", 28 | "tests" 29 | ] 30 | } 31 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "linea-scss", 3 | "version": "1.0.0", 4 | "description": "SCSS version of Linea, a free outline iconset featuring 730+ icons.", 5 | "main": "linea.scss", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/linea-io/linea-scss.git" 12 | }, 13 | "keywords": [ 14 | "icons", 15 | "iconset", 16 | "icon", 17 | "font", 18 | "scss", 19 | "compass", 20 | "sass" 21 | ], 22 | "contributors": [ 23 | {"name": "Dario Ferrando", "url": "http://www.dario.io"}, 24 | {"name": "Benjamin Sigidi", "url": "https://github.com/benjaminsigidi"} 25 | ], 26 | "license": "CCBY", 27 | "bugs": { 28 | "url": "https://github.com/linea-io/linea-scss/issues" 29 | }, 30 | "homepage": "https://github.com/linea-io/linea-scss#readme" 31 | } 32 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Linea Iconset 2 | Linea Iconset a free outline iconset featuring 730+ Icons. 3 | 4 | ## Acknowledgments 5 | 6 | There are acknowledgements spread throughout the source code if you look around, and you can also view a list of credits. 7 | 8 | ## Contributing 9 | 10 | If you wish to contribute to the project. If you’re able to patch the bug or add the feature yourself – fantastic, make a pull request with the code. If you find a bug in a project you please create an [issue](https://github.com/linea-io/Linea-Iconset/issues/new). 11 | 12 | ## Versioning 13 | 14 | Linea is currently maintained under the [Semantic Versioning guidelines](http://semver.org/). 15 | 16 | ## Contributors 17 | 18 | 19 | **Dario Ferrando** 20 | - [Website](http://www.dario.io/) 21 | - [GitHub](https://github.com/DarioFerrando) 22 | 23 | **Benjamin Sigidi** 24 | - [Website](https://moozen.com/) 25 | - [GitHub](https://github.com/benjaminsigidi) 26 | -------------------------------------------------------------------------------- /icons/_music.scss: -------------------------------------------------------------------------------- 1 | $icon_music_path: 'music/'; 2 | $icon_music_name: 'linea-music-10'; 3 | $icon_music_short: 'music'; 4 | 5 | @font-face { 6 | @include icon-font-face($icon_music_name, $icon_music_path) 7 | } 8 | 9 | [class^="icon-#{$icon_music_short}"], 10 | [class*="icon-#{$icon_music_short}"] { 11 | font-family: $icon_music_name; 12 | @include ico-font-base; 13 | } 14 | 15 | .icon-music-beginning-button { &:before { content: "a"; } } 16 | .icon-music-bell { &:before { content: "b"; } } 17 | .icon-music-cd { &:before { content: "c"; } } 18 | .icon-music-diapason { &:before { content: "d"; } } 19 | .icon-music-eject-button { &:before { content: "e"; } } 20 | .icon-music-end-button { &:before { content: "f"; } } 21 | .icon-music-fastforward-button { &:before { content: "g"; } } 22 | .icon-music-headphones { &:before { content: "h"; } } 23 | .icon-music-ipod { &:before { content: "i"; } } 24 | .icon-music-loudspeaker { &:before { content: "j"; } } 25 | .icon-music-microphone { &:before { content: "k"; } } 26 | .icon-music-microphone-old { &:before { content: "l"; } } 27 | .icon-music-mixer { &:before { content: "m"; } } 28 | .icon-music-mute { &:before { content: "n"; } } 29 | .icon-music-note-multiple { &:before { content: "o"; } } 30 | .icon-music-note-single { &:before { content: "p"; } } 31 | .icon-music-pause-button { &:before { content: "q"; } } 32 | .icon-music-play-button { &:before { content: "r"; } } 33 | .icon-music-playlist { &:before { content: "s"; } } 34 | .icon-music-radio-ghettoblaster { &:before { content: "t"; } } 35 | .icon-music-radio-portable { &:before { content: "u"; } } 36 | .icon-music-record { &:before { content: "v"; } } 37 | .icon-music-recordplayer { &:before { content: "w"; } } 38 | .icon-music-repeat-button { &:before { content: "x"; } } 39 | .icon-music-rewind-button { &:before { content: "y"; } } 40 | .icon-music-shuffle-button { &:before { content: "z"; } } 41 | .icon-music-stop-button { &:before { content: "A"; } } 42 | .icon-music-tape { &:before { content: "B"; } } 43 | .icon-music-volume-down { &:before { content: "C"; } } 44 | .icon-music-volume-up { &:before { content: "D"; } } 45 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | CC0 1.0 Universal 2 | 3 | Statement of Purpose 4 | 5 | The laws of most jurisdictions throughout the world automatically confer 6 | exclusive Copyright and Related Rights (defined below) upon the creator and 7 | subsequent owner(s) (each and all, an "owner") of an original work of 8 | authorship and/or a database (each, a "Work"). 9 | 10 | Certain owners wish to permanently relinquish those rights to a Work for the 11 | purpose of contributing to a commons of creative, cultural and scientific 12 | works ("Commons") that the public can reliably and without fear of later 13 | claims of infringement build upon, modify, incorporate in other works, reuse 14 | and redistribute as freely as possible in any form whatsoever and for any 15 | purposes, including without limitation commercial purposes. These owners may 16 | contribute to the Commons to promote the ideal of a free culture and the 17 | further production of creative, cultural and scientific works, or to gain 18 | reputation or greater distribution for their Work in part through the use and 19 | efforts of others. 20 | 21 | For these and/or other purposes and motivations, and without any expectation 22 | of additional consideration or compensation, the person associating CC0 with a 23 | Work (the "Affirmer"), to the extent that he or she is an owner of Copyright 24 | and Related Rights in the Work, voluntarily elects to apply CC0 to the Work 25 | and publicly distribute the Work under its terms, with knowledge of his or her 26 | Copyright and Related Rights in the Work and the meaning and intended legal 27 | effect of CC0 on those rights. 28 | 29 | 1. Copyright and Related Rights. A Work made available under CC0 may be 30 | protected by copyright and related or neighboring rights ("Copyright and 31 | Related Rights"). Copyright and Related Rights include, but are not limited 32 | to, the following: 33 | 34 | i. the right to reproduce, adapt, distribute, perform, display, communicate, 35 | and translate a Work; 36 | 37 | ii. moral rights retained by the original author(s) and/or performer(s); 38 | 39 | iii. publicity and privacy rights pertaining to a person's image or likeness 40 | depicted in a Work; 41 | 42 | iv. rights protecting against unfair competition in regards to a Work, 43 | subject to the limitations in paragraph 4(a), below; 44 | 45 | v. rights protecting the extraction, dissemination, use and reuse of data in 46 | a Work; 47 | 48 | vi. database rights (such as those arising under Directive 96/9/EC of the 49 | European Parliament and of the Council of 11 March 1996 on the legal 50 | protection of databases, and under any national implementation thereof, 51 | including any amended or successor version of such directive); and 52 | 53 | vii. other similar, equivalent or corresponding rights throughout the world 54 | based on applicable law or treaty, and any national implementations thereof. 55 | 56 | 2. Waiver. To the greatest extent permitted by, but not in contravention of, 57 | applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and 58 | unconditionally waives, abandons, and surrenders all of Affirmer's Copyright 59 | and Related Rights and associated claims and causes of action, whether now 60 | known or unknown (including existing as well as future claims and causes of 61 | action), in the Work (i) in all territories worldwide, (ii) for the maximum 62 | duration provided by applicable law or treaty (including future time 63 | extensions), (iii) in any current or future medium and for any number of 64 | copies, and (iv) for any purpose whatsoever, including without limitation 65 | commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes 66 | the Waiver for the benefit of each member of the public at large and to the 67 | detriment of Affirmer's heirs and successors, fully intending that such Waiver 68 | shall not be subject to revocation, rescission, cancellation, termination, or 69 | any other legal or equitable action to disrupt the quiet enjoyment of the Work 70 | by the public as contemplated by Affirmer's express Statement of Purpose. 71 | 72 | 3. Public License Fallback. Should any part of the Waiver for any reason be 73 | judged legally invalid or ineffective under applicable law, then the Waiver 74 | shall be preserved to the maximum extent permitted taking into account 75 | Affirmer's express Statement of Purpose. In addition, to the extent the Waiver 76 | is so judged Affirmer hereby grants to each affected person a royalty-free, 77 | non transferable, non sublicensable, non exclusive, irrevocable and 78 | unconditional license to exercise Affirmer's Copyright and Related Rights in 79 | the Work (i) in all territories worldwide, (ii) for the maximum duration 80 | provided by applicable law or treaty (including future time extensions), (iii) 81 | in any current or future medium and for any number of copies, and (iv) for any 82 | purpose whatsoever, including without limitation commercial, advertising or 83 | promotional purposes (the "License"). The License shall be deemed effective as 84 | of the date CC0 was applied by Affirmer to the Work. Should any part of the 85 | License for any reason be judged legally invalid or ineffective under 86 | applicable law, such partial invalidity or ineffectiveness shall not 87 | invalidate the remainder of the License, and in such case Affirmer hereby 88 | affirms that he or she will not (i) exercise any of his or her remaining 89 | Copyright and Related Rights in the Work or (ii) assert any associated claims 90 | and causes of action with respect to the Work, in either case contrary to 91 | Affirmer's express Statement of Purpose. 92 | 93 | 4. Limitations and Disclaimers. 94 | 95 | a. No trademark or patent rights held by Affirmer are waived, abandoned, 96 | surrendered, licensed or otherwise affected by this document. 97 | 98 | b. Affirmer offers the Work as-is and makes no representations or warranties 99 | of any kind concerning the Work, express, implied, statutory or otherwise, 100 | including without limitation warranties of title, merchantability, fitness 101 | for a particular purpose, non infringement, or the absence of latent or 102 | other defects, accuracy, or the present or absence of errors, whether or not 103 | discoverable, all to the greatest extent permissible under applicable law. 104 | 105 | c. Affirmer disclaims responsibility for clearing rights of other persons 106 | that may apply to the Work or any use thereof, including without limitation 107 | any person's Copyright and Related Rights in the Work. Further, Affirmer 108 | disclaims responsibility for obtaining any necessary consents, permissions 109 | or other rights required for any use of the Work. 110 | 111 | d. Affirmer understands and acknowledges that Creative Commons is not a 112 | party to this document and has no duty or obligation with respect to this 113 | CC0 or use of the Work. 114 | 115 | For more information, please see 116 | 117 | 118 | -------------------------------------------------------------------------------- /icons/_weather.scss: -------------------------------------------------------------------------------- 1 | $icon_weather_path: 'weather/'; 2 | $icon_weather_name: 'linea-weather-10'; 3 | $icon_weather_short: 'weather'; 4 | 5 | @font-face { 6 | @include icon-font-face($icon_weather_name, $icon_weather_path) 7 | } 8 | 9 | [class^="icon-#{$icon_weather_short}"], 10 | [class*="icon-#{$icon_weather_short}"] { 11 | font-family: $icon_weather_name; 12 | @include ico-font-base; 13 | } 14 | 15 | .icon-weather-aquarius { &:before { content: "\e000"; } } 16 | .icon-weather-aries { &:before { content: "\e001"; } } 17 | .icon-weather-cancer { &:before { content: "\e002"; } } 18 | .icon-weather-capricorn { &:before { content: "\e003"; } } 19 | .icon-weather-cloud { &:before { content: "\e004"; } } 20 | .icon-weather-cloud-drop { &:before { content: "\e005"; } } 21 | .icon-weather-cloud-lightning { &:before { content: "\e006"; } } 22 | .icon-weather-cloud-snowflake { &:before { content: "\e007"; } } 23 | .icon-weather-downpour-fullmoon { &:before { content: "\e008"; } } 24 | .icon-weather-downpour-halfmoon { &:before { content: "\e009"; } } 25 | .icon-weather-downpour-sun { &:before { content: "\e00a"; } } 26 | .icon-weather-drop { &:before { content: "\e00b"; } } 27 | .icon-weather-first-quarter { &:before { content: "\e00c"; } } 28 | .icon-weather-fog { &:before { content: "\e00d"; } } 29 | .icon-weather-fog-fullmoon { &:before { content: "\e00e"; } } 30 | .icon-weather-fog-halfmoon { &:before { content: "\e00f"; } } 31 | .icon-weather-fog-sun { &:before { content: "\e010"; } } 32 | .icon-weather-fullmoon { &:before { content: "\e011"; } } 33 | .icon-weather-gemini { &:before { content: "\e012"; } } 34 | .icon-weather-hail { &:before { content: "\e013"; } } 35 | .icon-weather-hail-fullmoon { &:before { content: "\e014"; } } 36 | .icon-weather-hail-halfmoon { &:before { content: "\e015"; } } 37 | .icon-weather-hail-sun { &:before { content: "\e016"; } } 38 | .icon-weather-last-quarter { &:before { content: "\e017"; } } 39 | .icon-weather-leo { &:before { content: "\e018"; } } 40 | .icon-weather-libra { &:before { content: "\e019"; } } 41 | .icon-weather-lightning { &:before { content: "\e01a"; } } 42 | .icon-weather-mistyrain { &:before { content: "\e01b"; } } 43 | .icon-weather-mistyrain-fullmoon { &:before { content: "\e01c"; } } 44 | .icon-weather-mistyrain-halfmoon { &:before { content: "\e01d"; } } 45 | .icon-weather-mistyrain-sun { &:before { content: "\e01e"; } } 46 | .icon-weather-moon { &:before { content: "\e01f"; } } 47 | .icon-weather-moondown-full { &:before { content: "\e020"; } } 48 | .icon-weather-moondown-half { &:before { content: "\e021"; } } 49 | .icon-weather-moonset-full { &:before { content: "\e022"; } } 50 | .icon-weather-moonset-half { &:before { content: "\e023"; } } 51 | .icon-weather-move2 { &:before { content: "\e024"; } } 52 | .icon-weather-newmoon { &:before { content: "\e025"; } } 53 | .icon-weather-pisces { &:before { content: "\e026"; } } 54 | .icon-weather-rain { &:before { content: "\e027"; } } 55 | .icon-weather-rain-fullmoon { &:before { content: "\e028"; } } 56 | .icon-weather-rain-halfmoon { &:before { content: "\e029"; } } 57 | .icon-weather-rain-sun { &:before { content: "\e02a"; } } 58 | .icon-weather-sagittarius { &:before { content: "\e02b"; } } 59 | .icon-weather-scorpio { &:before { content: "\e02c"; } } 60 | .icon-weather-snow { &:before { content: "\e02d"; } } 61 | .icon-weather-snow-fullmoon { &:before { content: "\e02e"; } } 62 | .icon-weather-snow-halfmoon { &:before { content: "\e02f"; } } 63 | .icon-weather-snow-sun { &:before { content: "\e030"; } } 64 | .icon-weather-snowflake { &:before { content: "\e031"; } } 65 | .icon-weather-star { &:before { content: "\e032"; } } 66 | .icon-weather-storm-11 { &:before { content: "\e033"; } } 67 | .icon-weather-storm-32 { &:before { content: "\e034"; } } 68 | .icon-weather-storm-fullmoon { &:before { content: "\e035"; } } 69 | .icon-weather-storm-halfmoon { &:before { content: "\e036"; } } 70 | .icon-weather-storm-sun { &:before { content: "\e037"; } } 71 | .icon-weather-sun { &:before { content: "\e038"; } } 72 | .icon-weather-sundown { &:before { content: "\e039"; } } 73 | .icon-weather-sunset { &:before { content: "\e03a"; } } 74 | .icon-weather-taurus { &:before { content: "\e03b"; } } 75 | .icon-weather-tempest { &:before { content: "\e03c"; } } 76 | .icon-weather-tempest-fullmoon { &:before { content: "\e03d"; } } 77 | .icon-weather-tempest-halfmoon { &:before { content: "\e03e"; } } 78 | .icon-weather-tempest-sun { &:before { content: "\e03f"; } } 79 | .icon-weather-variable-fullmoon { &:before { content: "\e040"; } } 80 | .icon-weather-variable-halfmoon { &:before { content: "\e041"; } } 81 | .icon-weather-variable-sun { &:before { content: "\e042"; } } 82 | .icon-weather-virgo { &:before { content: "\e043"; } } 83 | .icon-weather-waning-cresent { &:before { content: "\e044"; } } 84 | .icon-weather-waning-gibbous { &:before { content: "\e045"; } } 85 | .icon-weather-waxing-cresent { &:before { content: "\e046"; } } 86 | .icon-weather-waxing-gibbous { &:before { content: "\e047"; } } 87 | .icon-weather-wind { &:before { content: "\e048"; } } 88 | .icon-weather-wind-e { &:before { content: "\e049"; } } 89 | .icon-weather-wind-fullmoon { &:before { content: "\e04a"; } } 90 | .icon-weather-wind-halfmoon { &:before { content: "\e04b"; } } 91 | .icon-weather-wind-n { &:before { content: "\e04c"; } } 92 | .icon-weather-wind-ne { &:before { content: "\e04d"; } } 93 | .icon-weather-wind-nw { &:before { content: "\e04e"; } } 94 | .icon-weather-wind-s { &:before { content: "\e04f"; } } 95 | .icon-weather-wind-se { &:before { content: "\e050"; } } 96 | .icon-weather-wind-sun { &:before { content: "\e051"; } } 97 | .icon-weather-wind-sw { &:before { content: "\e052"; } } 98 | .icon-weather-wind-w { &:before { content: "\e053"; } } 99 | .icon-weather-windgust { &:before { content: "\e054"; } } 100 | -------------------------------------------------------------------------------- /icons/_ecommerce.scss: -------------------------------------------------------------------------------- 1 | $icon_ecommerce_path: 'ecommerce/'; 2 | $icon_ecommerce_name: 'linea-ecommerce-10'; 3 | $icon_ecommerce_short: 'ecommerce'; 4 | 5 | @font-face { 6 | @include icon-font-face($icon_ecommerce_name, $icon_ecommerce_path) 7 | } 8 | 9 | [class^="icon-#{$icon_ecommerce_short}"], 10 | [class*="icon-#{$icon_ecommerce_short}"] { 11 | font-family: $icon_ecommerce_name; 12 | @include ico-font-base; 13 | } 14 | 15 | .icon-ecommerce-bag { &:before { content: "a"; } } 16 | .icon-ecommerce-bag-check { &:before { content: "b"; } } 17 | .icon-ecommerce-bag-cloud { &:before { content: "c"; } } 18 | .icon-ecommerce-bag-download { &:before { content: "d"; } } 19 | .icon-ecommerce-bag-minus { &:before { content: "e"; } } 20 | .icon-ecommerce-bag-plus { &:before { content: "f"; } } 21 | .icon-ecommerce-bag-refresh { &:before { content: "g"; } } 22 | .icon-ecommerce-bag-remove { &:before { content: "h"; } } 23 | .icon-ecommerce-bag-search { &:before { content: "i"; } } 24 | .icon-ecommerce-bag-upload { &:before { content: "j"; } } 25 | .icon-ecommerce-banknote { &:before { content: "k"; } } 26 | .icon-ecommerce-banknotes { &:before { content: "l"; } } 27 | .icon-ecommerce-basket { &:before { content: "m"; } } 28 | .icon-ecommerce-basket-check { &:before { content: "n"; } } 29 | .icon-ecommerce-basket-cloud { &:before { content: "o"; } } 30 | .icon-ecommerce-basket-download { &:before { content: "p"; } } 31 | .icon-ecommerce-basket-minus { &:before { content: "q"; } } 32 | .icon-ecommerce-basket-plus { &:before { content: "r"; } } 33 | .icon-ecommerce-basket-refresh { &:before { content: "s"; } } 34 | .icon-ecommerce-basket-remove { &:before { content: "t"; } } 35 | .icon-ecommerce-basket-search { &:before { content: "u"; } } 36 | .icon-ecommerce-basket-upload { &:before { content: "v"; } } 37 | .icon-ecommerce-bath { &:before { content: "w"; } } 38 | .icon-ecommerce-cart { &:before { content: "x"; } } 39 | .icon-ecommerce-cart-check { &:before { content: "y"; } } 40 | .icon-ecommerce-cart-cloud { &:before { content: "z"; } } 41 | .icon-ecommerce-cart-content { &:before { content: "A"; } } 42 | .icon-ecommerce-cart-download { &:before { content: "B"; } } 43 | .icon-ecommerce-cart-minus { &:before { content: "C"; } } 44 | .icon-ecommerce-cart-plus { &:before { content: "D"; } } 45 | .icon-ecommerce-cart-refresh { &:before { content: "E"; } } 46 | .icon-ecommerce-cart-remove { &:before { content: "F"; } } 47 | .icon-ecommerce-cart-search { &:before { content: "G"; } } 48 | .icon-ecommerce-cart-upload { &:before { content: "H"; } } 49 | .icon-ecommerce-cent { &:before { content: "I"; } } 50 | .icon-ecommerce-colon { &:before { content: "J"; } } 51 | .icon-ecommerce-creditcard { &:before { content: "K"; } } 52 | .icon-ecommerce-diamond { &:before { content: "L"; } } 53 | .icon-ecommerce-dollar { &:before { content: "M"; } } 54 | .icon-ecommerce-euro { &:before { content: "N"; } } 55 | .icon-ecommerce-franc { &:before { content: "O"; } } 56 | .icon-ecommerce-gift { &:before { content: "P"; } } 57 | .icon-ecommerce-graph1 { &:before { content: "Q"; } } 58 | .icon-ecommerce-graph2 { &:before { content: "R"; } } 59 | .icon-ecommerce-graph3 { &:before { content: "S"; } } 60 | .icon-ecommerce-graph-decrease { &:before { content: "T"; } } 61 | .icon-ecommerce-graph-increase { &:before { content: "U"; } } 62 | .icon-ecommerce-guarani { &:before { content: "V"; } } 63 | .icon-ecommerce-kips { &:before { content: "W"; } } 64 | .icon-ecommerce-lira { &:before { content: "X"; } } 65 | .icon-ecommerce-megaphone { &:before { content: "Y"; } } 66 | .icon-ecommerce-money { &:before { content: "Z"; } } 67 | .icon-ecommerce-naira { &:before { content: "0"; } } 68 | .icon-ecommerce-pesos { &:before { content: "1"; } } 69 | .icon-ecommerce-pound { &:before { content: "2"; } } 70 | .icon-ecommerce-receipt { &:before { content: "3"; } } 71 | .icon-ecommerce-receipt-bath { &:before { content: "4"; } } 72 | .icon-ecommerce-receipt-cent { &:before { content: "5"; } } 73 | .icon-ecommerce-receipt-dollar { &:before { content: "6"; } } 74 | .icon-ecommerce-receipt-euro { &:before { content: "7"; } } 75 | .icon-ecommerce-receipt-franc { &:before { content: "8"; } } 76 | .icon-ecommerce-receipt-guarani { &:before { content: "9"; } } 77 | .icon-ecommerce-receipt-kips { &:before { content: "!"; } } 78 | .icon-ecommerce-receipt-lira { &:before { content: "\""; } } 79 | .icon-ecommerce-receipt-naira { &:before { content: "#"; } } 80 | .icon-ecommerce-receipt-pesos { &:before { content: "$"; } } 81 | .icon-ecommerce-receipt-pound { &:before { content: "%"; } } 82 | .icon-ecommerce-receipt-rublo { &:before { content: "&"; } } 83 | .icon-ecommerce-receipt-rupee { &:before { content: "'"; } } 84 | .icon-ecommerce-receipt-tugrik { &:before { content: "("; } } 85 | .icon-ecommerce-receipt-won { &:before { content: ")"; } } 86 | .icon-ecommerce-receipt-yen { &:before { content: "*"; } } 87 | .icon-ecommerce-receipt-yen2 { &:before { content: "+"; } } 88 | .icon-ecommerce-recept-colon { &:before { content: ","; } } 89 | .icon-ecommerce-rublo { &:before { content: "-"; } } 90 | .icon-ecommerce-rupee { &:before { content: "."; } } 91 | .icon-ecommerce-safe { &:before { content: "/"; } } 92 | .icon-ecommerce-sale { &:before { content: ":"; } } 93 | .icon-ecommerce-sales { &:before { content: ";"; } } 94 | .icon-ecommerce-ticket { &:before { content: "<"; } } 95 | .icon-ecommerce-tugriks { &:before { content: "="; } } 96 | .icon-ecommerce-wallet { &:before { content: ">"; } } 97 | .icon-ecommerce-won { &:before { content: "?"; } } 98 | .icon-ecommerce-yen { &:before { content: "@"; } } 99 | .icon-ecommerce-yen2 { &:before { content: "["; } } 100 | -------------------------------------------------------------------------------- /icons/_software.scss: -------------------------------------------------------------------------------- 1 | $icon_software_path: 'software/'; 2 | $icon_software_name: 'linea-software-10'; 3 | $icon_software_short: 'software'; 4 | 5 | @font-face { 6 | @include icon-font-face($icon_software_name, $icon_software_path) 7 | } 8 | 9 | [class^="icon-#{$icon_software_short}"], 10 | [class*="icon-#{$icon_software_short}"] { 11 | font-family: $icon_software_name; 12 | @include ico-font-base; 13 | } 14 | 15 | .icon-software-add-vectorpoint { &:before { content: "a"; } } 16 | .icon-software-box-oval { &:before { content: "b"; } } 17 | .icon-software-box-polygon { &:before { content: "c"; } } 18 | .icon-software-box-rectangle { &:before { content: "d"; } } 19 | .icon-software-box-roundedrectangle { &:before { content: "e"; } } 20 | .icon-software-character { &:before { content: "f"; } } 21 | .icon-software-crop { &:before { content: "g"; } } 22 | .icon-software-eyedropper { &:before { content: "h"; } } 23 | .icon-software-font-allcaps { &:before { content: "i"; } } 24 | .icon-software-font-baseline-shift { &:before { content: "j"; } } 25 | .icon-software-font-horizontal-scale { &:before { content: "k"; } } 26 | .icon-software-font-kerning { &:before { content: "l"; } } 27 | .icon-software-font-leading { &:before { content: "m"; } } 28 | .icon-software-font-size { &:before { content: "n"; } } 29 | .icon-software-font-smallcapital { &:before { content: "o"; } } 30 | .icon-software-font-smallcaps { &:before { content: "p"; } } 31 | .icon-software-font-strikethrough { &:before { content: "q"; } } 32 | .icon-software-font-tracking { &:before { content: "r"; } } 33 | .icon-software-font-underline { &:before { content: "s"; } } 34 | .icon-software-font-vertical-scale { &:before { content: "t"; } } 35 | .icon-software-horizontal-align-center { &:before { content: "u"; } } 36 | .icon-software-horizontal-align-left { &:before { content: "v"; } } 37 | .icon-software-horizontal-align-right { &:before { content: "w"; } } 38 | .icon-software-horizontal-distribute-center { &:before { content: "x"; } } 39 | .icon-software-horizontal-distribute-left { &:before { content: "y"; } } 40 | .icon-software-horizontal-distribute-right { &:before { content: "z"; } } 41 | .icon-software-indent-firstline { &:before { content: "A"; } } 42 | .icon-software-indent-left { &:before { content: "B"; } } 43 | .icon-software-indent-right { &:before { content: "C"; } } 44 | .icon-software-lasso { &:before { content: "D"; } } 45 | .icon-software-layers1 { &:before { content: "E"; } } 46 | .icon-software-layers2 { &:before { content: "F"; } } 47 | .icon-software-layout { &:before { content: "G"; } } 48 | .icon-software-layout-2columns { &:before { content: "H"; } } 49 | .icon-software-layout-3columns { &:before { content: "I"; } } 50 | .icon-software-layout-4boxes { &:before { content: "J"; } } 51 | .icon-software-layout-4columns { &:before { content: "K"; } } 52 | .icon-software-layout-4lines { &:before { content: "L"; } } 53 | .icon-software-layout-8boxes { &:before { content: "M"; } } 54 | .icon-software-layout-header { &:before { content: "N"; } } 55 | .icon-software-layout-header-2columns { &:before { content: "O"; } } 56 | .icon-software-layout-header-3columns { &:before { content: "P"; } } 57 | .icon-software-layout-header-4boxes { &:before { content: "Q"; } } 58 | .icon-software-layout-header-4columns { &:before { content: "R"; } } 59 | .icon-software-layout-header-complex { &:before { content: "S"; } } 60 | .icon-software-layout-header-complex2 { &:before { content: "T"; } } 61 | .icon-software-layout-header-complex3 { &:before { content: "U"; } } 62 | .icon-software-layout-header-complex4 { &:before { content: "V"; } } 63 | .icon-software-layout-header-sideleft { &:before { content: "W"; } } 64 | .icon-software-layout-header-sideright { &:before { content: "X"; } } 65 | .icon-software-layout-sidebar-left { &:before { content: "Y"; } } 66 | .icon-software-layout-sidebar-right { &:before { content: "Z"; } } 67 | .icon-software-magnete { &:before { content: "0"; } } 68 | .icon-software-pages { &:before { content: "1"; } } 69 | .icon-software-paintbrush { &:before { content: "2"; } } 70 | .icon-software-paintbucket { &:before { content: "3"; } } 71 | .icon-software-paintroller { &:before { content: "4"; } } 72 | .icon-software-paragraph { &:before { content: "5"; } } 73 | .icon-software-paragraph-align-left { &:before { content: "6"; } } 74 | .icon-software-paragraph-align-right { &:before { content: "7"; } } 75 | .icon-software-paragraph-center { &:before { content: "8"; } } 76 | .icon-software-paragraph-justify-all { &:before { content: "9"; } } 77 | .icon-software-paragraph-justify-center { &:before { content: "!"; } } 78 | .icon-software-paragraph-justify-left { &:before { content: "\""; } } 79 | .icon-software-paragraph-justify-right { &:before { content: "#"; } } 80 | .icon-software-paragraph-space-after { &:before { content: "$"; } } 81 | .icon-software-paragraph-space-before { &:before { content: "%"; } } 82 | .icon-software-pathfinder-exclude { &:before { content: "&"; } } 83 | .icon-software-pathfinder-intersect { &:before { content: "'"; } } 84 | .icon-software-pathfinder-subtract { &:before { content: "("; } } 85 | .icon-software-pathfinder-unite { &:before { content: ")"; } } 86 | .icon-software-pen { &:before { content: "*"; } } 87 | .icon-software-pen-add { &:before { content: "+"; } } 88 | .icon-software-pen-remove { &:before { content: ","; } } 89 | .icon-software-pencil { &:before { content: "-"; } } 90 | .icon-software-polygonallasso { &:before { content: "."; } } 91 | .icon-software-reflect-horizontal { &:before { content: "/"; } } 92 | .icon-software-reflect-vertical { &:before { content: ":"; } } 93 | .icon-software-remove-vectorpoint { &:before { content: ";"; } } 94 | .icon-software-scale-expand { &:before { content: "<"; } } 95 | .icon-software-scale-reduce { &:before { content: "="; } } 96 | .icon-software-selection-oval { &:before { content: ">"; } } 97 | .icon-software-selection-polygon { &:before { content: "?"; } } 98 | .icon-software-selection-rectangle { &:before { content: "@"; } } 99 | .icon-software-selection-roundedrectangle { &:before { content: "["; } } 100 | .icon-software-shape-oval { &:before { content: "]"; } } 101 | .icon-software-shape-polygon { &:before { content: "^"; } } 102 | .icon-software-shape-rectangle { &:before { content: "_"; } } 103 | .icon-software-shape-roundedrectangle { &:before { content: "`"; } } 104 | .icon-software-slice { &:before { content: "{"; } } 105 | .icon-software-transform-bezier { &:before { content: "|"; } } 106 | .icon-software-vector-box { &:before { content: "}"; } } 107 | .icon-software-vector-composite { &:before { content: "~"; } } 108 | .icon-software-vector-line { &:before { content: "\\"; } } 109 | .icon-software-vertical-align-bottom { &:before { content: "\e000"; } } 110 | .icon-software-vertical-align-center { &:before { content: "\e001"; } } 111 | .icon-software-vertical-align-top { &:before { content: "\e002"; } } 112 | .icon-software-vertical-distribute-bottom { &:before { content: "\e003"; } } 113 | .icon-software-vertical-distribute-center { &:before { content: "\e004"; } } 114 | .icon-software-vertical-distribute-top { &:before { content: "\e005"; } } 115 | -------------------------------------------------------------------------------- /icons/_arrows.scss: -------------------------------------------------------------------------------- 1 | $icon_arrows_path: 'arrows/'; 2 | $icon_arrows_name: 'linea-arrows-10'; 3 | $icon_arrows_short: 'arrows'; 4 | 5 | @font-face { 6 | @include icon-font-face($icon_arrows_name, $icon_arrows_path) 7 | } 8 | 9 | [class^="icon-#{$icon_arrows_short}"], 10 | [class*="icon-#{$icon_arrows_short}"] { 11 | font-family: $icon_arrows_name; 12 | @include ico-font-base; 13 | } 14 | 15 | .icon-arrows-anticlockwise { &:before { content: "\e000"; } } 16 | .icon-arrows-anticlockwise-dashed { &:before { content: "\e001"; } } 17 | .icon-arrows-button-down { &:before { content: "\e002"; } } 18 | .icon-arrows-button-off { &:before { content: "\e003"; } } 19 | .icon-arrows-button-on { &:before { content: "\e004"; } } 20 | .icon-arrows-button-up { &:before { content: "\e005"; } } 21 | .icon-arrows-check { &:before { content: "\e006"; } } 22 | .icon-arrows-circle-check { &:before { content: "\e007"; } } 23 | .icon-arrows-circle-down { &:before { content: "\e008"; } } 24 | .icon-arrows-circle-downleft { &:before { content: "\e009"; } } 25 | .icon-arrows-circle-downright { &:before { content: "\e00a"; } } 26 | .icon-arrows-circle-left { &:before { content: "\e00b"; } } 27 | .icon-arrows-circle-minus { &:before { content: "\e00c"; } } 28 | .icon-arrows-circle-plus { &:before { content: "\e00d"; } } 29 | .icon-arrows-circle-remove { &:before { content: "\e00e"; } } 30 | .icon-arrows-circle-right { &:before { content: "\e00f"; } } 31 | .icon-arrows-circle-up { &:before { content: "\e010"; } } 32 | .icon-arrows-circle-upleft { &:before { content: "\e011"; } } 33 | .icon-arrows-circle-upright { &:before { content: "\e012"; } } 34 | .icon-arrows-clockwise { &:before { content: "\e013"; } } 35 | .icon-arrows-clockwise-dashed { &:before { content: "\e014"; } } 36 | .icon-arrows-compress { &:before { content: "\e015"; } } 37 | .icon-arrows-deny { &:before { content: "\e016"; } } 38 | .icon-arrows-diagonal { &:before { content: "\e017"; } } 39 | .icon-arrows-diagonal2 { &:before { content: "\e018"; } } 40 | .icon-arrows-down { &:before { content: "\e019"; } } 41 | .icon-arrows-down-double { &:before { content: "\e01a"; } } 42 | .icon-arrows-downleft { &:before { content: "\e01b"; } } 43 | .icon-arrows-downright { &:before { content: "\e01c"; } } 44 | .icon-arrows-drag-down { &:before { content: "\e01d"; } } 45 | .icon-arrows-drag-down-dashed { &:before { content: "\e01e"; } } 46 | .icon-arrows-drag-horiz { &:before { content: "\e01f"; } } 47 | .icon-arrows-drag-left { &:before { content: "\e020"; } } 48 | .icon-arrows-drag-left-dashed { &:before { content: "\e021"; } } 49 | .icon-arrows-drag-right { &:before { content: "\e022"; } } 50 | .icon-arrows-drag-right-dashed { &:before { content: "\e023"; } } 51 | .icon-arrows-drag-up { &:before { content: "\e024"; } } 52 | .icon-arrows-drag-up-dashed { &:before { content: "\e025"; } } 53 | .icon-arrows-drag-vert { &:before { content: "\e026"; } } 54 | .icon-arrows-exclamation { &:before { content: "\e027"; } } 55 | .icon-arrows-expand { &:before { content: "\e028"; } } 56 | .icon-arrows-expand-diagonal1 { &:before { content: "\e029"; } } 57 | .icon-arrows-expand-horizontal1 { &:before { content: "\e02a"; } } 58 | .icon-arrows-expand-vertical1 { &:before { content: "\e02b"; } } 59 | .icon-arrows-fit-horizontal { &:before { content: "\e02c"; } } 60 | .icon-arrows-fit-vertical { &:before { content: "\e02d"; } } 61 | .icon-arrows-glide { &:before { content: "\e02e"; } } 62 | .icon-arrows-glide-horizontal { &:before { content: "\e02f"; } } 63 | .icon-arrows-glide-vertical { &:before { content: "\e030"; } } 64 | .icon-arrows-hamburger1 { &:before { content: "\e031"; } } 65 | .icon-arrows-hamburger-2 { &:before { content: "\e032"; } } 66 | .icon-arrows-horizontal { &:before { content: "\e033"; } } 67 | .icon-arrows-info:before { &:before { content: "\e034"; } } 68 | .icon-arrows-keyboard-alt { &:before { content: "\e035"; } } 69 | .icon-arrows-keyboard-cmd { &:before { content: "\e036"; } } 70 | .icon-arrows-keyboard-delete { &:before { content: "\e037"; } } 71 | .icon-arrows-keyboard-down { &:before { content: "\e038"; } } 72 | .icon-arrows-keyboard-left { &:before { content: "\e039"; } } 73 | .icon-arrows-keyboard-return { &:before { content: "\e03a"; } } 74 | .icon-arrows-keyboard-right { &:before { content: "\e03b"; } } 75 | .icon-arrows-keyboard-shift { &:before { content: "\e03c"; } } 76 | .icon-arrows-keyboard-tab { &:before { content: "\e03d"; } } 77 | .icon-arrows-keyboard-up { &:before { content: "\e03e"; } } 78 | .icon-arrows-left { &:before { content: "\e03f"; } } 79 | .icon-arrows-left-double-32 { &:before { content: "\e040"; } } 80 | .icon-arrows-minus { &:before { content: "\e041"; } } 81 | .icon-arrows-move { &:before { content: "\e042"; } } 82 | .icon-arrows-move2 { &:before { content: "\e043"; } } 83 | .icon-arrows-move-bottom { &:before { content: "\e044"; } } 84 | .icon-arrows-move-left { &:before { content: "\e045"; } } 85 | .icon-arrows-move-right { &:before { content: "\e046"; } } 86 | .icon-arrows-move-top { &:before { content: "\e047"; } } 87 | .icon-arrows-plus { &:before { content: "\e048"; } } 88 | .icon-arrows-question { &:before { content: "\e049"; } } 89 | .icon-arrows-remove { &:before { content: "\e04a"; } } 90 | .icon-arrows-right { &:before { content: "\e04b"; } } 91 | .icon-arrows-right-double { &:before { content: "\e04c"; } } 92 | .icon-arrows-rotate { &:before { content: "\e04d"; } } 93 | .icon-arrows-rotate-anti { &:before { content: "\e04e"; } } 94 | .icon-arrows-rotate-anti-dashed { &:before { content: "\e04f"; } } 95 | .icon-arrows-rotate-dashed { &:before { content: "\e050"; } } 96 | .icon-arrows-shrink { &:before { content: "\e051"; } } 97 | .icon-arrows-shrink-diagonal1 { &:before { content: "\e052"; } } 98 | .icon-arrows-shrink-diagonal2 { &:before { content: "\e053"; } } 99 | .icon-arrows-shrink-horizonal2 { &:before { content: "\e054"; } } 100 | .icon-arrows-shrink-horizontal1 { &:before { content: "\e055"; } } 101 | .icon-arrows-shrink-vertical1 { &:before { content: "\e056"; } } 102 | .icon-arrows-shrink-vertical2 { &:before { content: "\e057"; } } 103 | .icon-arrows-sign-down { &:before { content: "\e058"; } } 104 | .icon-arrows-sign-left { &:before { content: "\e059"; } } 105 | .icon-arrows-sign-right { &:before { content: "\e05a"; } } 106 | .icon-arrows-sign-up { &:before { content: "\e05b"; } } 107 | .icon-arrows-slide-down1 { &:before { content: "\e05c"; } } 108 | .icon-arrows-slide-down2 { &:before { content: "\e05d"; } } 109 | .icon-arrows-slide-left1 { &:before { content: "\e05e"; } } 110 | .icon-arrows-slide-left2 { &:before { content: "\e05f"; } } 111 | .icon-arrows-slide-right1 { &:before { content: "\e060"; } } 112 | .icon-arrows-slide-right2 { &:before { content: "\e061"; } } 113 | .icon-arrows-slide-up1 { &:before { content: "\e062"; } } 114 | .icon-arrows-slide-up2 { &:before { content: "\e063"; } } 115 | .icon-arrows-slim-down { &:before { content: "\e064"; } } 116 | .icon-arrows-slim-down-dashed { &:before { content: "\e065"; } } 117 | .icon-arrows-slim-left { &:before { content: "\e066"; } } 118 | .icon-arrows-slim-left-dashed { &:before { content: "\e067"; } } 119 | .icon-arrows-slim-right { &:before { content: "\e068"; } } 120 | .icon-arrows-slim-right-dashed { &:before { content: "\e069"; } } 121 | .icon-arrows-slim-up { &:before { content: "\e06a"; } } 122 | .icon-arrows-slim-up-dashed { &:before { content: "\e06b"; } } 123 | .icon-arrows-square-check { &:before { content: "\e06c"; } } 124 | .icon-arrows-square-down { &:before { content: "\e06d"; } } 125 | .icon-arrows-square-downleft { &:before { content: "\e06e"; } } 126 | .icon-arrows-square-downright { &:before { content: "\e06f"; } } 127 | .icon-arrows-square-left { &:before { content: "\e070"; } } 128 | .icon-arrows-square-minus { &:before { content: "\e071"; } } 129 | .icon-arrows-square-plus { &:before { content: "\e072"; } } 130 | .icon-arrows-square-remove { &:before { content: "\e073"; } } 131 | .icon-arrows-square-right { &:before { content: "\e074"; } } 132 | .icon-arrows-square-up { &:before { content: "\e075"; } } 133 | .icon-arrows-square-upleft { &:before { content: "\e076"; } } 134 | .icon-arrows-square-upright { &:before { content: "\e077"; } } 135 | .icon-arrows-squares { &:before { content: "\e078"; } } 136 | .icon-arrows-stretch-diagonal1 { &:before { content: "\e079"; } } 137 | .icon-arrows-stretch-diagonal2 { &:before { content: "\e07a"; } } 138 | .icon-arrows-stretch-diagonal3 { &:before { content: "\e07b"; } } 139 | .icon-arrows-stretch-diagonal4 { &:before { content: "\e07c"; } } 140 | .icon-arrows-stretch-horizontal1 { &:before { content: "\e07d"; } } 141 | .icon-arrows-stretch-horizontal2 { &:before { content: "\e07e"; } } 142 | .icon-arrows-stretch-vertical1 { &:before { content: "\e07f"; } } 143 | .icon-arrows-stretch-vertical2 { &:before { content: "\e080"; } } 144 | .icon-arrows-switch-horizontal { &:before { content: "\e081"; } } 145 | .icon-arrows-switch-vertical { &:before { content: "\e082"; } } 146 | .icon-arrows-up { &:before { content: "\e083"; } } 147 | .icon-arrows-up-double-33 { &:before { content: "\e084"; } } 148 | .icon-arrows-upleft { &:before { content: "\e085"; } } 149 | .icon-arrows-upright { &:before { content: "\e086"; } } 150 | .icon-arrows-vertical { &:before { content: "\e087"; } } 151 | -------------------------------------------------------------------------------- /icons/_basic.scss: -------------------------------------------------------------------------------- 1 | $icon_basic_path: 'basic/'; 2 | $icon_basic_name: 'linea-basic-10'; 3 | $icon_basic_short: 'basic'; 4 | 5 | @font-face { 6 | @include icon-font-face($icon_basic_name, $icon_basic_path) 7 | } 8 | 9 | [class^="icon-#{$icon_basic_short}"], 10 | [class*="icon-#{$icon_basic_short}"] { 11 | font-family: $icon_basic_name; 12 | @include ico-font-base; 13 | } 14 | 15 | .icon-basic-accelerator { &:before { content: "a"; } } 16 | .icon-basic-alarm { &:before { content: "b"; } } 17 | .icon-basic-anchor { &:before { content: "c"; } } 18 | .icon-basic-anticlockwise { &:before { content: "d"; } } 19 | .icon-basic-archive { &:before { content: "e"; } } 20 | .icon-basic-archive-full { &:before { content: "f"; } } 21 | .icon-basic-ban { &:before { content: "g"; } } 22 | .icon-basic-battery-charge { &:before { content: "h"; } } 23 | .icon-basic-battery-empty { &:before { content: "i"; } } 24 | .icon-basic-battery-full { &:before { content: "j"; } } 25 | .icon-basic-battery-half { &:before { content: "k"; } } 26 | .icon-basic-bolt { &:before { content: "l"; } } 27 | .icon-basic-book { &:before { content: "m"; } } 28 | .icon-basic-book-pen { &:before { content: "n"; } } 29 | .icon-basic-book-pencil { &:before { content: "o"; } } 30 | .icon-basic-bookmark { &:before { content: "p"; } } 31 | .icon-basic-calculator { &:before { content: "q"; } } 32 | .icon-basic-calendar { &:before { content: "r"; } } 33 | .icon-basic-cards-diamonds { &:before { content: "s"; } } 34 | .icon-basic-cards-hearts { &:before { content: "t"; } } 35 | .icon-basic-case { &:before { content: "u"; } } 36 | .icon-basic-chronometer { &:before { content: "v"; } } 37 | .icon-basic-clessidre { &:before { content: "w"; } } 38 | .icon-basic-clock { &:before { content: "x"; } } 39 | .icon-basic-clockwise { &:before { content: "y"; } } 40 | .icon-basic-cloud { &:before { content: "z"; } } 41 | .icon-basic-clubs { &:before { content: "A"; } } 42 | .icon-basic-compass { &:before { content: "B"; } } 43 | .icon-basic-cup { &:before { content: "C"; } } 44 | .icon-basic-diamonds { &:before { content: "D"; } } 45 | .icon-basic-display { &:before { content: "E"; } } 46 | .icon-basic-download { &:before { content: "F"; } } 47 | .icon-basic-exclamation { &:before { content: "G"; } } 48 | .icon-basic-eye { &:before { content: "H"; } } 49 | .icon-basic-eye-closed { &:before { content: "I"; } } 50 | .icon-basic-female { &:before { content: "J"; } } 51 | .icon-basic-flag1 { &:before { content: "K"; } } 52 | .icon-basic-flag2 { &:before { content: "L"; } } 53 | .icon-basic-floppydisk { &:before { content: "M"; } } 54 | .icon-basic-folder { &:before { content: "N"; } } 55 | .icon-basic-folder-multiple { &:before { content: "O"; } } 56 | .icon-basic-gear { &:before { content: "P"; } } 57 | .icon-basic-geolocalize-01 { &:before { content: "Q"; } } 58 | .icon-basic-geolocalize-05 { &:before { content: "R"; } } 59 | .icon-basic-globe { &:before { content: "S"; } } 60 | .icon-basic-gunsight { &:before { content: "T"; } } 61 | .icon-basic-hammer { &:before { content: "U"; } } 62 | .icon-basic-headset { &:before { content: "V"; } } 63 | .icon-basic-heart { &:before { content: "W"; } } 64 | .icon-basic-heart-broken { &:before { content: "X"; } } 65 | .icon-basic-helm { &:before { content: "Y"; } } 66 | .icon-basic-home { &:before { content: "Z"; } } 67 | .icon-basic-info { &:before { content: "0"; } } 68 | .icon-basic-ipod { &:before { content: "1"; } } 69 | .icon-basic-joypad { &:before { content: "2"; } } 70 | .icon-basic-key { &:before { content: "3"; } } 71 | .icon-basic-keyboard { &:before { content: "4"; } } 72 | .icon-basic-laptop { &:before { content: "5"; } } 73 | .icon-basic-life-buoy { &:before { content: "6"; } } 74 | .icon-basic-lightbulb { &:before { content: "7"; } } 75 | .icon-basic-link { &:before { content: "8"; } } 76 | .icon-basic-lock { &:before { content: "9"; } } 77 | .icon-basic-lock-open { &:before { content: "!"; } } 78 | .icon-basic-magic-mouse { &:before { content: "\""; } } 79 | .icon-basic-magnifier { &:before { content: "#"; } } 80 | .icon-basic-magnifier-minus { &:before { content: "$"; } } 81 | .icon-basic-magnifier-plus { &:before { content: "%"; } } 82 | .icon-basic-mail { &:before { content: "&"; } } 83 | .icon-basic-mail-multiple { &:before { content: "'"; } } 84 | .icon-basic-mail-open { &:before { content: "("; } } 85 | .icon-basic-mail-open-text { &:before { content: ")"; } } 86 | .icon-basic-male { &:before { content: "*"; } } 87 | .icon-basic-map { &:before { content: "+"; } } 88 | .icon-basic-message { &:before { content: ","; } } 89 | .icon-basic-message-multiple { &:before { content: "-"; } } 90 | .icon-basic-message-txt { &:before { content: "."; } } 91 | .icon-basic-mixer2 { &:before { content: "/"; } } 92 | .icon-basic-mouse { &:before { content: ":"; } } 93 | .icon-basic-notebook { &:before { content: ";"; } } 94 | .icon-basic-notebook-pen { &:before { content: "<"; } } 95 | .icon-basic-notebook-pencil { &:before { content: "="; } } 96 | .icon-basic-paperplane { &:before { content: ">"; } } 97 | .icon-basic-pencil-ruler { &:before { content: "?"; } } 98 | .icon-basic-pencil-ruler-pen { &:before { content: "@"; } } 99 | .icon-basic-photo { &:before { content: "["; } } 100 | .icon-basic-picture { &:before { content: "]"; } } 101 | .icon-basic-picture-multiple { &:before { content: "^"; } } 102 | .icon-basic-pin1 { &:before { content: "_"; } } 103 | .icon-basic-pin2 { &:before { content: "`"; } } 104 | .icon-basic-postcard { &:before { content: "{"; } } 105 | .icon-basic-postcard-multiple { &:before { content: "|"; } } 106 | .icon-basic-printer { &:before { content: "} }"; } } 107 | .icon-basic-question { &:before { content: "~"; } } 108 | .icon-basic-rss { &:before { content: "\\"; } } 109 | .icon-basic-server { &:before { content: "\e000"; } } 110 | .icon-basic-server2 { &:before { content: "\e001"; } } 111 | .icon-basic-server-cloud { &:before { content: "\e002"; } } 112 | .icon-basic-server-download { &:before { content: "\e003"; } } 113 | .icon-basic-server-upload { &:before { content: "\e004"; } } 114 | .icon-basic-settings { &:before { content: "\e005"; } } 115 | .icon-basic-share { &:before { content: "\e006"; } } 116 | .icon-basic-sheet { &:before { content: "\e007"; } } 117 | .icon-basic-sheet-multiple { &:before { content: "\e008"; } } 118 | .icon-basic-sheet-pen { &:before { content: "\e009"; } } 119 | .icon-basic-sheet-pencil { &:before { content: "\e00a"; } } 120 | .icon-basic-sheet-txt { &:before { content: "\e00b"; } } 121 | .icon-basic-signs { &:before { content: "\e00c"; } } 122 | .icon-basic-smartphone { &:before { content: "\e00d"; } } 123 | .icon-basic-spades { &:before { content: "\e00e"; } } 124 | .icon-basic-spread { &:before { content: "\e00f"; } } 125 | .icon-basic-spread-bookmark { &:before { content: "\e010"; } } 126 | .icon-basic-spread-text { &:before { content: "\e011"; } } 127 | .icon-basic-spread-text-bookmark { &:before { content: "\e012"; } } 128 | .icon-basic-star { &:before { content: "\e013"; } } 129 | .icon-basic-tablet { &:before { content: "\e014"; } } 130 | .icon-basic-target { &:before { content: "\e015"; } } 131 | .icon-basic-todo { &:before { content: "\e016"; } } 132 | .icon-basic-todo-pen { &:before { content: "\e017"; } } 133 | .icon-basic-todo-pencil { &:before { content: "\e018"; } } 134 | .icon-basic-todo-txt { &:before { content: "\e019"; } } 135 | .icon-basic-todolist-pen { &:before { content: "\e01a"; } } 136 | .icon-basic-todolist-pencil { &:before { content: "\e01b"; } } 137 | .icon-basic-trashcan { &:before { content: "\e01c"; } } 138 | .icon-basic-trashcan-full { &:before { content: "\e01d"; } } 139 | .icon-basic-trashcan-refresh { &:before { content: "\e01e"; } } 140 | .icon-basic-trashcan-remove { &:before { content: "\e01f"; } } 141 | .icon-basic-upload { &:before { content: "\e020"; } } 142 | .icon-basic-usb { &:before { content: "\e021"; } } 143 | .icon-basic-video { &:before { content: "\e022"; } } 144 | .icon-basic-watch { &:before { content: "\e023"; } } 145 | .icon-basic-webpage { &:before { content: "\e024"; } } 146 | .icon-basic-webpage-img-txt { &:before { content: "\e025"; } } 147 | .icon-basic-webpage-multiple { &:before { content: "\e026"; } } 148 | .icon-basic-webpage-txt { &:before { content: "\e027"; } } 149 | .icon-basic-world { &:before { content: "\e028"; } } 150 | -------------------------------------------------------------------------------- /icons/_basic_elaboration.scss: -------------------------------------------------------------------------------- 1 | $icon_basic-elaboration_path: 'basic_elaboration/'; 2 | $icon_basic-elaboration_name: 'linea-basic-elaboration-10'; 3 | $icon_basic-elaboration_short: 'basic-elaboration'; 4 | 5 | @font-face { 6 | @include icon-font-face($icon_basic-elaboration_name, $icon_basic-elaboration_path) 7 | } 8 | 9 | [class^="icon-#{$icon_basic-elaboration_short}"], 10 | [class*="icon-#{$icon_basic-elaboration_short}"] { 11 | font-family: $icon_basic-elaboration_name; 12 | @include ico-font-base; 13 | } 14 | 15 | .icon-basic-elaboration-bookmark-checck { &:before { content: "a"; } } 16 | .icon-basic-elaboration-bookmark-minus { &:before { content: "b"; } } 17 | .icon-basic-elaboration-bookmark-plus { &:before { content: "c"; } } 18 | .icon-basic-elaboration-bookmark-remove { &:before { content: "d"; } } 19 | .icon-basic-elaboration-briefcase-check { &:before { content: "e"; } } 20 | .icon-basic-elaboration-briefcase-download { &:before { content: "f"; } } 21 | .icon-basic-elaboration-briefcase-flagged { &:before { content: "g"; } } 22 | .icon-basic-elaboration-briefcase-minus { &:before { content: "h"; } } 23 | .icon-basic-elaboration-briefcase-plus { &:before { content: "i"; } } 24 | .icon-basic-elaboration-briefcase-refresh { &:before { content: "j"; } } 25 | .icon-basic-elaboration-briefcase-remove { &:before { content: "k"; } } 26 | .icon-basic-elaboration-briefcase-search { &:before { content: "l"; } } 27 | .icon-basic-elaboration-briefcase-star { &:before { content: "m"; } } 28 | .icon-basic-elaboration-briefcase-upload { &:before { content: "n"; } } 29 | .icon-basic-elaboration-browser-check { &:before { content: "o"; } } 30 | .icon-basic-elaboration-browser-download { &:before { content: "p"; } } 31 | .icon-basic-elaboration-browser-minus { &:before { content: "q"; } } 32 | .icon-basic-elaboration-browser-plus { &:before { content: "r"; } } 33 | .icon-basic-elaboration-browser-refresh { &:before { content: "s"; } } 34 | .icon-basic-elaboration-browser-remove { &:before { content: "t"; } } 35 | .icon-basic-elaboration-browser-search { &:before { content: "u"; } } 36 | .icon-basic-elaboration-browser-star { &:before { content: "v"; } } 37 | .icon-basic-elaboration-browser-upload { &:before { content: "w"; } } 38 | .icon-basic-elaboration-calendar-check { &:before { content: "x"; } } 39 | .icon-basic-elaboration-calendar-cloud { &:before { content: "y"; } } 40 | .icon-basic-elaboration-calendar-download { &:before { content: "z"; } } 41 | .icon-basic-elaboration-calendar-empty { &:before { content: "A"; } } 42 | .icon-basic-elaboration-calendar-flagged { &:before { content: "B"; } } 43 | .icon-basic-elaboration-calendar-heart { &:before { content: "C"; } } 44 | .icon-basic-elaboration-calendar-minus { &:before { content: "D"; } } 45 | .icon-basic-elaboration-calendar-next { &:before { content: "E"; } } 46 | .icon-basic-elaboration-calendar-noaccess { &:before { content: "F"; } } 47 | .icon-basic-elaboration-calendar-pencil { &:before { content: "G"; } } 48 | .icon-basic-elaboration-calendar-plus { &:before { content: "H"; } } 49 | .icon-basic-elaboration-calendar-previous { &:before { content: "I"; } } 50 | .icon-basic-elaboration-calendar-refresh { &:before { content: "J"; } } 51 | .icon-basic-elaboration-calendar-remove { &:before { content: "K"; } } 52 | .icon-basic-elaboration-calendar-search { &:before { content: "L"; } } 53 | .icon-basic-elaboration-calendar-star { &:before { content: "M"; } } 54 | .icon-basic-elaboration-calendar-upload { &:before { content: "N"; } } 55 | .icon-basic-elaboration-cloud-check { &:before { content: "O"; } } 56 | .icon-basic-elaboration-cloud-download { &:before { content: "P"; } } 57 | .icon-basic-elaboration-cloud-minus { &:before { content: "Q"; } } 58 | .icon-basic-elaboration-cloud-noaccess { &:before { content: "R"; } } 59 | .icon-basic-elaboration-cloud-plus { &:before { content: "S"; } } 60 | .icon-basic-elaboration-cloud-refresh { &:before { content: "T"; } } 61 | .icon-basic-elaboration-cloud-remove { &:before { content: "U"; } } 62 | .icon-basic-elaboration-cloud-search { &:before { content: "V"; } } 63 | .icon-basic-elaboration-cloud-upload { &:before { content: "W"; } } 64 | .icon-basic-elaboration-document-check { &:before { content: "X"; } } 65 | .icon-basic-elaboration-document-cloud { &:before { content: "Y"; } } 66 | .icon-basic-elaboration-document-download { &:before { content: "Z"; } } 67 | .icon-basic-elaboration-document-flagged { &:before { content: "0"; } } 68 | .icon-basic-elaboration-document-graph { &:before { content: "1"; } } 69 | .icon-basic-elaboration-document-heart { &:before { content: "2"; } } 70 | .icon-basic-elaboration-document-minus { &:before { content: "3"; } } 71 | .icon-basic-elaboration-document-next { &:before { content: "4"; } } 72 | .icon-basic-elaboration-document-noaccess { &:before { content: "5"; } } 73 | .icon-basic-elaboration-document-note { &:before { content: "6"; } } 74 | .icon-basic-elaboration-document-pencil { &:before { content: "7"; } } 75 | .icon-basic-elaboration-document-picture { &:before { content: "8"; } } 76 | .icon-basic-elaboration-document-plus { &:before { content: "9"; } } 77 | .icon-basic-elaboration-document-previous { &:before { content: "!"; } } 78 | .icon-basic-elaboration-document-refresh { &:before { content: "\""; } } 79 | .icon-basic-elaboration-document-remove { &:before { content: "#"; } } 80 | .icon-basic-elaboration-document-search { &:before { content: "$"; } } 81 | .icon-basic-elaboration-document-star { &:before { content: "%"; } } 82 | .icon-basic-elaboration-document-upload { &:before { content: "&"; } } 83 | .icon-basic-elaboration-folder-check { &:before { content: "'"; } } 84 | .icon-basic-elaboration-folder-cloud { &:before { content: "("; } } 85 | .icon-basic-elaboration-folder-document { &:before { content: ")"; } } 86 | .icon-basic-elaboration-folder-download { &:before { content: "*"; } } 87 | .icon-basic-elaboration-folder-flagged { &:before { content: "+"; } } 88 | .icon-basic-elaboration-folder-graph { &:before { content: ","; } } 89 | .icon-basic-elaboration-folder-heart { &:before { content: "-"; } } 90 | .icon-basic-elaboration-folder-minus { &:before { content: "."; } } 91 | .icon-basic-elaboration-folder-next { &:before { content: "/"; } } 92 | .icon-basic-elaboration-folder-noaccess { &:before { content: ":"; } } 93 | .icon-basic-elaboration-folder-note { &:before { content: ";"; } } 94 | .icon-basic-elaboration-folder-pencil { &:before { content: "<"; } } 95 | .icon-basic-elaboration-folder-picture { &:before { content: "="; } } 96 | .icon-basic-elaboration-folder-plus { &:before { content: ">"; } } 97 | .icon-basic-elaboration-folder-previous { &:before { content: "?"; } } 98 | .icon-basic-elaboration-folder-refresh { &:before { content: "@"; } } 99 | .icon-basic-elaboration-folder-remove { &:before { content: "["; } } 100 | .icon-basic-elaboration-folder-search { &:before { content: "]"; } } 101 | .icon-basic-elaboration-folder-star { &:before { content: "^"; } } 102 | .icon-basic-elaboration-folder-upload { &:before { content: "_"; } } 103 | .icon-basic-elaboration-mail-check { &:before { content: "`"; } } 104 | .icon-basic-elaboration-mail-cloud { &:before { content: "{"; } } 105 | .icon-basic-elaboration-mail-document { &:before { content: "|"; } } 106 | .icon-basic-elaboration-mail-download { &:before { content: "}"; } } 107 | .icon-basic-elaboration-mail-flagged { &:before { content: "~"; } } 108 | .icon-basic-elaboration-mail-heart { &:before { content: "\\"; } } 109 | .icon-basic-elaboration-mail-next { &:before { content: "\e000"; } } 110 | .icon-basic-elaboration-mail-noaccess { &:before { content: "\e001"; } } 111 | .icon-basic-elaboration-mail-note { &:before { content: "\e002"; } } 112 | .icon-basic-elaboration-mail-pencil { &:before { content: "\e003"; } } 113 | .icon-basic-elaboration-mail-picture { &:before { content: "\e004"; } } 114 | .icon-basic-elaboration-mail-previous { &:before { content: "\e005"; } } 115 | .icon-basic-elaboration-mail-refresh { &:before { content: "\e006"; } } 116 | .icon-basic-elaboration-mail-remove { &:before { content: "\e007"; } } 117 | .icon-basic-elaboration-mail-search { &:before { content: "\e008"; } } 118 | .icon-basic-elaboration-mail-star { &:before { content: "\e009"; } } 119 | .icon-basic-elaboration-mail-upload { &:before { content: "\e00a"; } } 120 | .icon-basic-elaboration-message-check { &:before { content: "\e00b"; } } 121 | .icon-basic-elaboration-message-dots { &:before { content: "\e00c"; } } 122 | .icon-basic-elaboration-message-happy { &:before { content: "\e00d"; } } 123 | .icon-basic-elaboration-message-heart { &:before { content: "\e00e"; } } 124 | .icon-basic-elaboration-message-minus { &:before { content: "\e00f"; } } 125 | .icon-basic-elaboration-message-note { &:before { content: "\e010"; } } 126 | .icon-basic-elaboration-message-plus { &:before { content: "\e011"; } } 127 | .icon-basic-elaboration-message-refresh { &:before { content: "\e012"; } } 128 | .icon-basic-elaboration-message-remove { &:before { content: "\e013"; } } 129 | .icon-basic-elaboration-message-sad { &:before { content: "\e014"; } } 130 | .icon-basic-elaboration-smartphone-cloud { &:before { content: "\e015"; } } 131 | .icon-basic-elaboration-smartphone-heart { &:before { content: "\e016"; } } 132 | .icon-basic-elaboration-smartphone-noaccess { &:before { content: "\e017"; } } 133 | .icon-basic-elaboration-smartphone-note { &:before { content: "\e018"; } } 134 | .icon-basic-elaboration-smartphone-pencil { &:before { content: "\e019"; } } 135 | .icon-basic-elaboration-smartphone-picture { &:before { content: "\e01a"; } } 136 | .icon-basic-elaboration-smartphone-refresh { &:before { content: "\e01b"; } } 137 | .icon-basic-elaboration-smartphone-search { &:before { content: "\e01c"; } } 138 | .icon-basic-elaboration-tablet-cloud { &:before { content: "\e01d"; } } 139 | .icon-basic-elaboration-tablet-heart { &:before { content: "\e01e"; } } 140 | .icon-basic-elaboration-tablet-noaccess { &:before { content: "\e01f"; } } 141 | .icon-basic-elaboration-tablet-note { &:before { content: "\e020"; } } 142 | .icon-basic-elaboration-tablet-pencil { &:before { content: "\e021"; } } 143 | .icon-basic-elaboration-tablet-picture { &:before { content: "\e022"; } } 144 | .icon-basic-elaboration-tablet-refresh { &:before { content: "\e023"; } } 145 | .icon-basic-elaboration-tablet-search { &:before { content: "\e024"; } } 146 | .icon-basic-elaboration-todolist-2 { &:before { content: "\e025"; } } 147 | .icon-basic-elaboration-todolist-check { &:before { content: "\e026"; } } 148 | .icon-basic-elaboration-todolist-cloud { &:before { content: "\e027"; } } 149 | .icon-basic-elaboration-todolist-download { &:before { content: "\e028"; } } 150 | .icon-basic-elaboration-todolist-flagged { &:before { content: "\e029"; } } 151 | .icon-basic-elaboration-todolist-minus { &:before { content: "\e02a"; } } 152 | .icon-basic-elaboration-todolist-noaccess { &:before { content: "\e02b"; } } 153 | .icon-basic-elaboration-todolist-pencil { &:before { content: "\e02c"; } } 154 | .icon-basic-elaboration-todolist-plus { &:before { content: "\e02d"; } } 155 | .icon-basic-elaboration-todolist-refresh { &:before { content: "\e02e"; } } 156 | .icon-basic-elaboration-todolist-remove { &:before { content: "\e02f"; } } 157 | .icon-basic-elaboration-todolist-search { &:before { content: "\e030"; } } 158 | .icon-basic-elaboration-todolist-star { &:before { content: "\e031"; } } 159 | .icon-basic-elaboration-todolist-upload { &:before { content: "\e032"; } } 160 | -------------------------------------------------------------------------------- /fonts/music/linea-music-10.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Generated by Fontastic.me 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /fonts/software/linea-software-10.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Generated by Fontastic.me 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | -------------------------------------------------------------------------------- /fonts/arrows/linea-arrows-10.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Generated by Fontastic.me 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | -------------------------------------------------------------------------------- /fonts/ecommerce/linea-ecommerce-10.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Generated by Fontastic.me 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | --------------------------------------------------------------------------------