Material Components in Pure CSS
This project is work in progress, I am open-sourcing Pure CSS Material Components.
Configurable builds, CDN support, and more are coming soon! Right now the process is manual:
- Download
matter.css
fromdist
folder. (For experimenting you can also use it from CDN, not production grade: https://res.cloudinary.com/finnhvman/raw/upload/v1550266033/matter/matter-experimental-6.css) - Include it in your project or build pipeline
- Apply the class of your choice:
<!-- Contained Button -->
<button class="matter-button-contained">Button</button>
<!-- Outlined Button -->
<button class="matter-button-outlined">Button</button>
<!-- Text Button -->
<button class="matter-button-text">Button</button>
<!-- Filled Textfield (keep the placeholder attribute as it is) -->
<label class="matter-textfield-filled">
<input placeholder=" "/>
<span>Textfield</span>
</label>
<!-- Filled Textfield (textarea) (keep the placeholder attribute as it is) -->
<label class="matter-textfield-filled">
<textarea placeholder=" "></textarea>
<span>Textfield</span>
</label>
<!-- etc. -->
<!-- Tooltip (use a div to wrap component) -->
<div data-matter-tooltip="Tooltip">
<button class="matter-button-text">Button</button>
</div>
Click the link of a component below to find more examples of its usage in the .spec.html
file!
Implemented/Planned:
- Buttons
- Progress Indicators
- Circular
- Linear
- Selection Controls
- Slider
- Textfields
- Tooltip
People who work on:
- Simple projects
- Internal facing tools
- Framework-less apps
- Javascript-less apps
- Proof of Concept and demo projects
Newcomers to web development who want to build nice UIs quick and easy.
This is not for complex apps and SPAs. Rather use the following libraries in case of larger projects:
Targeted browsers: Chrome, Firefox, Safari
Supported browsers: Edge, Samsung Internet
Matter components are well-covered with Visual Feature Tests (VFTs). Visual Feature Tests verify certain visual parts of components like: dominant color, shape of corners (rounded/sharp), types of edges (outlined or not), shadows, and more. VFTs are executed for every component in various states (like hover, focus, active, etc. and their permutations) in the three targeted browsers.
VFTs are not executed for the rest of the supported browsers, however best effort manual testing is performed to ensure operability and display.
The purpose of Matter is to provide the most easy-to-use but accurate implementation of Material Design Components.
Matter has probably the lowest entry-barrier among Material Design Component libraries. The only technical knowledge needed to use it is basic HTML5. It doesn't rely on JavaScript, it only needs one to three HTML elements and a CSS class per component to work. The markup of the components is semantic by design.
Matter is built with theming in mind. Its components can be customized by specifying certain colors and/or fonts. The granularity of customization is variable: components can be themed on global level, component level, component instance level, or on any level between.
💎 Matter is solid. All the components are tested thoroughly to ensure rock-solid quality across all targeted browsers.
💧 Matter is liquid. Components can be resized fluidly to match layout needs, otherwise they take up the size necessary.
🎈 Matter is gas. It's highly compressible so delivery can be performed in compact formats like gzip or brotli.
⚡️ Matter is plasma. It's just CSS relying almost exclusively on class selectors making it lightning fast.
If you have questions, feedback or anything to share related to the project, then you can contact me via:
- Twitter @finnhvman
- Spectrum @finnhvman
- or submit an issue