Css module of single purpose classes for font style
186 | 12 | 12 |
---|---|---|
bytes | selectors | declarations |
With npm
npm install --save-dev css-font-style
Learn more about using css installed with npm:
http:
git clone https://github.com/tachyons-css/css-font-style
ssh:
git clone git@github.com:tachyons-css/css-font-style.git
Using with Postcss
Import the css module
@import "css-font-style";
Then process the css using the tachyons-cli
$ npm i -g tachyons-cli
$ tachyons path/to/css-file.css > dist/t.css
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/css-font-style@1.0.6/css/css-font-style.min.css" />
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-style">
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.
/*
FONT STYLE
*/
.fsn { font-style: normal; }
.i { font-style: italic; }
.oblique { font-style: oblique; }
@media screen and (min-width: 48em) {
.fsn-ns { font-style: normal; }
.i-ns { font-style: italic; }
.oblique-ns { font-style: oblique; }
}
@media screen and (min-width:48em) and (max-width: 64em) {
.fsn-m { font-style: normal; }
.i-m { font-style: italic; }
.oblique-m { font-style: oblique; }
}
@media screen and (min-width: 64em) {
.fsn-l { font-style: normal; }
.i-l { font-style: italic; }
.oblique-l { font-style: oblique; }
}
- 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
ISC