/*
 * peaseblossom.css — site-specific styles for puck.uno.
 * Peaseblossom is the client-side library for puck.uno.
 * Sibling to peaseblossom.js; see peaseblossom.md for scope and the
 * Peaseblossom / jqmin split.
 */

/* ============================================================
 * table.std — simple, clean table.
 *   Apply to <table class="table std">.
 *   <thead> and every <th> render gray; every cell carries a
 *   solid 1px black border.
 * ============================================================ */

table.std {
	border-collapse: collapse;
}

table.std thead {
	background-color: #e0e0e0;
}

table.std th {
	background-color: #e0e0e0;
	font-weight: bold;
	text-align: left;
	padding: 6px 12px;
	border: 1px solid black;
}

table.std td {
	padding: 6px 12px;
	border: 1px solid black;
}