You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			55 lines
		
	
	
		
			1007 B
		
	
	
	
		
			CSS
		
	
			
		
		
	
	
			55 lines
		
	
	
		
			1007 B
		
	
	
	
		
			CSS
		
	
.main {
 | 
						|
    margin:10px;
 | 
						|
    padding:4px;
 | 
						|
    display:grid;
 | 
						|
    grid-template-columns: 50% 50% ; gap:4px;
 | 
						|
    grid-template-rows: 48px 64px auto 32px;
 | 
						|
    font-family: sans-serif;
 | 
						|
    font-weight: lighter;
 | 
						|
    font-size:18px;
 | 
						|
    line-height: 1.5;
 | 
						|
    justify-items: normal;
 | 
						|
    ;
 | 
						|
    height:96vh;
 | 
						|
}
 | 
						|
.main .content {
 | 
						|
    grid-row:3;
 | 
						|
    grid-column: 1 ;
 | 
						|
    text-wrap: wrap;
 | 
						|
    height:100%;
 | 
						|
    display:grid;
 | 
						|
    align-content: start;
 | 
						|
   
 | 
						|
   
 | 
						|
    
 | 
						|
}
 | 
						|
 | 
						|
.main .content #index {
 | 
						|
    text-align: left;
 | 
						|
    text-wrap: wrap;
 | 
						|
}    
 | 
						|
 | 
						|
p {
 | 
						|
    margin-top:22px;
 | 
						|
}
 | 
						|
table {
 | 
						|
    width:99%;
 | 
						|
    border: 1px solid #CAD5E0;
 | 
						|
}
 | 
						|
table td {padding:4px; margin:4px;}
 | 
						|
table thead {
 | 
						|
    
 | 
						|
    font-weight:bold;
 | 
						|
    background-color:#f3f3f3;
 | 
						|
}
 | 
						|
 | 
						|
.bold {font-weight:bold}
 | 
						|
.small-text {font-size:12px; font-weight:lighter; color :#000000;}
 | 
						|
.active {cursor:pointer; padding:2px; margin:2px; border-bottom:2px solid transparent}
 | 
						|
.active:hover {border-bottom-color: #4682b4;}
 | 
						|
 | 
						|
/**
 | 
						|
* 
 | 
						|
*/
 | 
						|
.large-text {font-weight:bold; font-size:28px;}
 | 
						|
     |