siga
1/5/2018 - 10:27 PM

Table styling (basic)

Just a bit of table styling for Dynamik/Genesis.

/* ======== A bit of table styling =========== */

table {
	width:100%;
	font-family: Arial, sans-serif;
	font-size: 16px;
}

td,th {
	border:1px solid #ddd;
	padding:8px;
}

tr:nth-child(even) {
	background-color:#f2f2f2;
}

tr:hover {
	background-color:#ddd;
}

th {
	padding-top:12px;
	padding-bottom:12px;
	text-align:left;
	background-color:#77A834; /*change background-color to something matching the design*/
	color:white;
}