diff --git a/README.md b/README.md index 782bc7f..9adf4af 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ ## Why? -I commonly make quick demo pages or websites with simple content. For these, I don't want to spend time styling them but don't like the uglyness of the default styles. +I commonly make quick demo pages or websites with simple content. For these, I don't want to spend time styling them but don't like the ugliness of the default styles. Water.css is a css framework that doesn't require any classes. You just include it in your `
` and forget about it, while it silently makes everything nicer. @@ -41,9 +41,7 @@ Well, there's a dark theme and a light theme. If you want the light theme, use ` No other classes or code is required to make Water.css work. If you want a specific version, you can replace `@latest` with `@version`. See [all the versions](https://github.com/kognise/water.css/releases). -Oh, you want a demo you say? Cheeky fellah! - -[Well, here's your demo.](https://kognise.github.io/water.css/) +**Oh, you want a demo you say?** Cheeky fellah! [Well, here's your demo.](https://kognise.github.io/water.css/) Don't like how it looks? Feel free to submit an issue or PR with suggestions. @@ -78,6 +76,10 @@ Do you want to make your own theme different from the light or dark themes? Sinc - `$form-placeholder` - `$form-text` +Wanna quickly try out theming without installing anything or just explore our build environment? + +[](https://repl.it/github/https://github.com/amasad/water.css?lang=nodejs&ref=button) + ### Based on an existing theme You can base your theme off of the existing light or dark themes, which already have some variables predefined to make it easier for you. @@ -122,4 +124,5 @@ You can also only import parts you want, but this is not recommended. See the `s - [Blockquotes](https://github.com/kognise/water.css/issues/13) - Add a screenshot -- Jekyll theme +- [Jekyll theme](https://github.com/kognise/water.css/issues/18) +- [Radio buttons](https://github.com/kognise/water.css/issues/22) diff --git a/dev.js b/dev.js deleted file mode 100644 index 7223e11..0000000 --- a/dev.js +++ /dev/null @@ -1,75 +0,0 @@ -const express = require('express') -const app = express() -const http = require('http').Server(app) -const io = require('socket.io')(http) -const fs = require('fs-extra') -const chokidar = require('chokidar') -const sass = require('node-sass') - -const script = ` -const socket = io() -socket.on('reload', () => location.reload()) -` - -app.get('/', async (req, res) => { - console.log('> Serving index') - const html = await fs.readFile('index.html') - const injected = html.toString().replace('', `