Bootstrap 5 & Material Design UI KIT
Go to file
Federico Zivolo 8f9ffe9f8c Added support for ripple effect to IE
Not sure which versions of IE are now supported, tested successfully in IE11, now I don't use SVG anymore for the ripple effect but just two nested DIV.
2014-08-19 10:11:29 +02:00
.gitignore Initial commit 2014-08-18 13:54:13 +02:00
.jshintrc Initial upload. 2014-08-18 16:25:33 +02:00
alerts.less Initial upload. 2014-08-18 16:25:33 +02:00
animations.less Initial upload. 2014-08-18 16:25:33 +02:00
bootstrap.css Initial upload. 2014-08-18 16:25:33 +02:00
buttons.less Initial upload. 2014-08-18 16:25:33 +02:00
checkboxes.less Initial upload. 2014-08-18 16:25:33 +02:00
index.html Initial upload. 2014-08-18 16:25:33 +02:00
inputs.less Initial upload. 2014-08-18 16:25:33 +02:00
LICENSE.md First draft of the license. 2014-08-18 14:13:03 +02:00
material.css Initial upload. 2014-08-18 16:25:33 +02:00
material.js Added support for ripple effect to IE 2014-08-19 10:11:29 +02:00
material.less Initial upload. 2014-08-18 16:25:33 +02:00
navbar.less Initial upload. 2014-08-18 16:25:33 +02:00
progress.less Initial upload. 2014-08-18 16:25:33 +02:00
radios.less Initial upload. 2014-08-18 16:25:33 +02:00
README.md Added compatibility info. 2014-08-18 16:41:25 +02:00
ripple.less Added support for ripple effect to IE 2014-08-19 10:11:29 +02:00
shadows.less Initial upload. 2014-08-18 16:25:33 +02:00
tabs.less Initial upload. 2014-08-18 16:25:33 +02:00
variables.less Initial upload. 2014-08-18 16:25:33 +02: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.

Check out the demo at this link.

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

Documentation

Material Design for Bootstrap provides some additional stuff to get the best from Material Design.

Buttons:

Add .btn-flat to a button to make it flat, without shadows.
Add .btn-raised to a button to add a permanent shadow to it.

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>

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.