tachyons/packages/tachyons-forms
John Otander ed9a755ff6 v7.0.1-1
2018-07-13 12:35:47 -06:00
..
css Add small breakpoint to remaining modules, run build 2018-03-10 11:28:15 -07:00
src Add small breakpoint to remaining modules, run build 2018-03-10 11:28:15 -07:00
.gitignore Init lerna, move all modules to dir 2018-03-07 08:29:41 -07:00
code-of-conduct.md Init lerna, move all modules to dir 2018-03-07 08:29:41 -07:00
index.html Init lerna, move all modules to dir 2018-03-07 08:29:41 -07:00
LICENSE.txt Init lerna, move all modules to dir 2018-03-07 08:29:41 -07:00
package.json v7.0.1-1 2018-07-13 12:35:47 -06:00
readme.md Add small breakpoint to remaining modules, run build 2018-03-10 11:28:15 -07:00

FORMS

Docs

http://tachyons.io/docs/elements/forms/

Stats

173 3 4
bytes selectors declarations

Installation

With npm

npm install --save-dev tachyons

Learn more about using css installed with npm:

With Git

http:

git clone https://github.com/tachyons-css/tachyons

ssh:

git clone git@github.com:tachyons-css/tachyons.git

Usage

Using with Postcss

Import the css module

@import "tachyons";

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/tachyons@5.0.0-1/css/tachyons.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/tachyons">

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

### Docs

http://tachyons.io/docs/elements/forms/
*/
.input-reset { -webkit-appearance: none; -moz-appearance: none; }
.button-reset::-moz-focus-inner, .input-reset::-moz-focus-inner { border: 0; padding: 0; }

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

Authors

License

ISC