mirror of
				https://github.com/searxng/searxng.git
				synced 2025-11-04 03:27:06 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			257 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			257 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
// Alerts
 | 
						|
 | 
						|
.alert-variant(@background; @border; @text-color) {
 | 
						|
  background-color: @background;
 | 
						|
  border-color: @border;
 | 
						|
  color: @text-color;
 | 
						|
 | 
						|
  hr {
 | 
						|
    border-top-color: darken(@border, 5%);
 | 
						|
  }
 | 
						|
  .alert-link {
 | 
						|
    color: darken(@text-color, 10%);
 | 
						|
  }
 | 
						|
}
 |