p0c-website

Proof of concepts for fun and profit
git clone https://git.in0rdr.ch/p0c-website.git
Log | Files | Refs | Pull requests | README | LICENSE

_lists.scss (435B)


      1 ul,
      2 ol {
      3   list-style-type: none;
      4   margin: 0;
      5   padding: 0;
      6 
      7   &%default-ul {
      8     list-style-type: disc;
      9     margin-bottom: $small-spacing;
     10     padding-left: $base-spacing;
     11   }
     12 
     13   &%default-ol {
     14     list-style-type: decimal;
     15     margin-bottom: $small-spacing;
     16     padding-left: $base-spacing;
     17   }
     18 }
     19 
     20 dl {
     21   margin-bottom: $small-spacing;
     22 
     23   dt {
     24     font-weight: bold;
     25     margin-top: $small-spacing;
     26   }
     27 
     28   dd {
     29     margin: 0;
     30   }
     31 }