Fixing table and other styles

This commit is contained in:
Jori Lallo 2016-09-06 22:42:34 -07:00
parent 6c4b4b5129
commit f4d1e62c13
2 changed files with 51 additions and 5 deletions

View File

@ -1,6 +1,6 @@
.container {
width: 100%;
padding: 20px;
padding: 20px 20px 40px 20px;
}
.document {
@ -29,7 +29,54 @@
}
}
pre {
box-shadow: 1px 1px 1px #f5f5f5;
// pre {
// box-shadow: 1px 1px 1px #f5f5f5;
// }
table {
width: 100%;
overflow: auto;
display: block;
border-spacing: 0;
border-collapse: collapse;
thead, tbody {
width: 100%;
}
thead {
tr {
border-bottom: 2px solid #eee;
}
}
tbody {
tr {
border-bottom: 1px solid #eee;
}
}
tr {
background-color: #fff;
// &:nth-child(2n) {
// background-color: #f8f8f8;
// }
}
th, td {
text-align: left;
border: 1px 0 solid #eee;
padding: 5px 20px 5px 0;
&:last-child {
padding-right: 0;
width: 100%;
}
}
th {
font-weight: bold;
}
}
}

View File

@ -87,8 +87,7 @@ blockquote {
}
hr {
width: 75%;
margin-top: 1.5em;
margin-bottom: 1.5em;
margin: 3em auto;
border: 0;
border-bottom-width: 1px;
border-bottom-style: solid;