mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-11-04 01:48:04 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			34 lines
		
	
	
		
			399 B
		
	
	
	
		
			Sass
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			399 B
		
	
	
	
		
			Sass
		
	
	
	
	
	
//- 💫 CSS > BASE > LAYOUT
 | 
						|
 | 
						|
//- HTML
 | 
						|
 | 
						|
html
 | 
						|
    font-size: $type-base
 | 
						|
 | 
						|
 | 
						|
//- Body
 | 
						|
 | 
						|
body
 | 
						|
    animation: fadeIn 0.25s ease
 | 
						|
    background: $color-back
 | 
						|
    color: $color-front
 | 
						|
 | 
						|
 | 
						|
//- Paragraphs
 | 
						|
 | 
						|
p
 | 
						|
    @extend .o-block, .u-text
 | 
						|
 | 
						|
 | 
						|
//- Links
 | 
						|
 | 
						|
main p a, main table a, main > *:not(footer) li a, .c-aside a
 | 
						|
    @extend .u-link
 | 
						|
 | 
						|
 | 
						|
//- Selection
 | 
						|
 | 
						|
::selection
 | 
						|
    background: $color-theme
 | 
						|
    color: $color-back
 |