├── .gitignore ├── dist ├── icons.eot ├── icons.ttf ├── icons.woff ├── icons.json └── icons.css ├── package.json ├── icons ├── asp.svg ├── bash.svg ├── vue.svg ├── haskell.svg ├── windows.svg ├── angular.svg ├── c.svg ├── socketio.svg ├── unity.svg ├── js.svg ├── mvc.svg ├── travis.svg ├── swift.svg ├── ansible.svg ├── ruby.svg ├── erlang.svg ├── aws.svg ├── spring.svg ├── csharp.svg ├── nginx.svg ├── heroku.svg ├── akka.svg ├── django.svg ├── handlebars.svg ├── spark.svg ├── sql.svg ├── cplusplus.svg ├── jquery.svg ├── gulp.svg ├── javascript.svg ├── mongo.svg ├── backbone.svg ├── git.svg ├── r.svg ├── ios.svg ├── yii.svg ├── php.svg ├── lisp.svg ├── websockets.svg ├── agile.svg ├── meteor.svg ├── aurelia.svg ├── expressjs.svg ├── python.svg ├── d3.svg ├── bootstrap.svg ├── android.svg ├── codeigniter.svg ├── rails.svg ├── mustache.svg ├── illustrator.svg ├── sass.svg ├── puppet.svg ├── nodejs.svg ├── typescript.svg ├── scala.svg ├── inkscape.svg ├── net.svg ├── powershell.svg ├── photoshop.svg ├── lavarel.svg ├── drupal.svg ├── docker.svg ├── svg.svg ├── symphony.svg ├── coffeescript.svg ├── zend.svg ├── less.svg ├── stylus.svg ├── nosql.svg ├── clojure.svg ├── redis.svg ├── bower.svg ├── chef.svg ├── mysql.svg ├── unix.svg ├── perl.svg ├── rust.svg ├── react.svg ├── grunt.svg ├── java.svg ├── go.svg ├── foundation.svg ├── apache.svg └── sql-server.svg ├── README.md └── template └── index.hbs /.gitignore: -------------------------------------------------------------------------------- 1 | # Node 2 | node_modules 3 | npm-debug.log 4 | 5 | # OSX 6 | **/.DS_Store -------------------------------------------------------------------------------- /dist/icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Workshape/tech-icons/HEAD/dist/icons.eot -------------------------------------------------------------------------------- /dist/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Workshape/tech-icons/HEAD/dist/icons.ttf -------------------------------------------------------------------------------- /dist/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Workshape/tech-icons/HEAD/dist/icons.woff -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "tech-icons", 3 | "version": "1.0.0", 4 | "main": "index.js", 5 | "scripts": { 6 | "build": "icon-font-generator icons/*.svg -o dist --htmltp template/index.hbs -p icon-tech" 7 | }, 8 | "author": "Tancredi Trugenberger", 9 | "license": "", 10 | "description": "An icon-font for tech skills", 11 | "devDependencies": { 12 | "icon-font-generator": "^1.0.2" 13 | } 14 | } -------------------------------------------------------------------------------- /icons/asp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /icons/bash.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /icons/vue.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /icons/haskell.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /icons/windows.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /icons/angular.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /icons/c.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /icons/socketio.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /icons/unity.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /icons/js.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 10 | 11 | -------------------------------------------------------------------------------- /icons/mvc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /icons/travis.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 10 | 11 | -------------------------------------------------------------------------------- /icons/swift.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 10 | 11 | -------------------------------------------------------------------------------- /icons/ansible.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /icons/ruby.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 10 | 11 | -------------------------------------------------------------------------------- /icons/erlang.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /icons/aws.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 11 | 12 | -------------------------------------------------------------------------------- /icons/spring.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /icons/csharp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /icons/nginx.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /icons/heroku.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 12 | 13 | -------------------------------------------------------------------------------- /icons/akka.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /icons/django.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Tech icons set 2 | 3 | ![Icon set preview](http://i.cubeupload.com/HnFzZG.png) 4 | 5 | > A collection of SVG icons representing programming languages, frameworks, technologies and skills, ready-built as a web font 6 | 7 | View the full set [here](http://workshape.github.io/tech-icons/index.html) 8 | 9 | #### Download 10 | 11 | You can use the ready-built webfont by copying the build in the `dist` folder over to your project and importing `icons.css` into your HTML. 12 | 13 | #### Use 14 | 15 | To create an icon in your markup, create an `i` tag with classname `icon-tech-[ icon_name ]` 16 | 17 | For example: 18 | 19 | ```html 20 | 21 | ``` 22 | 23 | #### Build 24 | 25 | You can add or modify SVG icons to the projects by copying them in the `icons` directory - Note: SVGS must be single-color and sized 48x48px. 26 | 27 | You can rebuild the codebase by running 28 | 29 | ``` 30 | npm run build 31 | ``` 32 | 33 | The `dist` directory gets built using [icon-font-generator](https://github.com/Workshape/icon-font-generator) 34 | 35 | #### Contribute 36 | 37 | We'd love to add more icons to the set - pull requests are welcome! 38 | -------------------------------------------------------------------------------- /icons/handlebars.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 12 | 13 | -------------------------------------------------------------------------------- /icons/spark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 12 | 13 | -------------------------------------------------------------------------------- /icons/sql.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 12 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /icons/cplusplus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 12 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /icons/jquery.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 12 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /icons/gulp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 12 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /icons/javascript.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /icons/mongo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 10 | 12 | 14 | 15 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /icons/backbone.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 13 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /icons/git.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /icons/r.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 14 | 15 | -------------------------------------------------------------------------------- /icons/ios.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 14 | 15 | -------------------------------------------------------------------------------- /icons/yii.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 14 | 15 | -------------------------------------------------------------------------------- /icons/php.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 10 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /icons/lisp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /icons/websockets.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 14 | 15 | -------------------------------------------------------------------------------- /icons/agile.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /icons/meteor.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 12 | 13 | 14 | 16 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /icons/aurelia.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /icons/expressjs.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /icons/python.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /icons/d3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 13 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /icons/bootstrap.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 16 | 17 | -------------------------------------------------------------------------------- /icons/android.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 17 | 18 | -------------------------------------------------------------------------------- /icons/codeigniter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 17 | 18 | -------------------------------------------------------------------------------- /icons/rails.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 17 | 18 | -------------------------------------------------------------------------------- /icons/mustache.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /icons/illustrator.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 18 | 19 | -------------------------------------------------------------------------------- /icons/sass.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /icons/puppet.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 11 | 12 | 15 | 16 | 19 | 20 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /icons/nodejs.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 15 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /icons/typescript.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /icons/scala.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 21 | 22 | -------------------------------------------------------------------------------- /icons/inkscape.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 22 | 23 | -------------------------------------------------------------------------------- /icons/net.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 22 | 23 | -------------------------------------------------------------------------------- /icons/powershell.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /icons/photoshop.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 23 | 24 | -------------------------------------------------------------------------------- /icons/lavarel.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 14 | 18 | 22 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /icons/drupal.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 25 | 26 | -------------------------------------------------------------------------------- /icons/docker.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 22 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /icons/svg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 24 | 25 | -------------------------------------------------------------------------------- /icons/symphony.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 25 | 26 | -------------------------------------------------------------------------------- /icons/coffeescript.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 13 | 18 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /icons/zend.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 25 | 26 | -------------------------------------------------------------------------------- /dist/icons.json: -------------------------------------------------------------------------------- 1 | { 2 | "tech-agile": "\\f101", 3 | "tech-akka": "\\f102", 4 | "tech-android": "\\f103", 5 | "tech-angular": "\\f104", 6 | "tech-ansible": "\\f105", 7 | "tech-apache": "\\f106", 8 | "tech-asp": "\\f107", 9 | "tech-aurelia": "\\f108", 10 | "tech-aws": "\\f109", 11 | "tech-backbone": "\\f10a", 12 | "tech-bash": "\\f10b", 13 | "tech-bootstrap": "\\f10c", 14 | "tech-bower": "\\f10d", 15 | "tech-c": "\\f10e", 16 | "tech-chef": "\\f10f", 17 | "tech-clojure": "\\f110", 18 | "tech-codeigniter": "\\f111", 19 | "tech-coffeescript": "\\f112", 20 | "tech-cplusplus": "\\f113", 21 | "tech-csharp": "\\f114", 22 | "tech-d3": "\\f115", 23 | "tech-django": "\\f116", 24 | "tech-docker": "\\f117", 25 | "tech-drupal": "\\f118", 26 | "tech-erlang": "\\f119", 27 | "tech-expressjs": "\\f11a", 28 | "tech-foundation": "\\f11b", 29 | "tech-git": "\\f11c", 30 | "tech-go": "\\f11d", 31 | "tech-grunt": "\\f11e", 32 | "tech-gulp": "\\f11f", 33 | "tech-hadoop": "\\f120", 34 | "tech-handlebars": "\\f121", 35 | "tech-haskell": "\\f122", 36 | "tech-heroku": "\\f123", 37 | "tech-illustrator": "\\f124", 38 | "tech-inkscape": "\\f125", 39 | "tech-ios": "\\f126", 40 | "tech-java": "\\f127", 41 | "tech-javascript": "\\f128", 42 | "tech-jquery": "\\f129", 43 | "tech-js": "\\f12a", 44 | "tech-lavarel": "\\f12b", 45 | "tech-less": "\\f12c", 46 | "tech-lisp": "\\f12d", 47 | "tech-meteor": "\\f12e", 48 | "tech-mongo": "\\f12f", 49 | "tech-mustache": "\\f130", 50 | "tech-mvc": "\\f131", 51 | "tech-mysql": "\\f132", 52 | "tech-net": "\\f133", 53 | "tech-nginx": "\\f134", 54 | "tech-nodejs": "\\f135", 55 | "tech-nosql": "\\f136", 56 | "tech-perl": "\\f137", 57 | "tech-photoshop": "\\f138", 58 | "tech-php": "\\f139", 59 | "tech-postgres": "\\f13a", 60 | "tech-powershell": "\\f13b", 61 | "tech-puppet": "\\f13c", 62 | "tech-python": "\\f13d", 63 | "tech-r": "\\f13e", 64 | "tech-rails": "\\f13f", 65 | "tech-react": "\\f140", 66 | "tech-redis": "\\f141", 67 | "tech-ruby": "\\f142", 68 | "tech-rust": "\\f143", 69 | "tech-sass": "\\f144", 70 | "tech-scala": "\\f145", 71 | "tech-socketio": "\\f146", 72 | "tech-spark": "\\f147", 73 | "tech-spring": "\\f148", 74 | "tech-sql-server": "\\f149", 75 | "tech-sql": "\\f14a", 76 | "tech-stylus": "\\f14b", 77 | "tech-svg": "\\f14c", 78 | "tech-swift": "\\f14d", 79 | "tech-symphony": "\\f14e", 80 | "tech-travis": "\\f14f", 81 | "tech-typescript": "\\f150", 82 | "tech-unity": "\\f151", 83 | "tech-unix": "\\f152", 84 | "tech-vue": "\\f153", 85 | "tech-websockets": "\\f154", 86 | "tech-windows": "\\f155", 87 | "tech-yii": "\\f156", 88 | "tech-zend": "\\f157" 89 | } -------------------------------------------------------------------------------- /icons/less.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 27 | 28 | -------------------------------------------------------------------------------- /icons/stylus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 18 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /icons/nosql.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 28 | 29 | -------------------------------------------------------------------------------- /icons/clojure.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 17 | 23 | 27 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /icons/redis.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 30 | 31 | -------------------------------------------------------------------------------- /icons/bower.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 31 | 32 | -------------------------------------------------------------------------------- /icons/chef.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 13 | 14 | 15 | 22 | 24 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /icons/mysql.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /icons/unix.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 37 | 38 | -------------------------------------------------------------------------------- /icons/perl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 39 | 40 | -------------------------------------------------------------------------------- /icons/rust.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 44 | 45 | -------------------------------------------------------------------------------- /template/index.hbs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {{ fontName }} 6 | 118 | 119 | 120 | 121 |
122 | 123 |

Tech icons set

124 | 125 | {{# each names }} 126 | 127 |
128 | 129 | <{{ ../baseTag }} class="{{ ../classPrefix }}{{ this }}"> 130 | 131 |
132 | {{ this }} 133 |
134 | 135 | {{/ each }} 136 | 137 | 147 | 148 |
149 | 150 | 151 | -------------------------------------------------------------------------------- /icons/react.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /icons/grunt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 47 | 48 | -------------------------------------------------------------------------------- /icons/java.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 54 | 55 | -------------------------------------------------------------------------------- /dist/icons.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: "icons"; 3 | src: url("icons.eot?e1691f6941de043822be6fd061cae33a?#iefix") format("embedded-opentype"), 4 | url("icons.woff?e1691f6941de043822be6fd061cae33a") format("woff"), 5 | url("icons.ttf?e1691f6941de043822be6fd061cae33a") format("truetype"), 6 | url("icons.svg?e1691f6941de043822be6fd061cae33a#icons") format("svg"); 7 | } 8 | 9 | i { 10 | line-height: 1; 11 | } 12 | 13 | i:before { 14 | font-family: icons !important; 15 | font-style: normal; 16 | font-weight: normal !important; 17 | vertical-align: top; 18 | } 19 | 20 | .icon-tech-agile:before { 21 | content: "\f101"; 22 | } 23 | .icon-tech-akka:before { 24 | content: "\f102"; 25 | } 26 | .icon-tech-android:before { 27 | content: "\f103"; 28 | } 29 | .icon-tech-angular:before { 30 | content: "\f104"; 31 | } 32 | .icon-tech-ansible:before { 33 | content: "\f105"; 34 | } 35 | .icon-tech-apache:before { 36 | content: "\f106"; 37 | } 38 | .icon-tech-asp:before { 39 | content: "\f107"; 40 | } 41 | .icon-tech-aurelia:before { 42 | content: "\f108"; 43 | } 44 | .icon-tech-aws:before { 45 | content: "\f109"; 46 | } 47 | .icon-tech-backbone:before { 48 | content: "\f10a"; 49 | } 50 | .icon-tech-bash:before { 51 | content: "\f10b"; 52 | } 53 | .icon-tech-bootstrap:before { 54 | content: "\f10c"; 55 | } 56 | .icon-tech-bower:before { 57 | content: "\f10d"; 58 | } 59 | .icon-tech-c:before { 60 | content: "\f10e"; 61 | } 62 | .icon-tech-chef:before { 63 | content: "\f10f"; 64 | } 65 | .icon-tech-clojure:before { 66 | content: "\f110"; 67 | } 68 | .icon-tech-codeigniter:before { 69 | content: "\f111"; 70 | } 71 | .icon-tech-coffeescript:before { 72 | content: "\f112"; 73 | } 74 | .icon-tech-cplusplus:before { 75 | content: "\f113"; 76 | } 77 | .icon-tech-csharp:before { 78 | content: "\f114"; 79 | } 80 | .icon-tech-d3:before { 81 | content: "\f115"; 82 | } 83 | .icon-tech-django:before { 84 | content: "\f116"; 85 | } 86 | .icon-tech-docker:before { 87 | content: "\f117"; 88 | } 89 | .icon-tech-drupal:before { 90 | content: "\f118"; 91 | } 92 | .icon-tech-erlang:before { 93 | content: "\f119"; 94 | } 95 | .icon-tech-expressjs:before { 96 | content: "\f11a"; 97 | } 98 | .icon-tech-foundation:before { 99 | content: "\f11b"; 100 | } 101 | .icon-tech-git:before { 102 | content: "\f11c"; 103 | } 104 | .icon-tech-go:before { 105 | content: "\f11d"; 106 | } 107 | .icon-tech-grunt:before { 108 | content: "\f11e"; 109 | } 110 | .icon-tech-gulp:before { 111 | content: "\f11f"; 112 | } 113 | .icon-tech-hadoop:before { 114 | content: "\f120"; 115 | } 116 | .icon-tech-handlebars:before { 117 | content: "\f121"; 118 | } 119 | .icon-tech-haskell:before { 120 | content: "\f122"; 121 | } 122 | .icon-tech-heroku:before { 123 | content: "\f123"; 124 | } 125 | .icon-tech-illustrator:before { 126 | content: "\f124"; 127 | } 128 | .icon-tech-inkscape:before { 129 | content: "\f125"; 130 | } 131 | .icon-tech-ios:before { 132 | content: "\f126"; 133 | } 134 | .icon-tech-java:before { 135 | content: "\f127"; 136 | } 137 | .icon-tech-javascript:before { 138 | content: "\f128"; 139 | } 140 | .icon-tech-jquery:before { 141 | content: "\f129"; 142 | } 143 | .icon-tech-js:before { 144 | content: "\f12a"; 145 | } 146 | .icon-tech-lavarel:before { 147 | content: "\f12b"; 148 | } 149 | .icon-tech-less:before { 150 | content: "\f12c"; 151 | } 152 | .icon-tech-lisp:before { 153 | content: "\f12d"; 154 | } 155 | .icon-tech-meteor:before { 156 | content: "\f12e"; 157 | } 158 | .icon-tech-mongo:before { 159 | content: "\f12f"; 160 | } 161 | .icon-tech-mustache:before { 162 | content: "\f130"; 163 | } 164 | .icon-tech-mvc:before { 165 | content: "\f131"; 166 | } 167 | .icon-tech-mysql:before { 168 | content: "\f132"; 169 | } 170 | .icon-tech-net:before { 171 | content: "\f133"; 172 | } 173 | .icon-tech-nginx:before { 174 | content: "\f134"; 175 | } 176 | .icon-tech-nodejs:before { 177 | content: "\f135"; 178 | } 179 | .icon-tech-nosql:before { 180 | content: "\f136"; 181 | } 182 | .icon-tech-perl:before { 183 | content: "\f137"; 184 | } 185 | .icon-tech-photoshop:before { 186 | content: "\f138"; 187 | } 188 | .icon-tech-php:before { 189 | content: "\f139"; 190 | } 191 | .icon-tech-postgres:before { 192 | content: "\f13a"; 193 | } 194 | .icon-tech-powershell:before { 195 | content: "\f13b"; 196 | } 197 | .icon-tech-puppet:before { 198 | content: "\f13c"; 199 | } 200 | .icon-tech-python:before { 201 | content: "\f13d"; 202 | } 203 | .icon-tech-r:before { 204 | content: "\f13e"; 205 | } 206 | .icon-tech-rails:before { 207 | content: "\f13f"; 208 | } 209 | .icon-tech-react:before { 210 | content: "\f140"; 211 | } 212 | .icon-tech-redis:before { 213 | content: "\f141"; 214 | } 215 | .icon-tech-ruby:before { 216 | content: "\f142"; 217 | } 218 | .icon-tech-rust:before { 219 | content: "\f143"; 220 | } 221 | .icon-tech-sass:before { 222 | content: "\f144"; 223 | } 224 | .icon-tech-scala:before { 225 | content: "\f145"; 226 | } 227 | .icon-tech-socketio:before { 228 | content: "\f146"; 229 | } 230 | .icon-tech-spark:before { 231 | content: "\f147"; 232 | } 233 | .icon-tech-spring:before { 234 | content: "\f148"; 235 | } 236 | .icon-tech-sql-server:before { 237 | content: "\f149"; 238 | } 239 | .icon-tech-sql:before { 240 | content: "\f14a"; 241 | } 242 | .icon-tech-stylus:before { 243 | content: "\f14b"; 244 | } 245 | .icon-tech-svg:before { 246 | content: "\f14c"; 247 | } 248 | .icon-tech-swift:before { 249 | content: "\f14d"; 250 | } 251 | .icon-tech-symphony:before { 252 | content: "\f14e"; 253 | } 254 | .icon-tech-travis:before { 255 | content: "\f14f"; 256 | } 257 | .icon-tech-typescript:before { 258 | content: "\f150"; 259 | } 260 | .icon-tech-unity:before { 261 | content: "\f151"; 262 | } 263 | .icon-tech-unix:before { 264 | content: "\f152"; 265 | } 266 | .icon-tech-vue:before { 267 | content: "\f153"; 268 | } 269 | .icon-tech-websockets:before { 270 | content: "\f154"; 271 | } 272 | .icon-tech-windows:before { 273 | content: "\f155"; 274 | } 275 | .icon-tech-yii:before { 276 | content: "\f156"; 277 | } 278 | .icon-tech-zend:before { 279 | content: "\f157"; 280 | } 281 | -------------------------------------------------------------------------------- /icons/go.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 12 | 15 | 32 | 49 | 66 | 68 | 70 | 71 | 72 | -------------------------------------------------------------------------------- /icons/foundation.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 75 | 76 | -------------------------------------------------------------------------------- /icons/apache.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 97 | 98 | -------------------------------------------------------------------------------- /icons/sql-server.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 122 | 123 | --------------------------------------------------------------------------------