site

personal website, served at mordaunt.dev/site
Log | Files | Refs

_base_rtl.scss (357B)


      1 body.rtl {
      2   direction: rtl;
      3 
      4   pre {
      5     direction: ltr;
      6   }
      7 
      8   blockquote {
      9     border-left: none;
     10     border-right: 2px solid $alt-bg-color;
     11     padding-left: 0;
     12     padding-right: 1.6rem;
     13   }
     14 
     15   table tr td:first-child,
     16   table tr th:first-child {
     17     border-right: 0;
     18   }
     19 
     20   table tr td:last-child,
     21   table tr th:last-child {
     22     border-left: 0;
     23   }
     24 }