# mui-css **Repository Path**: mirrors/mui-css ## Basic Information - **Project Name**: mui-css - **Description**: Lightweight CSS framework - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2017-04-02 - **Last Updated**: 2025-05-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Material Design CSS Framework [](https://www.muicss.com) MUI is a lightweight CSS framework that follows Google's Material Design guidelines. [](https://gitter.im/muicss/mui?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [](https://travis-ci.org/muicss/mui) [](https://david-dm.org/muicss/mui) [](https://david-dm.org/muicss/mui?type=dev) [](https://cdnjs.com/libraries/muicss) [](https://greenkeeper.io/) [](https://gitpod.io/#https://github.com/muicss/mui) **Use From the CDN:** ```html ``` Or for development you can use the latest: ```html ``` **Install with NPM:** ```shell $ npm install --save muicss ``` Read more: https://www.npmjs.com/package/muicss **Install with Bower:** ```shell $ bower install mui ``` ## Features MUI is designed from the ground up to be fast, small and developer friendly. By design it only includes the basic components you need to build a site that follows Google's Material Design guidelines. Some of the key features of MUI are: * Small footprint: mui.min.css - 6.6K, mui.min.js - 5.4K (gzipped) * A responsive grid to make mobile-friendly sites * No external dependencies * CSS library that can be customized with your own colors * JS library can be loaded asyncronously * Email library for styling HTML emails To get started using MUI, go to the [MUI website](https://www.muicss.com) to see examples and download boilerplate HTML. ## Browser Support MUI is tested and works in: * IE10+ * Latest Stable: Firefox, Chrome, Safari * iOS 6+ ## Development Quickstart 1. Install dependencies * nodejs (http://nodejs.org/) * npm (https://www.npmjs.org/) * sass (http://sass-lang.com/) * http-server (via npm) 1. Clone repository ```bash $ git clone git@github.com:muicss/mui.git $ cd mui ``` 1. Install node dependencies using npm ```bash $ npm install ``` 1. Build examples ```bash $ npm run build-examples ``` To view the examples you can use any static file server. To use the nodejs `http-server` module: ```bash $ npm install http-server $ npm run http-server -- -p 3000 ``` Then visit http://localhost:3000/examples Alternatively, you can use a pre-configured development environment on GitPod: [](https://gitpod.io/from-referrer/) ## Run tests ### Unit tests To run the unit tests from the command line, run 'npm test': ```bash $ npm test ``` ### E2E tests To run the E2E tests first compile the unit test files into a version that runs in the browser: ```bash $ npm run build-e2e-tests ``` Then visit http://localhost:3000/e2e-tests ## Build Packages ### CDN ```bash $ npm run build-cdn ``` The build will be located in the `packages/cdn` directory:
cdn/ ├── angular │ ├── mui-angular.js │ └── mui-angular.min.js ├── css │ ├── mui.css │ ├── mui.min.css │ ├── mui-rtl.css │ └── mui-rtl.min.css ├── email │ ├── mui-email-inline.css │ ├── mui-email-inline-rtl.css │ ├── mui-email-styletag.css │ └── mui-email-styletag-rtl.css ├── extra │ ├── mui-angular-combined.js │ ├── mui-angular-combined.min.js │ ├── mui-colors.css │ ├── mui-colors.min.css │ ├── mui-combined.js │ ├── mui-combined.min.js │ ├── mui-noglobals.css │ ├── mui-noglobals.min.css │ ├── mui-noglobals-rtl.css │ ├── mui-noglobals-rtl.min.css │ ├── mui-react-combined.js │ └── mui-react-combined.min.js ├── js │ ├── mui.js │ └── mui.min.js ├── react │ ├── mui-react.js │ └── mui-react.min.js └── webcomponents ├── mui-webcomponents.js └── mui-webcomponents.min.js### NPM ```bash $ npm run build-npm ``` The NPM package is located in the `packages/npm` directory. ### Meteor ```bash $ npm run build-meteor ``` The Meteor package is located in the `packages/meteor` directory.