Openlist云盘资源合集-CSS技术交流论坛-开发交流-系语社区-科技数码交流论坛

Openlist云盘资源合集

密码获取与重置(openlist版)

# 随机生成一个密码
./openlist admin random
# 手动设置一个密码,`NEW_PASSWORD`是指你需要设置的密码
./openlist admin set NEW_PASSWORD

自定义头部

<link rel="preconnect" href="https://fontsapi.zeoseven.com" crossorigin />
<link rel="stylesheet"
    href="https://fontsapi.zeoseven.com/7/main/result.css"
    onerror="this.href='https://fontsapi-storage.zeoseven.com/7/main/result.css'" />
<style>
.hope-ui-light {
    --my-color: rgba(255,255,255,0.4);
    --color-main-custom: #ffffff9e;
}
.hope-ui-dark {
    --my-color: rgba(0,0,0,0.4);
    --color-main-custom: #2e2e2e70;
}

* {
    font-family: "Zhuque Fangsong (technical preview)";
}
/* 背景 */
body {
    background-image: linear-gradient(to bottom, var(--my-color), var(--my-color)), url("输入你自己的喜欢图片的直链") !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-attachment: fixed !important;
    background-position-x: center !important;
}

.hope-c-PJLV-igScBhH-css,
.hope-c-PJLV-ikSuVsl-css,
.hope-c-PJLV-ieGWMbI-css {
    background-color: #ffffff9e !important;
    backdrop-filter: blur(10px);
}

.hope-ui-dark .hope-c-PJLV-ieGWMbI-css {
    background-color: var(--hope-colors-neutral3) !important;
}

.hope-c-PJLV-idaeksS-css,
.hope-c-PJLV-ikaMhsQ-css {
    background: none !important;
}

.footer {
    display: none !important;
}

        ::selection {
            background: #fbc2eb;
            color: #fff;
        }

        * {
            letter-spacing: 2px;
        }

        .hope-ui-dark .markdown-body a {
            color: #fff !important;
        }

        .copyright a,
        .copyright .by {
            text-decoration: none;
        }

        .copyright .by {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 20px;
        }

        .copyright a {
            display: flex;
            justify-content: center;
            margin: 0 10px;
            position: relative;
            transition: .5s;
        }

        .copyright .xhx {
            background: pink;
            height: 3px;
            border-radius: 10px;
            width: 0;
            position: absolute;
            bottom: -3px;
            transition: .5s;
        }

        .copyright a:hover {
            color: pink;
        }

        .copyright a:hover .xhx {
            width: 100%;
        }

        .copyright .run_item {
            display: flex;
            align-items: center;
            margin: 10px;
        }

        .copyright .link {
            padding: 4px;
            background: #479fff96;
            backdrop-filter: blur(10px);
            border-radius: 0 8px 8px 0;
        }

        .copyright .name {
            padding: 4px;
            backdrop-filter: blur(10px);
            background: var(--color-main-custom);
            border-radius: 8px 0 0 8px;
        }

        .copyright {
            padding: 50px;
        }

        .runtime {
            width: 100%;
            padding: 10px;
            box-sizing: border-box;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .about,
        .state {
            width: min(99%, 980px);
            text-align: center;
            padding-inline: 2%;
        }

        .state {
            margin-top: 20px;
        }
</style>

自定义底部

<div class="copyright" align="center">
    <div class="about">
        <div class="runtime">
            <span class="run_item">
                <span class="name">AList</span>
                <span class="link">UI</span>
            </span>
            <span class="run_item">
                <span class="name">阿里云</span>
                <span class="link">搭建</span>
            </span>
            <span class="run_item">
                <span class="name">xiyu</span>
                <span class="link">版权</span>
            </span>
        </div>
    </div>
    <div class="state">
        <p>免责声明:本站为个人网盘,网盘所发布的一切影视、源代码、注册信息及软件等资源仅限用于学习和研究目的</p>
    </div>
    <div class="by">
        <span>Powered By</span>
        <a href="https://www.xiyubbs.com/" target="_blank">
            <span>xiyu</span>
            <div class="xhx"></div>
        </a>
        <span>| ©2023 </span>xiyu</a>
     </div>
     <div class="by">
        <span>ICP备:</span><a href="https://beian.miit.gov.cn/" target="_blank">ICP备123456号</a><span>   |   公安网备:</span><a href="https://beian.mps.gov.cn/#/query/webSearch?code" target="_blank">公网安备123456号</a>
     </div>
     <div class="by">
        <a href="/@login">登录页面</a><span>| 由Alist驱动 | </span><a href="/@manage">管理页面</a>
    </div>
</div>

 

请登录后发表评论