less copy protection, more size visualization
				
			 
			
		 
		
		
		
		
		
		
			25개 이상의 토픽을 선택하실 수 없습니다.
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
	
	
		
			
				
					
						
						
							|  | html {
    height: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    color: #eee;
}
body {
    background: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
}
.entity {
    position: absolute;
    --height: 100px;
    height: var(--height);
    text-align: center;
}
.entity.selected {
    filter: drop-shadow(0px 0px 10px gold);
}
#world {
    min-width: 90vw;
    min-height: 80vh;
}
#menubar {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    min-height: 10vh;
    min-width: 100vw;
    background: #222;
}
.menu-item {
    font-size: 24px;
    color: #ccc;
    margin: 20px;
}
#display {
    width: 100%;
    height: 100%;
    background: #333;
}
 |