proof reading

This commit is contained in:
Talon Poole 2021-01-29 22:36:30 +00:00
parent 990667c2a7
commit d684b1ad90
2 changed files with 5 additions and 13 deletions

View file

@ -72,8 +72,10 @@ man gmi-web
### example
Render .html for all the .gmi files in the current directory
```
gmi-web -r ~/gmi /srv/html
gmi-web $(find . -name \*.gmi)
```
## gmi.css
@ -85,17 +87,7 @@ The *--foreground* and *--background* variables will be inverted when
*prefers-color-scheme* is "dark" which is a system-level preference on
devices.
Any of the variables can be customized by adding a higher priority .css file
that overrides them.
```css
html {
--foreground: #333333;
--background: #FFFFFF;
}
```
Or maybe by adding a style to the `<html>` element.
Any of the variables can be customized by adding a style to the `<html>` element.
```html
<html style="--foreground:#555555; --background:#9EEBCF;">

View file

@ -29,7 +29,7 @@ and mobile-friendly fashion!
# EXAMPLES
Render all the .gmi files in the current directory to .html
Render .html for all the .gmi files in the current directory
```
gmi-web $(find . -name \*.gmi)