https://github.com/divspace/source-serif-pro
Bower package for the Source Serif Pro web font
https://github.com/divspace/source-serif-pro
Last synced: about 1 month ago
JSON representation
Bower package for the Source Serif Pro web font
- Host: GitHub
- URL: https://github.com/divspace/source-serif-pro
- Owner: divspace
- License: ofl-1.1
- Created: 2015-11-12T23:34:25.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-11-12T23:34:46.000Z (over 10 years ago)
- Last Synced: 2025-12-10T01:40:39.941Z (6 months 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
# Source Serif Pro
Bower package for the [Source Serif Pro](https://github.com/adobe-fonts/source-serif-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 Serif Pro", serif;
````
## Customization
To compile your own stylesheet, open `scss/source-serif-pro.scss` and remove any font styles you're not using:
````scss
@import "regular";
@import "bold";
````
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
````