balmet.com

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

_style.scss (595B)


      1 ul,
      2 ol {
      3 	font-family: var(--list--font-family);
      4 	margin: 0;
      5 	padding-left: calc(2 * var(--global--spacing-horizontal));
      6 
      7 	// Utility classes
      8 	&.aligncenter {
      9 		list-style-position: inside;
     10 		padding: 0;
     11 	}
     12 
     13 	&.alignright {
     14 		list-style-position: inside;
     15 		text-align: right;
     16 		padding: 0;
     17 	}
     18 }
     19 
     20 ul {
     21 	list-style-type: disc;
     22 
     23 	ul {
     24 		list-style-type: circle;
     25 	}
     26 }
     27 
     28 ol {
     29 	list-style-type: decimal;
     30 
     31 	ul {
     32 		list-style-type: circle;
     33 	}
     34 }
     35 
     36 dt {
     37 	font-family: var(--definition-term--font-family);
     38 	font-weight: bold;
     39 }
     40 
     41 dd {
     42 	margin: 0;
     43 	padding-left: calc(2 * var(--global--spacing-horizontal));
     44 }