DISCLAIMER: This framework was created by Daemonite team. Since they are not active / focused at working this framework for now, we will enhance this framework until they come back to maintain the project.
Djibe's Material UI 2 is a cross-platform and fully responsive front-end interface based on Google Material Design 2 developed by Google.
it is the active fork of the abandonned Daemonite Material UI (until Daemonite comes back).
The basic idea behind this project is to combine the front-end technology of the popular Bootstrap framework with the visual language of Google Material Design 2.
A visual language for our users that synthesizes the classic principles of good design with the innovation and possibility of technology and science. This is material design. https://material.io/design/introduction
Feel free to check out our documentation site or let us know what you think in the Issues tab of this repository.
The primary goal of this project is to give all Bootstrap components and elements a Google Material Design look, so it allows web developers to continue using the exact same Bootstrap HTML markup they are familiar with, but presents them a final outcome that is in line with the principles and specifics of Google Material Design.
A secondary goal of this project is to add support for some unique Google Material Design components such as floating buttons, pickers, and steppers, to name a few, which cannot be achieved by transforming existing Bootstrap components.
Because these components will require additional markup (some may require additional JavaScript), they will be documented separately in Material's documentation. 🙏
This project exists thanks to all the people who takes time to contribute.
Thank you to all our backers! [Become a backer]
Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [Become a sponsor]
Within this repository context, you will find the following directories and files, logically grouping common assets and providing both compiled and minified variations. You'll see something like this:
djibe-material/
├── css/
│ ├── material.css
│ ├── material.css.map
│ ├── material.min.css
│ ├── material.min.css.map
| ├── material-plugins.css
│ ├── material-plugins.css.map
│ ├── material-plugins.min.css
│ └── material-plugins.min.css.map
└── js/
├── material.js
├── material.js.map
├── material.min.js
└── material.min.js.map
We provide compiled CSS and JavaScript (material.*
), as well as compiled and minified CSS and JavaScript (material.min.*
). CSS and JavaScript source maps (material.*.map
) are also available for use with certain browsers' developer tools.
material-plugins.css
is an addon containing suitable style for the Plugins (see doc's Plugin section).
The Material 2 source code download includes the precompiled CSS and JavaScript, along with documentation and source assets. More specifically, it includes the following and more:
djibe-material/
├── assets/
│ ├── js/
│ └── scss/
├── css/
│ ├── material.css
│ ├── material.css.map
│ ├── material.min.css
│ ├── material.min.css.
│ ├── material-plugins.css
│ ├── material-plugins.css.map
│ ├── material-plugins.min.css
│ └── material-plugins.min.css.map
├── docs/
│ └── 4.6/
└── js/
├── material.js
├── material.js.map
├── material.min.js
└── material.min.js.map
Material's 2 documentation that is included in this repo located in the root directory, is built with Jekyll and publicly hosted on GitHub Pages at https://djibe.github.io/material/. The docs can also be hosted locally.
- Run through the tooling setup to install Jekyll and other Ruby dependencies with
bundle install
. - Run
npm install
to install Node.js dependencies. - Run
npm run dist
andnpm run docs
to rebuild distributed CSS and JavaScript files, as well as docs assets. - If you had end-of-line errors when running the commands indicated in step #3 then, please follow this step before proceeding, or else proceed to step #5.
- From the root
/material
directory, runnpm run docs-serve
in the command line. - Open
http://localhost:9999/material
in your browser, and voilà.
This repository is usually in CRLF end-of-line mode. When your GitHub is currently set at LF end-of-line mode automatically, there will be an error. Which shows the following:
Error <File> : Expected linebreaks to be 'LF' but found CRLF
This caused by working the repo in multiple OS in which, each OS has different types of string interpretation; and Node.JS doesn't like it.
In order to fix this problem, you have to save all modified files that is not yet committed in the state of the repo and please follow the steps below:
git config core.autocrlf false
git rm --cached -r .
git reset --hard
- At command #1, we have to configure github to stop interpreting our files in the repo to convert the end-of-line to CRLF.
- At command #2, since we configured our github to stop converting those into CRLF where it is expected to be LF, we have to remove all the cache files and remove them in recursive way in the same path where your command line directory is at. (For instance, your command line target path is this repository.)
- And finally at command #3, we have to reset the state of your saved local repo by issuing
--hard
command. Where, all modified files that is not included in the latest commit of repo will be removed.
Now try issuing commands from the recent steps earlier and that should work fine.
Several quick start options are available:
- Clone the repo:
git clone https://github.com/djibe/material.git
- Download the latest release
- Install with bower: TODO
- Install with npm:
npm install djibe-material