mirror of
				https://github.com/livebook-dev/livebook.git
				synced 2025-11-01 00:06:04 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			376 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			376 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
| @layer utilities {
 | |
|   /* A set of reusable classes */
 | |
| 
 | |
|   .bg-editor {
 | |
|     background-color: #282c34;
 | |
|   }
 | |
| 
 | |
|   .text-editor {
 | |
|     color: #abb2bf;
 | |
|   }
 | |
| 
 | |
|   .font-editor {
 | |
|     font-family: "JetBrains Mono", "Droid Sans Mono", "monospace";
 | |
|     font-size: 14px;
 | |
|   }
 | |
| 
 | |
|   .shadow-xl-center {
 | |
|     box-shadow: 0 0 25px -5px rgba(0, 0, 0, 0.1),
 | |
|       0 0 10px -5px rgba(0, 0, 0, 0.04);
 | |
|   }
 | |
| }
 |