angelovcom.net

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

_lists.scss (350B)


      1 ul,
      2 ol {
      3 	padding-left: ( 1 * $size__spacing-unit );
      4 }
      5 
      6 ul {
      7 	list-style: disc;
      8 
      9 	ul {
     10 		list-style-type: circle;
     11 	}
     12 }
     13 
     14 ol {
     15 	list-style: decimal;
     16 }
     17 
     18 li {
     19 	line-height: $font__line-height-body;
     20 }
     21 
     22 li > ul,
     23 li > ol {
     24 	padding-left: ( 2 * $size__spacing-unit );
     25 }
     26 
     27 dt {
     28 	font-weight: bold;
     29 }
     30 
     31 dd {
     32 	margin: 0 $size__spacing-unit $size__spacing-unit;
     33 }