https://github.com/reo7sp/minimal-ok-page
Sane defaults for simple pages with text
https://github.com/reo7sp/minimal-ok-page
html starter-kit web
Last synced: about 1 month ago
JSON representation
Sane defaults for simple pages with text
- Host: GitHub
- URL: https://github.com/reo7sp/minimal-ok-page
- Owner: reo7sp
- Created: 2018-06-26T23:37:22.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-09-09T16:24:24.000Z (over 2 years ago)
- Last Synced: 2025-10-09T05:11:32.278Z (6 months ago)
- Topics: html, starter-kit, web
- Language: HTML
- Homepage: https://mop.oleg.rocks
- Size: 7.81 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# minimal-ok-page
Sane defaults for simple pages with text.
Example: [open page](https://reo7sp.github.io/minimal-ok-page/) or [see raw html](https://raw.githubusercontent.com/reo7sp/minimal-ok-page/master/index.html).
Shortcut to this page: https://mop.oleg.rocks.
>For further styling, it's useful to use https://basehold.it/.
CSS:
```css
body {
font-family: sans-serif;
font-size: 16px;
color: #222222;
margin: 16px;
}
p, li {
line-height: 1.6em;
}
p {
margin: 0.8em 0;
}
a {
color: #0060a0;
text-decoration: none;
border-bottom: 1px solid rgba(0, 96, 160, 0.2);
}
a:hover {
color: #d04000;
border-bottom-color: rgba(208, 64, 0, 0.2);
}
h1 a {
border-bottom-width: 2px;
}
img {
max-width: 100%;
}
.site-container {
max-width: 640px;
margin: 4em auto 6em auto;
}
```