issue #13 Add Lotte L7 Theme.

This commit is contained in:
paul kim
2025-06-16 16:57:57 +09:00
parent 1eb5513c39
commit c00aac016b
46 changed files with 5295 additions and 0 deletions

View File

@@ -0,0 +1,194 @@
/* =============================
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 .departure {
width: 50%;
height: 100%;
position: absolute;
}
.main .mm .flight .arrival {
left: 52%;
width: 50%;
height: 100%;
position: absolute;
}
.main .mm .flight #title {
font-size: 40px;
color: rgb(235, 235, 235);
height: 46px;
}
.main .mm .flight .departure #title {
text-align:left;
margin-left:10px;
}
.main .mm .flight .arrival #title {
text-align:right;
margin-right:50px;
}
.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 #border_table_bottom {
position:absolute;
top:560px;
margin-left:10px;
width:900px;
height:20px;
background-color: rgba(0,0,0,0.4);
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
}
.main .mm .flight #caution {
top: 590px;
width: 99%;
height:50px;
text-align: right;
color:rgb(180,180,190);
position: absolute;
}
/* .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 방향의 이동버튼 */
}