mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-11-04 09:57:26 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Sass
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Sass
		
	
	
	
	
	
//- 💫 CSS > VARIABLES
 | 
						|
 | 
						|
// Settings and Sizes
 | 
						|
 | 
						|
$type-base: 11px
 | 
						|
 | 
						|
$nav-height: 45px
 | 
						|
$content-width: 1250px
 | 
						|
$sidebar-width: 200px
 | 
						|
$aside-width: 30vw
 | 
						|
$aside-padding: 25px
 | 
						|
 | 
						|
$logo-width: 85px
 | 
						|
 | 
						|
$grid: ( quarter: 4, third: 3, half: 2, two-thirds: 1.5, three-quarters: 1.33 )
 | 
						|
$breakpoints: ( sm: 768px, md: 992px, lg: 1200px )
 | 
						|
$headings: (1: 3, 2: 2.6, 3: 2, 4: 1.8, 5: 1.5)
 | 
						|
 | 
						|
 | 
						|
//  Fonts
 | 
						|
 | 
						|
$font-primary: "Source Sans Pro", Tahoma, Geneva, sans-serif !default
 | 
						|
$font-code: 'Source Code Pro', Consolas, 'Andale Mono', Menlo, Monaco, Courier, monospace !default
 | 
						|
 | 
						|
 | 
						|
// Colors
 | 
						|
 | 
						|
$colors: ( blue: #09a3d5, red: #d9515d )
 | 
						|
 | 
						|
$color-back: #fff !default
 | 
						|
$color-front: #1a1e23 !default
 | 
						|
$color-dark: lighten($color-front, 20) !default
 | 
						|
 | 
						|
$color-theme: map-get($colors, $theme)
 | 
						|
$color-theme-dark: darken(map-get($colors, $theme), 5)
 | 
						|
 | 
						|
$color-subtle: #ddd !default
 | 
						|
$color-subtle-light: #f6f6f6 !default
 | 
						|
$color-subtle-dark: #949e9b !default
 | 
						|
 | 
						|
$color-red: #d9515d
 | 
						|
$color-green: #3ec930
 | 
						|
$color-yellow: #f4c025
 | 
						|
 | 
						|
$syntax-highlighting: ( comment: #949e9b, tag: #3ec930, number: #B084EB, selector: #FFB86C, operator: #FF2C6D, function: #09a3d5, keyword: #45A9F9, regex: #f4c025 )
 | 
						|
 | 
						|
$pattern: $color-theme url("/assets/img/pattern_#{$theme}.jpg") center top repeat
 | 
						|
$pattern-overlay: transparent url("/assets/img/pattern_landing.jpg") center -138px no-repeat
 |