mdb-ui-kit/README.md

57 lines
1.6 KiB
Markdown
Raw Normal View History

2014-08-18 18:12:56 +04:00
Bootstrap Material Design
=========================
This Bootstrap theme is an easy way to use the new Material Design guide-lines by Google in your Bootstrap 3 based application.
Just include the theme right after the Bootstrap CSS and include the javascript at the end of your document, everything will be converted to Material Design (paper) style.
This theme is in early developement and is not ready for production.
2014-08-18 18:29:40 +04:00
Check out [the demo at this link](http://fezvrasta.github.io/bootstrap-material-design/).
2014-08-18 18:12:56 +04:00
Currently supported elements:
- Input fields (text, numeric, email, etc)
- Textarea
- Buttons (ripple effect working)
- Select
- Navbar
- Button groups
- Input groups
- Checkbox
- Radio
- Alerts
- Progress bars
- Jumbotron
- Wells
- Dialogs
2014-08-18 18:37:56 +04:00
# Documentation
Material Design for Bootstrap provides some additional stuff to get the best from Material Design.
### Buttons:
2014-08-18 18:38:24 +04:00
Add `.btn-flat` to a button to make it flat, without shadows.
2014-08-18 18:41:25 +04:00
Add `.btn-raised` to a button to add a permanent shadow to it.
2014-08-18 18:37:56 +04:00
### Inputs:
Add `.floating-label` to an input field with a `placeholder` to transform the placeholder in a floating label.
Remember to use the proper HTML markup to get radio and checkboxes styled correctly (choose between *radio* or *checkbox*):
<div class="radio/checkbox radio-primary">
<label>
<input type="radio/checkbox" checked>
Option one is this
</label>
</div>
2014-08-18 18:41:25 +04:00
# Compatibility
Currently Material Design for Bootstrap supports only Google Chrome, my aim is to support Firefox, Internet Explorer 11, Safari and all major mobile browsers.