PrestoKit
Current version: v0.2.0
A simple CSS toolkit for simple styling.
PrestoKit is a opinionated stylesheet thats builds off csstools' updated version of normalize.css, the original was made by Nicolas Gallagher. The PrestoKit Github repository can be found at https://github.com/Pres7o/prestokit.
Import
You can add PrestoKit to your website by including this single line of code in the <head> section at the beginning of your HTML document.
<script src="https://prestokit.pages.dev/prestokit.js?v=<?=time()?>"></script>
If you use emojis, I recommend importing the emoji styling by adding this line of code in the <head> section AFTER you import PrestoKit.
<link type="text" rel="stylesheet" href="https://prestokit.pages.dev/emoji.css" type="text/css">
Use
For an example file I recommend looking at template.html. The basic use is to import it using the methods above, then to set the class of the <body> tag to either light or dark. then you want to put a div with the class of main-div in the <body> tag. Like so:
<body class="dark">
<div class="main-div">
<h1>Hello, World!</h1>
</div>
</body>