60 lines
		
	
	
		
			1017 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1017 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
@import url("openwebrx-header.css");
 | 
						|
@import url("openwebrx-globals.css");
 | 
						|
 | 
						|
body {
 | 
						|
    display: flex;
 | 
						|
    flex-direction: column;
 | 
						|
}
 | 
						|
 | 
						|
#webrx-top-container {
 | 
						|
    flex: none;
 | 
						|
}
 | 
						|
 | 
						|
.openwebrx-map {
 | 
						|
    flex: 1 1 auto;
 | 
						|
}
 | 
						|
 | 
						|
h3 {
 | 
						|
    margin: 10px 0;
 | 
						|
    text-align: center;
 | 
						|
}
 | 
						|
 | 
						|
ul {
 | 
						|
    margin-block-start: 5px;
 | 
						|
    margin-block-end: 5px;
 | 
						|
    padding-inline-start: 25px;
 | 
						|
}
 | 
						|
 | 
						|
/* don't show the filter in it's initial position */
 | 
						|
.openwebrx-map-legend {
 | 
						|
    display: none;
 | 
						|
    background-color: #fff;
 | 
						|
    padding: 10px;
 | 
						|
    margin: 10px;
 | 
						|
}
 | 
						|
 | 
						|
/* show it as soon as google maps has moved it to its container */
 | 
						|
.openwebrx-map .openwebrx-map-legend {
 | 
						|
    display: block;
 | 
						|
}
 | 
						|
 | 
						|
.openwebrx-map-legend ul {
 | 
						|
    list-style-type: none;
 | 
						|
    padding: 0;
 | 
						|
}
 | 
						|
 | 
						|
.openwebrx-map-legend li.square .illustration {
 | 
						|
    display: inline-block;
 | 
						|
    width: 30px;
 | 
						|
    height: 20px;
 | 
						|
    margin-right: 10px;
 | 
						|
    border-width: 2px;
 | 
						|
    border-style: solid;
 | 
						|
}
 | 
						|
 | 
						|
.openwebrx-map-legend select {
 | 
						|
    background-color: #FFF;
 | 
						|
    border-color: #DDD;
 | 
						|
    padding: 5px;
 | 
						|
}
 |