mirror of
				https://github.com/ItsDrike/itsdrike.com.git
				synced 2025-11-03 19:56:36 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
	
		
			500 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
	
		
			500 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
$primary: #E85537;
 | 
						|
$body-bg: #17181C;
 | 
						|
$footer-height: 110px;
 | 
						|
$font-size-base: 1.2rem;
 | 
						|
$headings-margin-bottom: 1.5rem;
 | 
						|
$paragraph-margin-bottom: $headings-margin-bottom * 0.85;
 | 
						|
 | 
						|
@import "node_modules/bootstrap/scss/bootstrap";
 | 
						|
 | 
						|
$navbar-height: 40px;
 | 
						|
$body-color: $gray-300;
 | 
						|
 | 
						|
html, body {
 | 
						|
  color: $body-color;
 | 
						|
}
 | 
						|
 | 
						|
a {
 | 
						|
  color: $primary;
 | 
						|
 | 
						|
  &:hover {
 | 
						|
    transition: color 0.5s;
 | 
						|
    color: $body-color;
 | 
						|
  }
 | 
						|
 | 
						|
  &.colour-invert {
 | 
						|
    color: $body-color;
 | 
						|
 | 
						|
    &:hover {
 | 
						|
      color: $primary;
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 |