 a3734cc6ab
			
		
	
	
		a3734cc6ab
		
			
		
	
	
	
	
		
			
			- Esbuild needs css imports to be on the top of the file for them to resolve properly Signed-off-by: Akshit Garg <garg.akshit@gmail.com>
		
			
				
	
	
		
			66 lines
		
	
	
		
			941 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			941 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
| /* This file is for your main application css. */
 | |
| @import "tailwindcss/base";
 | |
| @import "tailwindcss/components";
 | |
| @import "tailwindcss/utilities";
 | |
| @import "./highlight.css";
 | |
| 
 | |
| @font-face {
 | |
|   font-family: "JetBrains Mono";
 | |
|   src: url(/fonts/jetbrains_mono_variable.ttf);
 | |
|   font-weight: 100 1000;
 | |
|   font-stretch: 25% 151%;
 | |
| }
 | |
| 
 | |
| * {
 | |
|   font-family: "JetBrains Mono", monospace;
 | |
|   color: white;
 | |
|   font-size: 14px;
 | |
|   font-weight: bold;
 | |
| }
 | |
| 
 | |
| html,
 | |
| body {
 | |
|   width: 100%;
 | |
|   height: 100%;
 | |
| }
 | |
| 
 | |
| a:hover {
 | |
|   color: #ff9800;
 | |
| }
 | |
| 
 | |
| header {
 | |
|   background-color: #1a1a1a;
 | |
| }
 | |
| 
 | |
| code {
 | |
|   font-family: "JetBrains Mono", monospace;
 | |
| }
 | |
| 
 | |
| code {
 | |
|   white-space: pre;
 | |
|   font-size: 14px;
 | |
|   font-weight: bold;
 | |
| }
 | |
| 
 | |
| textarea {
 | |
|   font-size: 14px;
 | |
|   font-weight: bold;
 | |
| }
 | |
| 
 | |
| .alert {
 | |
|   width: 100%;
 | |
|   text-align: center;
 | |
| }
 | |
| 
 | |
| .alert-info {
 | |
|   background-color: #1ed98e;
 | |
|   color: black;
 | |
|   font-weight: bold;
 | |
| }
 | |
| 
 | |
| .alert-danger {
 | |
|   background-color: #ff9800;
 | |
|   color: black;
 | |
|   font-weight: bold;
 | |
| }
 |