/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 ERROR CHECKING
 This is to determine if deprecated elements are used.
 If so, they should be replaced:
 1a. <font> and
 1b. <font color="xxx">…</font>: Shouldn’t be used.
 CSS should dictate font attributes.
 2. <center>: Shouldn’t be used. CSS should dictate
 horizontal alignment.
 3a. <div align="xxx">…</div>
 3b. <p align="xxx">…</p>
 3c. <table align="xxx">…</table>: Shouldn’t be used.
 CSS should dictate horizontal alignment.

 Based on http://accessites.org/site/2006/07/big-red-angry-text/
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

font, center, div[align], p[align], table[align], font[color] {
  color : #cd0000;
  font-weight : bold;
  background : #eecc11 url(/static/img/warning.png) repeat 0 0;
  margin : 10px;
  padding : 10px;
  border : 2px dashed #cd0000;
  font-size : 2em;
}

/* vim: set fileencoding=utf-8 : -*- coding: utf-8 -*-
 * vim: set sw=4 ts=8 sts=4 expandtab autoindent :
 * -*- tab-width 8 ; indent-tabs-mode: nil -*-
 */
