a dead-simple just-add-water css library
Tired of huge CSS bundles? Want something lightweight enough that will barely dent your page-load times? you came to the right place! lite.css
is a grand total of ~1.77kB minified, meaning it will barely impact your page load time, while still coming with the standard HTML elements that you need.
I use lite.css
on my personal website. See more example usages on the project page.
You can use lite.css
in your project by adding the stylesheet to the <head>
of your page:
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/jackyzha0/lite.css@latest/src/lite.min.css"/>
By default, lite.css
comes with a few colours (that I think look pretty spicy).
--lt-colours-light: #fbfffe
--lt-colours-lightgray: #f0f0f0
--lt-colours-dark: #284b63
--lt-colours-secondary: #84a59d
If you happen to not like them, you can override these in your own CSS:
:root {
--lt-colours-light: #<some new colour> !important;
--lt-colours-lightgray: #<some new colour> !important;
}