/* ============================= Main Menu Flight Format */ .main .mm .flight { position: absolute; top: 120px; left: 0px; width: 100%; height: 620px; max-height: 620px; padding-left: 0; margin: 0; background-color: rgba(0, 0, 0, .5); filter: drop-shadow(4px 4px 10px rgba(255, 255, 255, 0.8)); overflow: hidden; z-index: 1; display: none; } .main .mm .flight #title { font-size: 40px; color: rgb(235, 235, 235); } .main .mm .flight table { position: absolute; width: 940px; height: 540px; margin-left: 10px; margin-right: 10px; color: rgb(235, 235, 235); text-align: center; white-space: normal; word-break: break-word; border-collapse: collapse; display: block; overflow: auto; } /* .main .mm .flight table::-webkit-scrollbar { display: none; } */ .main .mm .flight table tbody#record { position: absolute; width: 100%; height: 460px; top: 52px; overflow-y: scroll; } .main .mm .flight .tbl_header tr { height: 50px; max-height: 50px; } .main .mm .flight table #airline { width: 118px; max-width: 120px; } .main .mm .flight table #flight { width: 70px; max-width: 70px; } .main .mm .flight table #scheduled { width: 128px; max-width: 130px; } .main .mm .flight table #origin { width: 88px; max-width: 90px; } .main .mm .flight table #destination { width: 122px; max-width: 124px; } .main .mm .flight table #type { width: 148px; max-width: 150px; } .main .mm .flight table #gate { width: 58px; max-width: 60px; } .main .mm .flight table td#status { width: 168px; max-width: 169px; } .main .mm .flight table th#airline { border-top-left-radius: 10px; } .main .mm .flight table th#status { width: 168px; max-width: 169px; border-top-right-radius: 10px; } .main .mm .flight table th { font-size: 20px; color: rgb(235, 235, 235); background: rgba(0, 0, 0, 0.4); } .main .mm .flight table td { font-size: 20px; color: rgb(235, 235, 235); background: rgba(0, 0, 0, 0.2); } .main .mm .flight ::-webkit-scrollbar { display: block; width: 20px; /* 세로축 스크롤바 길이 */ height: 20px; /* 가로축 스크롤바 길이 */ } .main .mm .flight ::-webkit-scrollbar-track { background-color: lightblue; } .main .mm .flight ::-webkit-scrollbar-track-piece { background-color: gray; } .main .mm .flight ::-webkit-scrollbar-thumb { border-radius: 8px; background-color: rgba(0, 0, 0, 0.7); } .main .mm .flight ::-webkit-scrollbar-button:start { background-color: orange; /* Top, Left 방향의 이동버튼 */ } .main .mm .flight ::-webkit-scrollbar-button:end { background-color: orange; /* Bottom, Right 방향의 이동버튼 */ }