diary-website

Website for diary
git clone https://git.in0rdr.ch/diary-website.git
Log | Files | Refs | Pull requests | README | LICENSE

_tables.scss (400B)


      1 table {
      2   border-collapse: collapse;
      3   font-feature-settings: "kern", "liga", "tnum";
      4   margin: $small-spacing 0;
      5   table-layout: fixed;
      6   width: 100%;
      7 }
      8 
      9 th {
     10   border-bottom: 1px solid shade($base-border-color, 25%);
     11   font-weight: 600;
     12   padding: $small-spacing 0;
     13   text-align: left;
     14 }
     15 
     16 td {
     17   border-bottom: $base-border;
     18   padding: $small-spacing 0;
     19 }
     20 
     21 tr,
     22 td,
     23 th {
     24   vertical-align: middle;
     25 }