37 lines
		
	
	
		
			435 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			435 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
| @import "sidebar";
 | |
| 
 | |
| 
 | |
| body {
 | |
| 	background-color: #2196F3;
 | |
| 	color: black;
 | |
| 	font-family: Verdana;
 | |
| 	text-align: center;
 | |
| 	margin: 1px;
 | |
| 	cursor: url("/cursor.png"),auto;
 | |
| }
 | |
| 
 | |
| h1 {
 | |
| 	margin: 1px;
 | |
| 	padding: 8px;
 | |
| 	background-color: blue;
 | |
| }
 | |
| 
 | |
| img {
 | |
| 	width: auto;
 | |
| 	height: auto;
 | |
| }
 | |
| 
 | |
| .overlay {
 | |
| 	pointer-events: none;
 | |
| 	position: fixed;
 | |
| 	width: 100%;
 | |
| 	height: 100%;
 | |
| 	top: 0; bottom: 0;
 | |
| 	left: 0; right: 0;
 | |
| 	z-index: 1000001;
 | |
| }
 | |
| 
 | |
| .inline {
 | |
| 	height: 1em;
 | |
| }
 |