// Droid Sans Mono
//
// The Droid Sans Mono font in a Sass format to be imported easily in any project.
//
// | Variable                                                                      | Default value                                     | Description                                                                        |
// | ----------------------------------------------------------------------------- | ------------------------------------------------- | ---------------------------------------------------------------------------------- |
// | <div class="egeo-u-tx-align--left">$egeo-droid-sans-mono</div>                 | <div class="egeo-u-tx-align--left">`true`</div>    | Tell to the framework wheter or not the font Droid Sans Mono have to be installed. |
//
// <div class="compatibility">This vendor uses @font-face. Check the compatibility [here](section-2.html#section-2.4).</div>
//
// ## Dependencies
//
// * [settings](section-2.html): This library uses the $egeo-fontface-src variable.
// * [tools.log](section-3.html#section-3.3): This library uses the logger tool to show debug info.
//
// Styleguide 4.2

// sass-lint:disable no-duplicate-properties
@if $egeo-droid-sans-mono {
   @font-face {
      font-family: 'DroidSansMonoRegular';
      src: url($egeo-fontface-src + '/droid-sans-mono/droid-sans-mono-webfont.eot');
      src: url($egeo-fontface-src + '/droid-sans-mono/droid-sans-mono-webfont.eot?#iefix') format('embedded-opentype'),
      url($egeo-fontface-src + '/droid-sans-mono/droid-sans-mono-webfont.woff') format('woff'),
      url($egeo-fontface-src + '/droid-sans-mono/droid-sans-mono-webfont.ttf') format('truetype'),
      url($egeo-fontface-src + '/droid-sans-mono/droid-sans-mono-webfont.svg#DroidSansMonoRegular') format('svg');
      font-weight: normal;
      font-style: normal;
   }
}
