18 lines
		
	
	
		
			251 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			251 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
| @import url("reset-to-defaults.css");
 | |
| 
 | |
| .window {
 | |
|   engine: none;
 | |
|   background-image: none;
 | |
|   background-color: lime;
 | |
|   border-radius: 0;
 | |
|   border-style: none;
 | |
| }
 | |
| 
 | |
| .notwindow {
 | |
|   background-color: red;
 | |
| }
 | |
| 
 | |
| .window.notwindow {
 | |
|   background-color: blue;
 | |
| }
 | 
