mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-11-04 01:48:04 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			38 lines
		
	
	
		
			423 B
		
	
	
	
		
			Sass
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			423 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,
 | 
						|
main aside a
 | 
						|
    @extend .u-link
 | 
						|
 | 
						|
 | 
						|
//- Selection
 | 
						|
 | 
						|
::selection
 | 
						|
    background: $color-theme
 | 
						|
    color: $color-back
 | 
						|
    text-shadow: none
 |