Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. @media (max-width: 768px) {
  2. .table-collapse {
  3. width: 100%;
  4. & > tfoot,
  5. & > thead {
  6. display: none;
  7. }
  8. & > tbody,
  9. & > tbody > tr,
  10. & > tbody > tr > td,
  11. & > tbody > tr > th {
  12. display: block;
  13. width: auto;
  14. }
  15. & > tbody > tr {
  16. padding-top: 0.5em;
  17. padding-bottom: 0.5em;
  18. & > th {
  19. border: none !important;
  20. padding: 0.25em 0.5em;
  21. text-align: left !important;
  22. &:first-child {
  23. padding-left: 0.5em;
  24. }
  25. &:last-child {
  26. padding-right: 0.5em;
  27. }
  28. }
  29. & > td {
  30. border: none !important;
  31. padding: 0.25em 0.5em 0.25em 35%;
  32. box-shadow: none !important;
  33. text-align: left !important;
  34. position: relative;
  35. &:first-child {
  36. padding-left: 35%;
  37. }
  38. &:last-child {
  39. padding-right: 0.5em;
  40. }
  41. &::before {
  42. content: attr(data-heading);
  43. position: absolute;
  44. top: 0.25em;
  45. left: 0.5em;
  46. width: 35%;
  47. padding-right: 0.25em;
  48. white-space: nowrap;
  49. z-index: 1;
  50. }
  51. }
  52. }
  53. }
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement