40 lines
		
	
	
	
		
			454 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
	
		
			454 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
{{/*
 | 
						|
  050_lists.css
 | 
						|
  Eryn Wells <eryn@erynwells.me>
 | 
						|
*/}}
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
/*******
 | 
						|
 * LISTS
 | 
						|
 *******/
 | 
						|
 | 
						|
dl,
 | 
						|
ol,
 | 
						|
ul
 | 
						|
{
 | 
						|
  grid-column: main-start / main-end;
 | 
						|
}
 | 
						|
 | 
						|
ol, ul {
 | 
						|
  padding-inline-start: var(--space-l);
 | 
						|
}
 | 
						|
 | 
						|
li::marker {
 | 
						|
  font-size: var(--text-s);
 | 
						|
}
 | 
						|
 | 
						|
dl {
 | 
						|
  dd {
 | 
						|
    color: var(--text-color-secondary);
 | 
						|
    font-style: italic;
 | 
						|
    line-height: 1.2;
 | 
						|
    margin-inline-start: var(--space-l);
 | 
						|
 | 
						|
    &:has(+ dt) {
 | 
						|
      margin-block-end: var(--space-xs);
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 |