39 lines
		
	
	
		
			No EOL
		
	
	
		
			561 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			No EOL
		
	
	
		
			561 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
/**
 | 
						|
 * @file styles.css
 | 
						|
 * @version 0.1.0
 | 
						|
 */
 | 
						|
 | 
						|
body {
 | 
						|
    font-family: Arial, sans-serif;
 | 
						|
    margin: 40px;
 | 
						|
}
 | 
						|
 | 
						|
.controls {
 | 
						|
    margin-bottom: 20px;
 | 
						|
}
 | 
						|
 | 
						|
input,
 | 
						|
button {
 | 
						|
    padding: 8px;
 | 
						|
    margin: 5px;
 | 
						|
    border-radius: 4px;
 | 
						|
}
 | 
						|
 | 
						|
.instances ul {
 | 
						|
    list-style-type: none;
 | 
						|
    padding: 0;
 | 
						|
}
 | 
						|
 | 
						|
.instances li {
 | 
						|
    font-family: 'Courier New', Courier, monospace;
 | 
						|
    background: #eaf8ff;
 | 
						|
    padding: 10px;
 | 
						|
    margin: 5px 0;
 | 
						|
    border-radius: 4px;
 | 
						|
    border: 1px solid #ceedfc;
 | 
						|
}
 | 
						|
 | 
						|
.instances li.running {
 | 
						|
    background: #d1ffd1;
 | 
						|
    border: 1px solid #89fd85;
 | 
						|
} |