Skip to content

Commit 8fd515b

Browse files
committed
Use pagic
1 parent 1f597ff commit 8fd515b

25 files changed

+603
-11
lines changed

.eslintrc.json

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"extends": "airbnb-base",
3+
"rules": {
4+
"import/no-extraneous-dependencies": 0,
5+
"no-console": 0
6+
}
7+
}

.travis.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
language: node_js
2+
node_js:
3+
- 6
4+
branches:
5+
only:
6+
- master
7+
install:
8+
- npm install
9+
script:
10+
- npm test

README.md

+29-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1-
# mobi-plugin-button
1+
# Button - Mobi.css Plugin
22

3-
The button plugin for Mobi.css
3+
[![Build Status](https://img.shields.io/travis/mobi-css/mobi-plugin-button.svg)](https://travis-ci.org/mobi-css/mobi-plugin-button) [![npm package](https://img.shields.io/npm/v/mobi-plugin-button.svg)](https://www.npmjs.org/package/mobi-plugin-button) [![npm downloads](http://img.shields.io/npm/dm/mobi-plugin-button.svg)](https://www.npmjs.org/package/mobi-plugin-button)
4+
5+
The button plugin for [Mobi.css](http://getmobicss.com)
6+
7+
## Introduction
8+
9+
> Mobi.css is a themeable, pluginable, mobile-first css framework.
10+
11+
This is the button plugin for [Mobi.css](http://getmobicss.com), you can use it within [Mobi.css](http://getmobicss.com) framework, or simply use the [standalone css library](https://github.com/mobi-css/mobi-plugin-button/releases) without using Mobi.css framework.
12+
13+
You can also insert the CDN link to your `<head>` to try the standalone version:
14+
15+
```html
16+
<link rel="stylesheet" href="https://unpkg.com/mobi-plugin-button/dist/mobi-plugin-button.min.css" />
17+
```
18+
19+
## Docs
20+
21+
Please checkout [here](https://mobi-css.github.io/mobi-plugin-button/) for usage.
22+
23+
## Community
24+
25+
Like Mobi.css? Please join the community to discuss new features, open an issue or create pull requests!
26+
27+
- [GitHub organization](http://github.com/mobi-css)
28+
- [Follow us on twitter](https://twitter.com/mobi_css)
29+
- [Join gitter discuss](https://gitter.im/mobi-css)
30+
- [Read our blogs](https://medium.com/@mobi_css)

_config.yml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
src_dir: site
2+
public_dir: docs

dist/mobi-plugin-button.css

+47
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/mobi-plugin-button.css.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/mobi-plugin-button.min.css

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/mobi-plugin-button.min.css.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/css/mobi-plugin-button.css

+47
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)