16 lines
		
	
	
		
			614 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			614 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
/* Scoped Catppuccin Mocha styling for notes with cssclass: small-text */
 | 
						|
.small-text.markdown-preview-view {
 | 
						|
  font-size: 1.0em;           /* base text size */
 | 
						|
  line-height: 1.5;
 | 
						|
  color: #cdd6f4;             /* Catppuccin Mocha text */
 | 
						|
}
 | 
						|
 | 
						|
/* Headings */
 | 
						|
.small-text.markdown-preview-view h1 { font-size: 2.3em; }
 | 
						|
.small-text.markdown-preview-view h2 { font-size: 1.9em; }
 | 
						|
.small-text.markdown-preview-view h3 { font-size: 1.2em; }
 | 
						|
.small-text.markdown-preview-view h4 { font-size: 0.95em; }
 | 
						|
.small-text.markdown-preview-view h5 { font-size: 0.9em; }
 | 
						|
.small-text.markdown-preview-view h6 { font-size: 0.85em; }
 | 
						|
 |