/* web development styles */

/* CSS HEX
--prussian-blue: #012a4aff;
--indigo-dye: #013a63ff;
--indigo-dye-2: #01497cff;
--usafa-blue: #014f86ff;
--sapphire-blue: #2a6f97ff;
--celadon-blue: #2c7da0ff;
--blue-green: #468fafff;
--maximum-blue: #61a5c2ff;
--dark-sky-blue: #89c2d9ff;
--light-blue: #a9d6e5ff;
*/

@import url("colours.css");
@import url("typography.css");

/* the .homepageintro has been added to paragrpahs
   on course home pages such as the home page for
   CSS Essential Training so that I can style these
   sepearately from other paragraphs
*/
.courseintro {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	font-size: 14px;
	color: #01497cff;
	margin: 12px 0;
}

.codesample {
	padding: 16px 32px;
	background: white;
	color: black;
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
	font-size: 18px;
	font-weight: 700;
}

.caption {
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
	color: black;
	font-weight: 700;
}

.error {
	padding: 16px 32px;
	background: #010101;
	color: darkred;
}

.p_quotation {
	font-size: 18px;
	font-weight: 700;
	color: darkblue;
	padding: 12px;
}

high {
	background-color: black;
	color: goldenrod;
}

h3 {
        font-size: 18px;
        font-weight: 700;
        background-color: antiquewhite;
        color: darkgreen;
}

th {
	background: black;
	color: antiquewhite;
}

td {
	background: antiquewhite;
	color: black;
	border: solid 1px black;
}

.blue {
	color: darkblue;
	background-color: aqua;
}