﻿.holygit-page {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #eee;
    background-color: #0001;
}
.holygit-title{
    width: 100%;
    height: 40px;
    background-color: #0002;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 5px 10px;
}
.holygit-title-image {
    transition: 0.2s;
    width: 25px;
}
.holygit-title{
    font-weight: bold;
}
.red-text {
    transition: 0.2s;
    font-size: 18px;
    color: #9f1300;
}
.black-text {
    transition: 0.3s;
    font-size: 16px;
    color: #140909;
}
.holygit-logo {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 100%;
}
    .holygit-logo:hover .holygit-title-image {
        transition: 0.2s;
        opacity: 0.8;
    }
    .holygit-logo:hover .red-text {
        transition: 0.2s;
        font-size: 16px;
        color: #140909;
    }
    .holygit-logo:hover .black-text {
        transition: 0.2s;
        font-size: 18px;
        color: #9f1300;
    }

.holygit-content {
    width: 100%;
    height: 100%;
    overflow: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
}
.holygit-app-list {
    width: 50%;
    min-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.holygit-app-li {
    width: 100%;
    height: 50px;
    padding: 5px 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #fff;
    outline: 1px solid #bbb;
    outline-offset: -3px;
}
.holygit-app-li .app-image {
    height: 90%;
    
}
.holygit-app-li .box{
    font-size: 16px;
    gap: 3px;
}
.holygit-app-li .box .version {
    font-size: 12px;
    font-style: italic;
    color: #9f1300;
}
.holygit-app-li .box .license {
    font-size: 18px;
    color: #9f1300;
}
.holygit-app-li .btn-next {
    height: 80%;
    aspect-ratio: 1 / 1;
    width: auto;
    font-size: 18px;
}