MUI

WBOY
Release: 2016-06-24 11:41:30
Original
1270 people have browsed it

MUI is a lightweight HTML, CSS and JS framework that follows Google's Material Design design ideas. MUI CSS can be easily customized through GitHub or Bower when using SASS source code. Customizations range from responsive breakpoints to default font settings and using Material Design colors, among others. MUI CSS/JS does not depend on any other programs.

Sample HTML:

<!doctype html><html>  <head>    <meta charset="utf-8">    <meta name="viewport" content="width=device-width, initial-scale=1">    <!-- load MUI -->    <link href="//cdn.muicss.com/mui-0.0.1/css/mui.min.css" rel="stylesheet" type="text/css" />    <script src="//cdn.muicss.com/mui-0.0.1/js/mui.min.js"></script>  </head>  <body>    <!-- example content -->    <div class="mui-container">      <div class="mui-panel">        <h1>My Title</h1>        <button class="mui-btn mui-btn-primary mui-btn-raised">My Button</button>      </div>    </div>  </body></html>
Copy after login

MUI is small:

  • mui.min.css - 5.7K (gzipped)

  • mui.min.js - 3.0K (gzipped)

Development dependencies:

  • nodejs ( http://nodejs.org/ )

  • npm ( https://www.npmjs.org/ )

  • bower ( http://bower.io/ )

  • sass ( http://sass-lang.com/ )

  • http-server (via npm)



Project homepage: http://www.open-open.com/lib/view /home/1436328101302

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template