/* CSS for installation pages */

/* General formatting of paragraph styles =================================================== */

BODY, TD {
  font-family: Verdana,Arial,Helvetica,sans-serif;
}

BODY {
  max-width: 800px;
  margin: 33px auto;
  padding: 0 20px;
  border-left: 2px solid silver;
  border-right: 2px solid silver;
}

H1 {
  background-color: chartreuse;
  padding: 0.5em;
}

H2 {
  border-bottom: 2px solid black;
 }

P {
  line-height: 1.4em;
  color: darkSlateGrey;
}

PRE { 
  font-size: 1em; 
  padding-left: 5em;
  color: green; 
  line-height: 1.1em; 
}

TT {
  color: green; 
  font-size: 1.3em; 
  font-weight: bold;
}
  

/* Table and List formatting  =============================================================== */

UL {
  line-height: 1.4em;
  font-size: 0.9em;
}

TABLE				{ border-collapse: separate; }
TD 				{ line-height: 1.4em; 			padding: 0.2em 0.4em; } 
TR:nth-child(odd)		{ background-color: lavender }
TR:nth-child(even)		{ background-color: aliceblue }
TH				{ background-color: LightSkyBlue; 	padding: 0.2em 0.4em; }


/* Specific element embellishments ========================================================== */

DIV.php_results {
  color: green;
  font-weight: bold;
  line-height: initial;
}

SPAN.highlighter {
  background-color: yellow;
  color: black;
  padding-left: 0.3em;
  padding-right: 0.3em;
}

B.footer_date { white-space: nowrap; }

