minor clean up

This commit is contained in:
Geoff Doty 2024-05-10 20:44:08 -04:00
parent 6a27a0efb0
commit e19fc21b87
3 changed files with 17 additions and 15 deletions

View File

@ -1,18 +1,22 @@
# Stylelite CSS # Stylelite CSS
> CSS Classlite For Minimalists > Styles that work for you
Stylelite is a tiny-dynamic-classlite stylesheet foundation for rapid prototyping and project growth. Stylelite is a tiny-dynamic-classlite css foundation for any project. Easy to extend, with extras already available, and Great for rapid prototyping.
It *may* be light on `class`, but it *oozes* [style](src/extras) It *may* be light on `class`, but it makes up for it in *[style](src/extras)*
All in **2kb gzipped!** All in **3kb gzipped!**
### Features ### Features
- Tiny, 2kb - Tiny, 3kb
- Classlite - Class-lite
- Dynamic, 6 Custom CSS Vars - Complementary classes for
- Layout: .row, .col, .grid
- Utility: .left, .right, ect...
- Extras: pick-and-choose expanded style options
- Dynamic, 12 Custom CSS Vars
- Includes Light and Dark Themes - Includes Light and Dark Themes
> WARNING: ever-green browsers need only apply ;) > WARNING: ever-green browsers need only apply ;)
@ -37,5 +41,8 @@ Keep it small, but immediately useful.
Tweaks to hit that SWEET spot: Tweaks to hit that SWEET spot:
- Support more tags - dialog tag support (extras)
- `details` & `summary` - spinner (extras)
- toggle/switch (extras)
- Navigation Tabs (extras)
- Color Utility (extras)

View File

@ -1,6 +1,6 @@
{ {
"name": "stylelite", "name": "stylelite",
"version": "0.6.0", "version": "0.7.0",
"description": "a class-lite stylesheet on the light-side", "description": "a class-lite stylesheet on the light-side",
"scripts": { "scripts": {
"build": "npx csso-cli .\\src\\stylelite.css --comments first-exclamation --output .\\dist\\stylelite.min.css -s .\\dist\\stylelite.map" "build": "npx csso-cli .\\src\\stylelite.css --comments first-exclamation --output .\\dist\\stylelite.min.css -s .\\dist\\stylelite.map"

View File

@ -93,10 +93,6 @@ table>thead>tr>th {
border-bottom: 2px solid var(--theme); border-bottom: 2px solid var(--theme);
} }
table.striped tbody>:nth-child(2n-1) {
background: #f5f5f5;
}
th { th {
text-align: left; text-align: left;
} }
@ -361,7 +357,6 @@ nav.navbar a {color: var(--white)}
display: grid; display: grid;
gap: .25rem; gap: .25rem;
grid-template-columns: repeat(auto-fit, minmax(0%, 1fr)); grid-template-columns: repeat(auto-fit, minmax(0%, 1fr));
/* padding: 0; */
} }
.row { .row {