1
0

style-rtl.less 654 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. @import "colors.less";
  2. body.rtl {
  3. direction: rtl;
  4. blockquote {
  5. border-right: 2px solid @darker-bg-color;
  6. padding-right: 1.6rem;
  7. }
  8. table tr td:first-child,
  9. table tr th:first-child {
  10. border-right: 0;
  11. }
  12. table tr td:last-child,
  13. table tr th:last-child {
  14. border-left: 0;
  15. }
  16. .navigation {
  17. ul {
  18. li {
  19. float: right;
  20. }
  21. }
  22. }
  23. .list {
  24. ul {
  25. li {
  26. span {
  27. text-align: left;
  28. margin-left: 3.0rem;
  29. @media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
  30. text-align: right;
  31. }
  32. }
  33. }
  34. }
  35. }
  36. }