Created
July 17, 2017 14:17
-
-
Save bcruddy/9e95f21478615f489a6ff1a2526fec69 to your computer and use it in GitHub Desktop.
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
@media screen and (max-width: 767px) { | |
table.table-magic { | |
border: 0; | |
} | |
table.table-magic thead { | |
display: none; | |
} | |
table.table-magic tr { | |
margin-bottom: 10px; | |
display: block; | |
border: 1px solid #ddd; | |
border-bottom: 2px solid #ddd; | |
} | |
table.table-magic td { | |
display: block; | |
position: relative; | |
text-align: right; | |
font-size: 13px; | |
border-bottom: 1px dotted #ccc; | |
} | |
table.table-magic td:last-child { | |
border-bottom: 0; | |
} | |
table.table-magic td:before { | |
content: attr(data-label); | |
position: absolute; | |
left: 5px; | |
text-transform: uppercase; | |
font-weight: bold; | |
} | |
table.table-magic td.a-status > .btn-block { | |
display: inline-block; | |
width: 60px; | |
} | |
table.table-magic td.a-message { | |
padding-left: 70px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment