Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/divspace/source-sans-pro
Bower package for the Source Sans Pro web font
https://github.com/divspace/source-sans-pro
Last synced: 1 day ago
JSON representation
Bower package for the Source Sans Pro web font
- Host: GitHub
- URL: https://github.com/divspace/source-sans-pro
- Owner: divspace
- License: ofl-1.1
- Created: 2015-11-13T19:36:43.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-13T19:41:31.000Z (about 9 years ago)
- Last Synced: 2024-11-08T20:33:09.505Z (9 days ago)
- Language: CSS
- Size: 0 Bytes
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license.md
Awesome Lists containing this project
README
# Source Sans Pro
Bower package for the [Source Sans Pro](https://github.com/adobe-fonts/source-sans-pro) 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: "Source Sans Pro", serif;
````## Customization
To compile your own stylesheet, open `scss/source-sans-pro.scss` and remove any font styles you're not using:
````scss
@import "extra-light";
@import "extra-light-italic";
@import "light";
@import "light-italic";
@import "regular";
@import "italic";
@import "semi-bold";
@import "semi-bold-italic";
@import "bold";
@import "bold-italic";
@import "black";
@import "black-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
````