Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/divspace/hack
Bower package for the Hack web font
https://github.com/divspace/hack
Last synced: 1 day ago
JSON representation
Bower package for the Hack web font
- Host: GitHub
- URL: https://github.com/divspace/hack
- Owner: divspace
- License: other
- Created: 2015-11-12T22:36:03.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-12T22:37:07.000Z (about 9 years ago)
- Last Synced: 2024-10-09T18:09:51.119Z (about 1 month ago)
- Language: CSS
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license.md
Awesome Lists containing this project
README
# Hack
Bower package for the [Hack](https://github.com/chrissimpkins/Hack) web font.
## Usage
Add the following `HTML` to your website:
````html
````
Alternatively, you can use the minified version:
````html
````
Use the following `CSS` to integrate the font into your website:
````css
font-family: "Hack", serif;
````## Customization
To compile your own stylesheet, open `scss/hack.scss` and remove any font styles you're not using:
````scss
@import "regular";
@import "italic";
@import "bold";
@import "bold-italic";
````To generate an **unminified** stylesheet and source map file, run the following command:
````bash
gulp
````To generate a **minified** stylesheet, run the following command:
````bash
gulp --production
````