angelovcom.net

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

_editor.scss (468B)


      1 ul,
      2 ol {
      3 	font-family: var(--list--font-family);
      4 	margin: var(--global--spacing-vertical) 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 		text-align: center;
     12 	}
     13 
     14 	&.alignright {
     15 		list-style-position: inside;
     16 		padding: 0;
     17 		text-align: right;
     18 	}
     19 }
     20 
     21 li {
     22 
     23 	> ul,
     24 	> ol {
     25 		margin: 0;
     26 	}
     27 }
     28 
     29 dt {
     30 	font-family: var(--definition-term--font-family);
     31 	font-weight: bold;
     32 }