Differences between revisions 10 and 11
Revision 10 as of 2018-07-31 08:56:06
Size: 2531
Editor: SamatJain
Comment:
Revision 11 as of 2018-08-07 20:47:10
Size: 2612
Editor: SamatJain
Comment:
Deletions are marked like this. Additions are marked like this.
Line 88: Line 88:

= Background colors =

 * Warm off-white: background-color: hsl(30,90%,98%)

One

background-color: #f2f2f2;
/* Sidebar */
background-color: #f7f7f7

text-color: black;

a:link { color: #1863a1 }
a:visited { color: #751590 }
a:focus { color: #0181eb }
a:hover { color: #0181eb }
a:active { color: #01579f }

Highlight styles

Lorem Ipsum e-mail: background-color: gold, which is the same as Gary Johnson's e-mail campaign: #FFD700

Highlight text-shadow, from http://www.audiocheck.net/testtones_highdefinitionaudio.php:

text-shadow: -3px 0px 3px yellow, 3px 0px 3px yellow, 6px 0px 6px yellow, -6px 0px 6px yellow;

Flexbox

Animations

  • Animista: Wizard that lets you browse and create keyframe-based animations

Twitter Bootstrap

Bootstrap themes

Ems for block widths

  • 20 em ≈ 320px
  • 30 em ≈ 480px
  • 40 em ≈ 640px
  • 50 em ≈ 800px
  • 60 em ≈ 960px
  • 64 em ≈ 1024px

from Responsive enhancement

Clearfix

Clearfix is the original method for clearfix. At SitePoint, apparently using overflow: auto also works for container elements.

Spacing

letter-spacing: .06em;

line-height: 1.25em;

line-height: 10.9em;

h2 { margin-bottom: 0.3em; }

CSS frameworks

Quoted file sizes are minified + gzipped.

  • Bulma: CSS framework based on Flexbox. Has widgets available. 19.7 KB

  • Pure.css. Minimal CSS framework, 3.8 KB. From Yahoo. 6 KB.

Text colors

From oldblog.samat.org (Drupal-powered blog):

  • Text: main text is #1d1916 and some lighter text is #4F4F4F

Background colors

  • Warm off-white: background-color: hsl(30,90%,98%)

SamatsWiki: CascadingStyleSheets (last edited 2021-11-03 07:16:48 by SamatJain)