- CSS 57.2%
- HTML 42.8%
| src | ||
| .gitignore | ||
| index.html | ||
| LICENSE | ||
| README.md | ||
style
Usage
The easiest way to use these styles is to simply link the style in HTML using a hosted version of the stylesheet, like such:
<link rel="stylesheet" href="https://cdn.zakhary.dev/style/latest/main.css" />
I host a complementary version on my personal content delivery network, available here.
Development
It is pretty straightforward to develop styles for yourself, as the included CSS
is already production ready. However, it is generally recommended to bundle and
minify CSS before hosting. One way to do this is using a CSS bundler such as
Parcel, which could be installed using npm:
npm install parcel
Next, to compile a bundle, run Parcel using the following command:
parcel build src/main.css
On success, the resulting bundled CSS will be available under the dist/
directory.
License
This project is licensed under the MIT License. You have permission to use this code under the conditions of this license pursuant to the rights it grants.