|
3 | 3 | (Forked [Oat UI](https://github.com/knadh/oat)) |
4 | 4 | See [CHANGELOG](CHANGELOG.md) for changes and updates. |
5 | 5 |
|
6 | | -> Semantic, minimal, zero dependencies. ~10KB CSS and JS. |
| 6 | +> Semantic, minimal, zero dependencies. ~11KB CSS and JS. |
7 | 7 |
|
8 | | -Oat Glassed is an ultra-lightweight HTML + CSS, semantic UI component library with zero dependencies. No framework, build, or dev complexity. Just include the tiny CSS and JS files and you are good to go building decent looking web applications with most commonly needed components and elements. |
| 8 | +Oat Glassed is an ultra-lightweight HTML + CSS, semantic UI component library with zero dependencies. No framework, build, or dev complexity. Just include the tiny CSS and JS files and you are good to go building decent looking web applications with most commonly needed components and elements. Forked from Oat UI, it is now built with a glassmorphism design and has a few new components. |
9 | 9 |
|
10 | 10 | Semantic tags and attributes are styled contextually out of the box without classes, forcing best practices, and reducing markup class pollution. A few dynamic components are WebComponents and use minimal JavaScript. |
11 | 11 |
|
12 | | -I wrote this to use in my own projects after getting sick of the ridiculous bloat, dependencies, and rug-pulls in Javascript UI/component libraries. |
13 | | - |
14 | 12 | See live demo and docs at [**https://good-lly.github.io/oat-glassed**](https://good-lly.github.io/oat-glassed) |
15 | 13 |
|
16 | | -**IMPORTANT:** The lib is currently sub v1 and is likely to have breaking changes until it hits v1. |
17 | | - |
18 | 14 | --- |
19 | 15 |
|
20 | | -<img width="739" height="735" alt="image" src="https://github.com/user-attachments/assets/b0a2f55c-659d-4aab-922c-b13d89eeab36" /> |
| 16 | +<img width="739" alt="image" src="https://github.com/good-lly/oat-glassed/blob/main/docs/static/screenshot.png?raw=true" /> |
| 17 | + |
| 18 | +## Installation |
| 19 | + |
| 20 | +### CDN |
| 21 | + |
| 22 | +```html |
| 23 | +<link |
| 24 | + rel="stylesheet" |
| 25 | + href="https://cdn.jsdelivr.net/npm/oat-glassed@1.0.0/dist/oat-glassed.min.css" |
| 26 | +/> |
| 27 | +<script src="https://cdn.jsdelivr.net/npm/oat-glassed@1.0.0/dist/oat-glassed.min.js"></script> |
| 28 | +``` |
| 29 | + |
| 30 | +### NPM |
| 31 | + |
| 32 | +```bash |
| 33 | +npm install oat-glassed |
| 34 | +``` |
| 35 | + |
| 36 | +```js |
| 37 | +import "oat-glassed/dist/oat-glassed.min.css"; |
| 38 | +import "oat-glassed/dist/oat-glassed.min.js"; |
| 39 | +``` |
| 40 | + |
| 41 | +## License is licensed under [MIT](LICENSE). |
0 commit comments