Drupal investigation

print.css 334B

1234567891011121314151617181920212223242526
  1. body {
  2. margin: 1em;
  3. background-color: #fff;
  4. }
  5. [dir="rtl"] body {
  6. direction: rtl;
  7. }
  8. th {
  9. text-align: left; /* LTR */
  10. color: #006;
  11. border-bottom: 1px solid #ccc;
  12. }
  13. [dir="rtl"] th {
  14. text-align: right;
  15. }
  16. tr:nth-child(odd) {
  17. background-color: #ddd;
  18. }
  19. tr:nth-child(even){
  20. background-color: #fff;
  21. }
  22. td {
  23. padding: 5px;
  24. }