forked from brooksbingham/theme-elegance
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			436 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			436 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
@tailwind base;
 | 
						|
@tailwind components;
 | 
						|
@tailwind utilities;
 | 
						|
 | 
						|
body {
 | 
						|
  @apply bg-white;
 | 
						|
  @apply text-gray-600;
 | 
						|
  @apply font-light;
 | 
						|
}
 | 
						|
 | 
						|
a {
 | 
						|
  @apply text-gray-600;
 | 
						|
}
 | 
						|
 | 
						|
a:hover {
 | 
						|
  @apply text-blue-900;
 | 
						|
  @apply underline;
 | 
						|
  @apply underline-offset-2;
 | 
						|
}
 | 
						|
 | 
						|
.icon-tabler {
 | 
						|
  stroke-width: 1px;
 | 
						|
  fill: none;
 | 
						|
  @apply text-gray-500;
 | 
						|
  @apply stroke-gray-500;
 | 
						|
}
 | 
						|
 | 
						|
a:hover .icon-tabler {
 | 
						|
  @apply stroke-blue-900;
 | 
						|
}
 | 
						|
 | 
						|
ul {
 | 
						|
  @apply !list-inside;
 | 
						|
}
 |