打开/关闭菜单
打开/关闭外观设置菜单
打开/关闭个人菜单
未登录
未登录用户的IP地址会在进行任意编辑后公开展示。

用户:RedDragon/common.css:修订间差异

来自Rizline中文维基
RedDragon留言 | 贡献
无编辑摘要
RedDragon留言 | 贡献
无编辑摘要
第1行: 第1行:
.home-card--button {
    position: relative;
    overflow: hidden;
}
.home-card__foreground {
    position: absolute;
    left: 15px;
    top: 50%;
    color: white;
    font-weight: bold;
    user-select: none;
    pointer-events: none;
    transform: translateY(-50%);
    z-index: 2;
}
.home-card__background::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            transparent 100%);
    z-index: 1;
}
/* 曲目信息infobox的修复 */
.infobox {
    padding-left: 13px;
}
@media (max-width: 510px) {
    .infobox {
        float: none;
        margin-left: 0;
        margin-bottom: 20px;
        order: 1;
    }
    .citizen-section {
        display: flex;
        flex-direction: column;
    }
    .citizen-section>p {
        width: 100%;
        margin-top: 20px;
        order: 2;
    }
}
/*红龙的神秘css*/
/* 首页背景缩放 */
/* 首页背景缩放 */
#home-nav .home-card {
#home-nav .home-card {
第17行: 第82行:
#home-nav .home-card:hover .home-card__background img {
#home-nav .home-card:hover .home-card__background img {
     transform: scale(1.07);
     transform: scale(1.07);
}
/* 曲目信息infobox的修复 */
.infobox{
padding-left: 13px;
}
@media (max-width: 510px) { 
  .infobox {
    float: none;
    margin-left: 0;
    margin-bottom: 20px;
    order: 1;
  }
 
  .citizen-section {
    display: flex;
    flex-direction: column;
  }
  .citizen-section > p {
    width: 100%;
    margin-top: 20px;
    order: 2;
  }
 
}
}

2025年4月10日 (四) 19:39的版本

.home-card--button {
    position: relative;
    overflow: hidden;
}

.home-card__foreground {
    position: absolute;
    left: 15px;
    top: 50%;
    color: white;
    font-weight: bold;
    user-select: none;
    pointer-events: none;
    transform: translateY(-50%);
    z-index: 2;

}

.home-card__background::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            transparent 100%);
    z-index: 1;
}


/* 曲目信息infobox的修复 */
.infobox {
    padding-left: 13px;
}

@media (max-width: 510px) {
    .infobox {
        float: none;
        margin-left: 0;
        margin-bottom: 20px;
        order: 1;
    }

    .citizen-section {
        display: flex;
        flex-direction: column;
    }

    .citizen-section>p {
        width: 100%;
        margin-top: 20px;
        order: 2;
    }

}




/*红龙的神秘css*/

/* 首页背景缩放 */
#home-nav .home-card {
    overflow: hidden;
    position: relative;
}

#home-nav .home-card__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    transform-origin: center;
    will-change: transform;
    backface-visibility: hidden;
}

#home-nav .home-card:hover .home-card__background img {
    transform: scale(1.07);
}