stacktable.css 565 B

123456789101112131415161718192021222324252627282930313233343536
  1. .stacktable {
  2. width: 100%;
  3. }
  4. .st-head-row {
  5. padding-top: 1em;
  6. text-align: center;
  7. }
  8. .st-head-row.st-head-row-main {
  9. font-size: 1.5em;
  10. padding-top: 0;
  11. text-align: center;
  12. }
  13. .st-key {
  14. width: 49%;
  15. text-align: right;
  16. padding-right: 1%;
  17. }
  18. .st-val {
  19. width: 49%;
  20. padding-left: 1%;
  21. }
  22. /* RESPONSIVE EXAMPLE */
  23. .stacktable.large-only {
  24. display: table;
  25. }
  26. .small-only {
  27. display: none;
  28. }
  29. @media (max-width: 800px) {
  30. .large-only {
  31. display: none;
  32. }
  33. .stacktable.small-only {
  34. display: table;
  35. }
  36. }