Skip to content

Instantly share code, notes, and snippets.

@deshack
Last active September 9, 2023 08:24

Revisions

  1. deshack revised this gist Sep 29, 2014. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion roboto-condensed.css
    Original file line number Diff line number Diff line change
    @@ -6,7 +6,7 @@
    * font-face: "Roboto Condensed", Helvetica, Arial, sans-serif;
    *
    * @author Mattia Migliorini (deshack)
    * @license GPLv3
    * @license MIT
    */

    /* Light */
  2. deshack revised this gist Nov 7, 2013. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion roboto-condensed.css
    Original file line number Diff line number Diff line change
    @@ -6,7 +6,7 @@
    * font-face: "Roboto Condensed", Helvetica, Arial, sans-serif;
    *
    * @author Mattia Migliorini (deshack)
    * @license AGPLv3
    * @license GPLv3
    */

    /* Light */
  3. deshack revised this gist Aug 23, 2013. 1 changed file with 1 addition and 0 deletions.
    1 change: 1 addition & 0 deletions roboto-condensed.css
    Original file line number Diff line number Diff line change
    @@ -6,6 +6,7 @@
    * font-face: "Roboto Condensed", Helvetica, Arial, sans-serif;
    *
    * @author Mattia Migliorini (deshack)
    * @license AGPLv3
    */

    /* Light */
  4. deshack created this gist Aug 23, 2013.
    51 changes: 51 additions & 0 deletions roboto-condensed.css
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,51 @@
    /**
    * Include Roboto Condensed font in your project
    *
    * Download Roboto Condensed ttf files from Google Fonts and place it in the same directory of this CSS file
    * You can then use this font in your project by setting
    * font-face: "Roboto Condensed", Helvetica, Arial, sans-serif;
    *
    * @author Mattia Migliorini (deshack)
    */

    /* Light */
    @font-face {
    font-family: "Roboto Condensed";
    font-style: normal;
    font-weight: 300;
    src: local('Roboto Condensed Light'), local('RobotoCondensed-Light'), url("RobotoCondensed-Light.ttf") format('truetype');
    }
    @font-face {
    font-family: "Roboto Condensed";
    font-style: italic;
    font-weight: 300;
    src: local('Roboto Condensed Light Italic'), local('RobotoCondensed-LightItalic'), url("RobotoCondensed-LightItalic.ttf") format('truetype');
    }

    /* Normal */
    @font-face {
    font-family: "Roboto Condensed";
    font-style: normal;
    font-weight: 400;
    src: local('Roboto Condensed Regular'), local('RobotoCondensed-Regular'), url("RobotoCondensed-Regular.ttf") format('truetype');
    }
    @font-face {
    font-family: "Roboto Condensed";
    font-style: italic;
    font-weight: 400;
    src: local('Roboto Condensed Italic'), local('RobotoCondensed-Italic'), url("RobotoCondensed-Italic.ttf") format('truetype');
    }

    /* Bold */
    @font-face {
    font-family: "Roboto Condensed";
    font-style: normal;
    font-weight: 700;
    src: local('Roboto Condensed Bold'), local('RobotoCondensed-Bold'), url("RobotoCondensed-Bold.ttf") format('truetype');
    }
    @font-face {
    font-family: "Roboto Condensed";
    font-style: italic;
    font-weight: 700;
    src: local('Roboto Condensed Bold Italic'), local('RobotoCondensed-BoldItalic'), url("RobotoCondensed-BoldItalic.ttf") format('truetype');
    }