Thanks to visit codestin.com
Credit goes to github.com

Skip to content
forked from videojs/font

Icon font used for the StreamOne Player v2

License

StreamOneNL/font

 
 

Repository files navigation

StreamOne player icon Font

This project contains all of the tooling necessary to generate a new icon font for StreamOne player version 2. The icons themselves are from Google's Material Design Icons.

This project is based on the Video.js font.

Usage

$ npm install grunt-cli // only if you don't already have grunt installed
$ npm install
$ grunt

Making changes to the font

To make changes to the font, simply edit the icons.json file. You can add or remove icons, either by just selecting new SVGs from the Material Design set, or pulling in new SVGs altogether.

{
  "font-name": "StreamOne",
  "root-dir": "./node_modules/material-design-icons/",
  "icons": [
    {
      "name": "play",
      "svg": "av/svg/production/ic_play_arrow_48px.svg"
    },
    {
      "name": "pause",
      "svg": "av/svg/production/ic_pause_48px.svg"
    },
    {
      "name": "cool-custom-icon",
      "svg": "neato-icon.svg",
      "root-dir": "./custom-icons/neato-icon.svg"
    }
  ]
}

Once you're done, simply run grunt again to regenerate the fonts and scss partial. To edit the _icons.scss partial, update templates/scss.hbs.

About

Icon font used for the StreamOne Player v2

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • CSS 79.3%
  • HTML 17.3%
  • JavaScript 3.4%