.f-project-list,.f-project-list-load{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 0;
    margin: 15px 0 0;
}
.f-project-item,.f-project-item:visited{
    background: burlywood;
    color: white;
    border-radius: 5px;
    padding: 15px;
    position: relative;
    height: 120px;
    display: flex;
    flex-direction: column;
    transition: all .3s;
}
.f-project-list-empty{
    width: 100%;
    text-align: center;
    grid-column: 2;
}
.f-project-item-load{
    background: var(--backgroundC);
    border-radius: 5px;
    padding: 15px;
    height: 120px;
    animation:load 1.5s infinite;
}
@keyframes load {
    0% {transform: scale(.8);}
    50% {transform: scale(1);}
    100% {transform: scale(.8);}
}
.f-project-name{
    font-size: 16px;
    text-align: center;
    margin-bottom: 10px;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.f-project-desc{
    font-size: 13px;
    flex: 1;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-align: center;
}
.f-project-info{
    font-size: 12px;
    margin-top: 5px;
    padding-top: 5px;
    display: flex;
}
.f-project-fork{
    margin-left: 5px;
}
.f-project-language{
    margin-left: auto;
}
.f-project-list-load-more{
    text-align: center;
    margin-top: 15px;
}
.f-project-list-load-more a{
    background: var(--backgroundB);
    padding: 10px 15px;
    border-radius: 20px;
    color: var(--colorB);
    font-size: 13px;
}
.f-toc-box{
    display: none;
}
.f-project-item:hover{
    transform: scale(1.05);
}