css-font-family
v1.0.7
Published
Css module of single purpose classes for font family
Downloads
2,149
Readme
css-font-family 1.0.6
Css module of single purpose classes for font family
Stats
276 | 20 | 20 ---|---|--- bytes | selectors | declarations
Installation
With npm
npm install --save-dev css-font-family
Learn more about using css installed with npm:
- https://webpack.github.io/docs/stylesheets.html
- https://github.com/defunctzombie/npm-css
With Git
http:
git clone https://github.com/tachyons-css/css-font-family
ssh:
git clone [email protected]:tachyons-css/css-font-family.git
Usage
Using with Postcss
Import the css module
@import "css-font-family";
Then process the css using the tachyons-cli
$ npm i -g tachyons-cli
$ tachyons path/to/css-file.css > dist/t.css
Using the css
CDN
The easiest and most simple way to use the css is to use the cdn hosted version. Include it in the head of your html with:
<link rel="stylesheet" href="http://unpkg.com/[email protected]/css/css-font-family.min.css" />
Locally
The built css is located in the css
directory. It contains an unminified and minified version.
You can either cut and paste that css or link to it directly in your html.
<link rel="stylesheet" href="path/to/module/css/css-font-family">
Development
The source css files can be found in the src
directory.
Running $ npm start
will process the source css and place the built css in the css
directory.
The css
/*
FONT FAMILY
*/
.serif { font-family: georgia, serif; }
.sans-serif { font-family: avenir, 'avenir next', helvetica, arial, sans-serif; }
.font-fantasy { font-family: fantasy; }
.font-cursive { font-family: cursive; }
.font-mono { font-family: monospace; }
@media screen and (min-width: 48em) {
.serif-ns { font-family: georgia, serif; }
.sans-serif-ns { font-family: avenir, 'avenir next', helvetica, arial, sans-serif; }
.font-fantasy-ns { font-family: fantasy; }
.font-cursive-ns { font-family: cursive; }
.font-mono-ns { font-family: monospace; }
}
@media screen and (min-width:48em) and (max-width: 64em) {
.serif-m { font-family: georgia, serif; }
.sans-serif-m { font-family: avenir, 'avenir next', helvetica, arial, sans-serif; }
.font-fantasy-m { font-family: fantasy; }
.font-cursive-m { font-family: cursive; }
.font-mono-m { font-family: monospace; }
}
@media screen and (min-width: 64em) {
.serif-l { font-family: georgia, serif; }
.sans-serif-l { font-family: avenir, 'avenir next', helvetica, arial, sans-serif; }
.font-fantasy-l { font-family: fantasy; }
.font-cursive-l { font-family: cursive; }
.font-mono-l { font-family: monospace; }
}
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
Authors
License
ISC