You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tt-rss/vendor/mervick/material-design-icons
Andrew Dolgov a22ddb2fe0 move material-icons to composer 3 years ago
..
css move material-icons to composer 3 years ago
demo move material-icons to composer 3 years ago
fonts move material-icons to composer 3 years ago
scripts move material-icons to composer 3 years ago
scss move material-icons to composer 3 years ago
.gitignore move material-icons to composer 3 years ago
Gruntfile.js move material-icons to composer 3 years ago
Gulpfile.js move material-icons to composer 3 years ago
LICENSE move material-icons to composer 3 years ago
README.md move material-icons to composer 3 years ago
bower.json move material-icons to composer 3 years ago
component.json move material-icons to composer 3 years ago
composer.json move material-icons to composer 3 years ago
index.js move material-icons to composer 3 years ago
package.json move material-icons to composer 3 years ago

README.md

Material Design Icons

mervick.github.io/material-design-icons

Material design icons are the official icon set from Google that are designed under the material design guidelines.

In the official package the icons uses a typographic feature called ligatures, which allows rendering of an icon glyph simply by using its textual name.

In this repository also implemented the ability to use the icons in the bootstrap-style, like in glyphicon, font-awesome or ionicons.

Installation

You may install this package using Component, Composer, Bower or npm:

  • Component: component install mervick/material-design-icons
  • Composer: composer require mervick/material-design-icons
  • Bower: bower install bootstrap-material-design-icons
  • npm: npm install bootstrap-material-design-icons

Usage

Add to your html page in the head area

<link rel="stylesheet" href="css/material-icons.css">

Where are two ways to use:

  • Ligature, this one is awesome but have some troubles
<i class="material-icons">accessibility</i>
<i class="material-icons">3d_rotation</i>
<i class="material-icons">airline_seat_legroom_reduced</i>
  • Bootstrap-style,
<i class="mdi mdi-accessibility"></i>
<i class="mdi mdi-3d-rotation"></i>
<i class="mdi mdi-airline-seat-legroom-reduced"></i>

Using bootstrap-style, you can also use additional features such as in Font Awesome:

<!-- Inverse -->
<i class="mdi mdi-attachment mdi-inverse"></i>

<!-- Animated --> 
<i class="mdi mdi-attachment mdi-spin"></i>
<i class="mdi mdi-attachment mdi-pulse"></i>

<!-- Fixed width -->
<i class="mdi mdi-attachment mdi-fw"></i>

<!-- Bordered -->
<i class="mdi mdi-attachment mdi-border"></i>

<!-- Pulled -->
<i class="mdi mdi-attachment pull-left"></i>
<i class="mdi mdi-attachment pull-right"></i>

<!-- Sizes -->
<i class="mdi mdi-attachment mdi-lg"></i>
<i class="mdi mdi-attachment mdi-2x"></i>
<i class="mdi mdi-attachment mdi-3x"></i>
<i class="mdi mdi-attachment mdi-4x"></i>
<i class="mdi mdi-attachment mdi-5x"></i>

<!-- Rotations -->
<i class="mdi mdi-attachment mdi-rotate-90"></i>
<i class="mdi mdi-attachment mdi-rotate-180"></i>
<i class="mdi mdi-attachment mdi-rotate-270"></i>

<!-- Flips -->
<i class="mdi mdi-attachment mdi-flip-horizontal"></i>
<i class="mdi mdi-attachment mdi-flip-vertical"></i>

<!-- In lists -->
<ul class="mdi-ul">
    <li><i class="mdi-li mdi mdi-keyboard-arrow-right"></i>Lorem ipsum dolor ...</li>
</ul>

##License