@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@500&display=swap');
@import url(style.css) screen;
@import url(style.css) print;

html {
    display: flex;
    justify-content: center;
    background-color: #101010;
}

html,
body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans KR', sans-serif;
    color: white;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* 인터넷익스플로러 */
}

body {
    display: flex;
    flex-direction: column;
    width: 60vw;
    background-color: #191919;
}

* {
    user-select: none;
    white-space: nowrap;
}

::-webkit-scrollbar {
    background-color: #00000000;
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    border-radius: 100em;
    background-color: #00000030;
    border: 1px #FFFFFF30 solid;
}

a {
    color: white;
    text-decoration: none;
}

#center {
    height: 90vh;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    overflow: auto;
}
#center .item {
    width: calc(100% - 2.4vh);
    height: 5vh;
    padding: 1.2vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.25s;
}
#center .item:hover {
    background-color: #434343;
}
#center .item span {
    font-size: 1.3vw;
    font-weight: 500;
}
.item div {
    height: 100%;
    display: flex;
    align-items: center;
}
.item .typename {
    width: 60%;
}
.item .size {
    width: 10%;
    text-align: right;
}
.item .date {
    width: 20%;
    text-align: right;
}
.icon {
    margin-right: 0.5vw;
    width: 3.5vh;
}
.lockIcon {
    height: 3vh;
    margin-right: 0.25vw;
}
span.name {
    /*width: 85%;*/
    overflow: hidden;
    text-overflow: ellipsis;
}
span {
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
}

.thumbnail {
    position: fixed;
    height: 40vh;
    border-radius: 1vw;
    pointer-events: none;
}

@media only screen and (max-width:1000px) {
    html,body {
        width: 100vw;
        background-color: #191919;
    }
    #center .item span {
        font-size: 2.5vw;
    }
    .thumbnail {
        opacity: 0;
    }
}