Skip to content
Snippets Groups Projects
Commit 843999c0 authored by Raniere Silva's avatar Raniere Silva
Browse files

Merge pull request #10 from pbanaszkiewicz/fix-table-styles

Fix: styles for tables in SQL lessons
parents e8360ae2 7e4bc12b
Branches
Tags
No related merge requests found
......@@ -466,6 +466,33 @@ section.content {
font-size: 40pt;
}
table {
margin-bottom: 15px;
}
table th, table td {
padding: 5px 10px;
}
table > thead > .header {
background: transparent;
}
table > thead > tr > td, table > thead > tr > th,
table > tbody > tr > td, table > tbody > tr > th,
table > tfoot > tr > td, table > tfoot > tr > th {
border: 1px solid #DDD;
}
table > thead > tr > th,
table > thead > tr > td {
border-bottom-width: 2px;
}
table tbody > tr:nth-of-type(2n+1) {
background-color: #F9F9F9;
}
#header-text {
font-size:20pt;
margin:0;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment