28

Hello, CSS! – A CSS template focused on readability

 5 years ago
source link: https://www.tuicool.com/articles/hit/IfErQr
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

Hello, CSS!

Hello, CSS! is a CSS template which styles most elements to neutral and aesthetically pleasing defaults. I copy/pasted variants of this so often I figured I might as well put a cleaned up and annotated version somewhere.

I encourage you to pick ’n choose what you need, rather than insert everything.

Design principles

Good typography can help your reader devote less attention to the mechanics of reading and more attention to your message. Conversely, bad typography can distract your reader and undermine your message.

—Matthew Butterick, Practical Typography

  1. Pleasant defaults that should work well for most websites.
  2. Main focus is text and good typography.
  3. Simplicity matters: easy to extend or modify.
  4. Works on all browser, screen sizes, assistive technology, and when printed.

Example pages.

Usage

There are several files, mix-and-match as you want.

There are only a few classes (see the table below); for the most part element selectors are used (e.g. blockquote { .. } instead of .blockquote { .. } ).

The files are brief and well annotated, and a number of styles have commented-out alternatives. I encourage you to read and modify to your preference, rather than blindly copy/paste.

Not every last element is styled. For some things – such as <abbr> – it’s fine to rely on the browser defaults, small differences are okay. Other things – such as forms – tend to be quite application-specific and is a bit outside of the scope of this project, as the main goal is for text websites, not interactive ones (note: I might change my mind on this later).

Feel free to open an issue if you’re missing something in particular.

HTML example

A typical HTML page might look something like:

<body>
	<div class="center">
		<a href="/">Home</a>
		<a href="/weblog">Weblog</a>
	</div>

	<div class="page">
		<h1>Main content</h1>
		<p>..</p>

		<div class="postscript"><strong>Footnotes</strong>
			..
		</div>
		<div class="postscript"><strong>Feedback</strong>
			..
		</div>
	</div>

	<div class="center" style="text-align: right">
		Copyright © 2010–2018 Martin Tournoij <[email protected]><br>
		This document is licensed under a
		<a rel="license" href="http://creativecommons.org/licenses/by/4.0/">
			cc-by 4.0 license
		</a>.
	</div>
</body>

Classes

Class File Purpose .center base.css Center-align the main content. .page base.css Main page body. .page-a4 base.css A4 page size; useful when producing pages where printing is high priority (e.g. a CV). .page-letter base.css U.S. letter page size. .full base.css Put a pre or table element over the full width of a .page, including margins. .postscript postscript.css Page content; for e.g. footnotes or feedback section.

Included files

File Description base.css Basic defaults. aside.css Content in margin. blockquote.css Decorative quotation marks around blockquote. postscript.css P.S. content, such as footnotes. permalink.css Permalink markers in headers.

The dist/ directory contains versions without extensive annotations, as well as an all.css which contains all of the above files.

You can use the singlepage tool to inline CSS files in to a document with <style> tags.

“Variables”

In the interest of simplicity the project doesn’t use a CSS pre-processor; I couldn’t find any that's simple and lightweight enough to my liking. Instead, variables are marked with /*var*/ just before the value, without a space. For example:

margin-left: /*padx*/-4em
width: calc(100% + /*padx*/8em);

You can list all variables with something like grep '/\*\w\+\*/' *.css . Here's a list of the used variables:

Variable Default Description bodywidth 54rem Width of main body text padx 4rem Padding to the side of the body pady 4rem Padding to the top and bottom of the body bgcolor #fff Background colour of main body text textcolor #252525 Colour of main body text

License

The Libre Baskerville font in the fonts directory is distributed under the SIL Open Font License 1.1. See fonts/LICENSE .

Everything else is in the public domain. I renounce all copyright, and don’t care what you do with it. Since this is not possible in all legal jurisdictions I’ve also attached a modified copy of the ISC license which replaces the attribution clause with the text “without any restrictions”.

Copyright © 2019 Martin Tournoij

Permission to use, copy, modify, and/or distribute this software for any purpose
with or without fee is hereby granted, without any restrictions.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
THIS SOFTWARE.

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK