All Projects → xtoolkit → Micon

xtoolkit / Micon

Licence: mit
Micon, The iconic windows 10 font and CSS toolkit.

Projects that are alternatives of or similar to Micon

Unicons
1000+ Pixel-perfect vector icons and Iconfont for your next project.
Stars: ✭ 911 (+400.55%)
Mutual labels:  font, icons
Linearicons
Linearicons is the highest quality set of line icons, matching with minimalist UI designs in iOS.
Stars: ✭ 64 (-64.84%)
Mutual labels:  font, icons
Font Awesome Php
A PHP library for Font Awesome 4.7.
Stars: ✭ 47 (-74.18%)
Mutual labels:  font, icons
Openwebicons
A font!
Stars: ✭ 835 (+358.79%)
Mutual labels:  font, icons
Yii2 Fontawesome
Asset Bundle for Yii2 with Font Awesome http://fortawesome.github.io/Font-Awesome/
Stars: ✭ 149 (-18.13%)
Mutual labels:  font, icons
Craft3 Iconpicker
Craft plugin that provides a new field type that offers end users an easy way to pick an icon from a .woff or .ttf font file. You can easily use ionicons or font awesome icons or any other compatible font file.
Stars: ✭ 15 (-91.76%)
Mutual labels:  font, icons
Govicons
🇺🇸 US Government themed icons and CSS toolkit
Stars: ✭ 60 (-67.03%)
Mutual labels:  font, icons
Qtawesome
QtAwesome - Font Awesome support for Qt applications
Stars: ✭ 430 (+136.26%)
Mutual labels:  font, icons
Coreui Icons
CoreUI Free Icons - Premium designed free icon set with marks in SVG, Webfont and raster formats
Stars: ✭ 1,813 (+896.15%)
Mutual labels:  font, icons
Awesome Stock Resources
🌇 A collection of links for free stock photography, video and Illustration websites
Stars: ✭ 10,162 (+5483.52%)
Mutual labels:  font, icons
Font Awesome Swift
Font Awesome swift library for iOS.
Stars: ✭ 743 (+308.24%)
Mutual labels:  font, icons
Webfont
Awesome generator of webfont
Stars: ✭ 170 (-6.59%)
Mutual labels:  font, icons
Alfred Font Awesome Workflow
🎩 Font Awesome workflow for Alfred
Stars: ✭ 714 (+292.31%)
Mutual labels:  font, icons
Get Social Social Media Font
Font Based Social Media Icon Set
Stars: ✭ 15 (-91.76%)
Mutual labels:  font, icons
Academicons
An icon font for academics
Stars: ✭ 541 (+197.25%)
Mutual labels:  font, icons
Swifticonfont
Icons fonts for iOS (Font Awesome 5, Iconic, Ionicon, Octicon, Themify, MapIcon, MaterialIcon, Foundation 3, Elegant Icon, Captain Icon)
Stars: ✭ 1,094 (+501.1%)
Mutual labels:  font, icons
Devicon
Set of icons representing programming languages, designing & development tools
Stars: ✭ 4,536 (+2392.31%)
Mutual labels:  font, icons
Bootstrap Iconpicker
A simple icon picker
Stars: ✭ 344 (+89.01%)
Mutual labels:  bower, icons
Font Awesome Stylus
Stylus port for font-awesome 4.7.0
Stars: ✭ 77 (-57.69%)
Mutual labels:  font, icons
Simple Line Icons
Simple and Minimal Line Icons
Stars: ✭ 1,815 (+897.25%)
Mutual labels:  font, icons

Micon Build Status

Micon (MDL2 Icons), The iconic windows 10 font and CSS toolkit.
this icon exracted as segmdl2.ttf in windows 10 and converted too css toolkit based on Font Awesome. Micon icons that can instantly be customized -- size, color, drop shadow, and anything that can be done with the power of CSS.

Online Demo and Documents: http://xtoolkit.github.io/Micon/ (Because i am very busy, online Documents not updated for bower and building)

sry for my bad english

Installation

Quick option: use cdn

You can use cdn. hosted by github page and clouded by Cloudflare example:

<head>
...
<link rel="stylesheet" href="http://cdn.arshen.ir/micon/3.0.168/dist/micon/css/micon.min.css">
...
</head>

Option one: install with bower

To install via Bower, simply do the following:

$ bower install micon --save

Option two: Download repo or builded font

Download last Micon version release from Github

Get started

1- Copy the entire micon-repo/dist/micon/ directory into your project. if you do not use webbrand icon in font, use micon-repo/dist/micon_nb/

2- In the <head> of your html, reference the location to your micon.min.css.
example:

<head>
...
<link rel="stylesheet" href="micon-repo/dist/micon/css/micon.min.css">
...
</head>

use icons in html

example:

<i class="mi mi-Home"></i>
OR
<i class="mi">&#xEC15;</i>

Build Instructions (for make custom font)

This repo already comes with all the files built and ready to go, but can also build the fonts from the source. Requires nodeJs.

Follow these steps to build custom font:

1- install requires Dependencies (gulp, gulp-consolidate, gulp-iconfont, gulp-rename, mustache) with down command.

$ npm install

2- customize your icons from /icons/.
if add new icon, insert icon name in db.json.
example:

{
    ...,
    "svgfilename": {
        "info": {
            "created": "1.0.155" //font-version
        },
        "alias": [
            "aliasname1",
            "aliasname2"
        ]
    }
}

3- customize config.json for your font.

4- customize your scss, less and css template in .templates/. (default use Font-Awesome template Edited by Micon)

5- build your font with down command

$ npm start

6- end, you can see demo your font in /dist/your_fontname/html-demo-your_fontname.html

Page Build Instructions (for make custom your font page)

you can build custom your font page (like Micon github page) with this Instructions

Versioning

Micon will be maintained under the Semantic Versioning guidelines as much as possible. Releases will be numbered with the following format:

<major>.<minor>.<fpatch>

And constructed with the following guidelines:

  • major -> Breaking backward compatibility bumps the major
  • minor -> Bug fixes, New additions
  • fpatch -> Version of segmdl2.ttf

For more information on SemVer, please visit http://semver.org.

Next version

We are thinking of supporting react and vuejs

Change Logs

Version 3.0.168 (14/01/2019)

  • update mdl2 icons version => 168 (October 2018)
    • 350 new icon (35 icon untitled)
    • svg icons get larger
  • update webbrand icons (268 new icon)
  • remove classic create font css
  • use scss compiler for create font css
  • remove sourcemap by default
  • change lodash with mustache
  • update scss and less template to Font-Awesome 5.6.3
  • rename fontname.(scss|less) file to style.(scss|less)
  • move font config from gulpfile.js to config.json file in root
  • icons name db file move to icons pack directory (db.json)
  • rewrite gulpfile.js

Version 2.2.155 (05/01/2017)

  • fix #13 issues
  • fix less compile problem
  • add sourcemap for micon and micon_nb

Version 2.1.155 (29/12/2016)

  • support bower
  • add scss and less template
  • move templates to .templates
  • fix style.css problem

Version 2.0.155 (23/12/2016)

  • add GulpJs for build Micon or Easy create custom font fork Micon icons
  • add webBrand icons
  • add woff2 and otf standard font
  • add html-demo-micon.html for simple portable view icons.
  • update style template
  • fix alias name problem
  • fix some font view probrom (etc height of icons)

Version 1.0.155 (16/08/2016)

  • update icons version => 155 (RedStone)
  • rename icons name with official MDL2 icons name
  • remove woff2 and otf font
  • fixed icon animation problem
  • fixed icon height problem
  • create Change logs page

Version 0.9.136 (12/09/2015)

  • initial build
  • remove duplicate svg path and use css alias

License

Micon is licensed under the MIT license.

Contact

E-mail: [email protected]
Telegram: @Arshen

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].