tachyons-modular-forms
v1.0.0
Published
Form control resets to remove default styles for mobile http://tachyons.io.
Downloads
1
Readme
tachyons-modular-forms 1.0.0
Form control resets to remove default styles for mobile http://tachyons.io.
Stats
138 | 3 | 4 ---|---|--- bytes | selectors | declarations
Installation
With npm
npm install --save-dev tachyons-modular-forms
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/particlecss/tachyons-modular.git
ssh:
git clone [email protected]:particlecss/tachyons-modular.git
Usage
Using with Postcss
Import the css module
@import "tachyons-modular-forms";
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]/build/build.min.css" />
Locally
The built css is located in the build
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/build/build.min.css">
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
/*
FORMS
*/
.input-reset { -webkit-appearance: none; -moz-appearance: none; }
.button-reset::-moz-focus-inner, .input-reset::-moz-focus-inner { border: 0; padding: 0; }
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