Last active
December 12, 2015 05:48
-
-
Save pjdietz/4724812 to your computer and use it in GitHub Desktop.
Styles for tables with minimal furniture.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
table.clean { | |
margin-top: 20px; | |
border-collapse: collapse; | |
} | |
table.clean caption { | |
font-weight: bold; | |
font-size: 14px; | |
line-height: 18px; | |
margin-bottom: 10px; | |
} | |
table.clean th, | |
table.clean td { | |
border-bottom: 1px solid #999; | |
padding: 3px 6px; | |
font-size: 12px; | |
line-height: 16px; | |
vertical-align: middle; | |
text-align: left; | |
} | |
table.clean thead th { | |
border-bottom: 2px solid #000; | |
vertical-align: bottom; | |
} | |
table.clean th { | |
font-weight: bold; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment