Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wdamron/material-ui
Originally forked from https://github.com/callemall/material-ui
https://github.com/wdamron/material-ui
Last synced: 3 days ago
JSON representation
Originally forked from https://github.com/callemall/material-ui
- Host: GitHub
- URL: https://github.com/wdamron/material-ui
- Owner: wdamron
- License: mit
- Created: 2014-11-14T01:37:14.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-11-15T02:26:04.000Z (almost 10 years ago)
- Last Synced: 2023-03-24T03:51:13.761Z (over 1 year ago)
- Language: CSS
- Size: 957 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# [Material-UI](http://callemall.github.io/material-ui/)
Material-UI is a CSS framework and a set of [React](http://facebook.github.io/react/) components that implement [Google's Material Design](https://www.google.com/design/spec/material-design/introduction.html) specification.
Check out our [documentation site](http://www.material-ui.com/) for live examples. It's still a work in progress, but hopefully you can see where we're headed.
## Installation
Material-UI is available as an [npm package](https://www.npmjs.org/package/material-ui).
```sh
npm install material-ui
```Use [browserify](http://browserify.org/) and [reactify](https://github.com/andreypopp/reactify) for dependency management and JSX transformation. The CSS framework is written in [Less](http://lesscss.org/), so you'll need to compile that as well.
## Usage
Once material-ui is included in your project, you can use the components this way:
```js
/**
* @jsx React.DOM
*/var React = require('react'),
mui = require('material-ui'),
PaperButton = mui.PaperButton;var SomeAwesomeComponent = React.createClass({
render: function() {
return (
);
}});
module.exports = SomeAwesomeComponent;
```## Customization
The styles are separated into 2 less files:
* src/less/scaffolding.less
* src/less/components.lessThis allows you to override any variables defined in [custom-variables.less](https://github.com/callemall/material-ui/blob/master/src/less/variables/custom-variables.less) without having to modify material-ui source files directly. For example, your main.less file could look something like this:
```css
@import "node_modules/material-ui/src/less/scaffolding.less";//Define a custom less file to override any variables defined in scaffolding.less
@import "my-custom-overrides.less";@import "node_modules/material-ui/src/less/components.less";
```## Contribute
[Material-UI](http://www.material-ui.com/) came about from our love of [React](http://facebook.github.io/react/) and [Google's Material Design](https://www.google.com/design/spec/material-design/introduction.html). We're currently using it on a project at [Call-Em-All](https://www.call-em-all.com/) and plan on adding to it and making it better. If you'd like to help, check out the [docs folder](https://github.com/callemall/material-ui/tree/master/docs). We'd greatly appreciate any contribution you make. :)