1234567891011121314151617181920212223242526272829303132 |
- /* minimal CSS and no JS is the way to go :-) */
- /* comments are ok; they'll be stripped later */
- body {
- /* sans fonts are just nicer for the web */
- font-family: "Cantarell", sans-serif;
-
- /* studies show (jaja) that people read better vertically
- * I happen to agree, so we enforce this with clever margins. */
- max-width: 30em;
- margin: 0px auto;
- padding: 0em 1em 1em 1em;
- line-height: 1.6;
- }
- li {
- /* slightly nicer bullets */
- list-style-type: square;
-
- /* prevent lists from feeling cluttered */
- padding-top: 0.5em;
- padding-bottom: 0.5em;
- }
- /* center highest level headers and dates */
- header, h1 { text-align: center; }
- a {
- text-decoration: none;
- }
|