mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-11-04 01:48:04 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			593 B
		
	
	
	
		
			Sass
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			593 B
		
	
	
	
		
			Sass
		
	
	
	
	
	
//- 💫 CSS > COMPONENTS > BUTTONS
 | 
						|
 | 
						|
.c-button
 | 
						|
    display: inline-block
 | 
						|
    font-weight: bold
 | 
						|
    padding: 0.75em 1em
 | 
						|
    margin-bottom: 1px
 | 
						|
    border: 2px solid
 | 
						|
    border-radius: 2px
 | 
						|
    text-align: center
 | 
						|
    transition: background 0.25s ease
 | 
						|
 | 
						|
    &.c-button--primary
 | 
						|
        background: $color-theme
 | 
						|
        color: $color-back
 | 
						|
        border-color: $color-theme
 | 
						|
 | 
						|
        &:hover
 | 
						|
            background: $color-theme-dark
 | 
						|
            border-color: $color-theme-dark
 | 
						|
 | 
						|
    &.c-button--secondary
 | 
						|
        background: $color-back
 | 
						|
        color: $color-theme
 | 
						|
        border-color: $color-theme
 |