Commit dd431136267584ddf29d18dfcb1a98c1acaa77a1

Authored by Dan Croak
1 parent 60f2bbd1

flash styles

Showing 1 changed file with 29 additions and 0 deletions   Show diff stats
public/stylesheets/screen.css
@@ -9,3 +9,32 @@ body { @@ -9,3 +9,32 @@ body {
9 -moz-border-radius: 24px; 9 -moz-border-radius: 24px;
10 -webkit-border-radius: 24px; } 10 -webkit-border-radius: 24px; }
11 11
  12 +/* flash color */
  13 +
  14 +#flash_success {
  15 + background: seagreen; }
  16 +#flash_failure {
  17 + color: beige;
  18 + background: firebrick; }
  19 +#flash_notice {
  20 + color: snow;
  21 + background: dimgray; }
  22 +
  23 +/* flashes spacing */
  24 +
  25 +#flash {
  26 + margin-bottom: 0.6em; }
  27 +
  28 +#flash_notice, #flash_success, #flash_failure, #errorExplanation ul li {
  29 + padding: 0.6em; }
  30 +
  31 +/* flash scale */
  32 +
  33 +#flash_notice, #flash_success, #flash_failure, #errorExplanation ul li {
  34 + font-size: 1.6em; }
  35 +
  36 +/* flash weighting */
  37 +
  38 +#flash_notice, #flash_success, #flash_failure, #errorExplanation ul li {
  39 + font-weight: bold; }
  40 +