mirror of https://github.com/n2geoff/stylelite.git
minor clean up
This commit is contained in:
parent
6a27a0efb0
commit
e19fc21b87
25
README.md
25
README.md
|
@ -1,18 +1,22 @@
|
|||
# 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
|
||||
|
||||
- Tiny, 2kb
|
||||
- Classlite
|
||||
- Dynamic, 6 Custom CSS Vars
|
||||
- Tiny, 3kb
|
||||
- Class-lite
|
||||
- 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
|
||||
|
||||
> WARNING: ever-green browsers need only apply ;)
|
||||
|
@ -37,5 +41,8 @@ Keep it small, but immediately useful.
|
|||
|
||||
Tweaks to hit that SWEET spot:
|
||||
|
||||
- Support more tags
|
||||
- `details` & `summary`
|
||||
- dialog tag support (extras)
|
||||
- spinner (extras)
|
||||
- toggle/switch (extras)
|
||||
- Navigation Tabs (extras)
|
||||
- Color Utility (extras)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "stylelite",
|
||||
"version": "0.6.0",
|
||||
"version": "0.7.0",
|
||||
"description": "a class-lite stylesheet on the light-side",
|
||||
"scripts": {
|
||||
"build": "npx csso-cli .\\src\\stylelite.css --comments first-exclamation --output .\\dist\\stylelite.min.css -s .\\dist\\stylelite.map"
|
||||
|
|
|
@ -93,10 +93,6 @@ table>thead>tr>th {
|
|||
border-bottom: 2px solid var(--theme);
|
||||
}
|
||||
|
||||
table.striped tbody>:nth-child(2n-1) {
|
||||
background: #f5f5f5;
|
||||
}
|
||||
|
||||
th {
|
||||
text-align: left;
|
||||
}
|
||||
|
@ -361,7 +357,6 @@ nav.navbar a {color: var(--white)}
|
|||
display: grid;
|
||||
gap: .25rem;
|
||||
grid-template-columns: repeat(auto-fit, minmax(0%, 1fr));
|
||||
/* padding: 0; */
|
||||
}
|
||||
|
||||
.row {
|
||||
|
|
Loading…
Reference in New Issue