MCBBS Wiki欢迎您共同参与编辑!在参与编辑之前请先阅读Wiki方针

如果在编辑的过程中遇到了什么问题,可以去讨论板提问。

为了您能够无阻碍地参与编辑 未验证/绑定过邮箱的用户,请尽快绑定/验证

MCBBS Wiki GitHub群组已上线!

您可以在回声洞中发表吐槽!

服务器状态监控。点击进入

本站由MCBBS用户自行搭建,与MCBBS及东银河系漫游指南(北京)科技有限公司没有从属关系。点此了解 MCBBS Wiki 不是什么>>

用户:Salt lovely/Vector.scss:修订间差异

跳到导航 跳到搜索
添加2,113字节 、​ 2022年11月22日 (星期二)
文本替换 - 替换“mcbbs-wiki.cn”为“mcbbs.wiki”
(.)
(文本替换 - 替换“mcbbs-wiki.cn”为“mcbbs.wiki”)
 
(未显示1个用户的3个中间版本)
第1行: 第1行:
<pre>// 无边框
<pre>$topbar-height: 1.5rem; // 顶栏高度
$topbar-padding: 0.5rem; // 顶栏高度
$top-gap: 0.5rem; // 主体与顶栏的间隙
$top-height: $topbar-height + $topbar-padding * 2; // 顶部高度
$content-bookborder: 46px; // 四周书页图片宽度
$content-top: calc(
    #{$content-bookborder} + #{$top-height + $top-gap}
); // 主体部分高度(顶部+书页背景顶部边框)
/* 源代码: 用户:Salt_lovely/Vector.scss  */
// 无边框
@mixin noboder {
@mixin noboder {
     border: none;
     border: none;
第23行: 第32行:
         "DejaVu serif", "Source Han Serif", "Source Han Serif SC";
         "DejaVu serif", "Source Han Serif", "Source Han Serif SC";
}
}
// 左侧栏
/* 背景 */
body {
    background: var(--themeimg) 0 0 no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    border-top: none;
    font-family: var(--fontfamily);
    * {
        border-color: var(--linecolor);
    }
}
/* 左侧栏 */
#mw-panel {
#mw-panel {
     position: fixed;
     position: fixed;
第62行: 第83行:
             margin: 0;
             margin: 0;
             padding: 0;
             padding: 0;
            position: relative;
            background-image: none;
             font-size: 1rem;
             font-size: 1rem;
             line-height: 1.3rem;
             line-height: 1.3rem;
             cursor: pointer;
             cursor: pointer;
            &::after {
                position: absolute;
                bottom: 0;
                right: 0;
                opacity: 0;
                font-size: 0.75rem;
                line-height: 1.3rem;
                transition: 0.3s ease;
            }
            &:hover::after {
                opacity: 0.9;
            }
         }
         }
         .body {
         .body {
第83行: 第118行:
             }
             }
         }
         }
         &.salt-close .body {
         &.salt-close {
            max-height: 0px;
            > h1,
            > h2,
            > h3,
            > h4,
            > h5,
            > h6 {
                &::after {
                    content: "点击展开";
                }
            }
            .body {
                max-height: 0px;
            }
         }
         }
         &.salt-open .body {
         &.salt-open {
            max-height: var(--salt-open-height, 100vh);
            > h1,
            > h2,
            > h3,
            > h4,
            > h5,
            > h6 {
                &::after {
                    content: "点击收起";
                }
            }
            .body {
                max-height: var(--salt-open-height, 100vh);
            }
         }
         }
     }
     }
}
}
// 背景
/* 最顶部的信息栏 */
body {
#p-personal {
     background: var(--themeimg) 0 0 no-repeat;
     width: 100%;
     background-position: center;
    position: fixed;
     background-attachment: fixed;
    top: 0;
     background-size: cover;
    right: 0;
     border-top: none;
    height: $topbar-height;
     font-family: var(--fontfamily);
    padding: $topbar-padding $topbar-padding * 2;
     * {
     background: url(https://www.mcbbs.net/template/mcbbs/image/top_bg.png);
         border-color: var(--linecolor);
     background-size: contain;
    opacity: 0.5;
     font-size: 1rem;
    // transition: opacity 0.5s ease;
     transition-duration: 0.3s;
     transition-timing-function: ease;
    transition-delay: 0.5s;
     &:hover {
         opacity: 1;
        transition-delay: 0s;
     }
     }
}
    ul {
// 主体
        // right: 0;
$content-bookborder: 46px; // 四周书页图片宽度
        float: right;
 
        li {
$bookborder-lefttop: url(https://s2.ax1x.com/2019/11/28/QFB2X4.png);
            height: 1rem;
$bookborder-top: url(https://s2.ax1x.com/2019/11/28/QFBc1U.png);
            margin-top: 0;
$bookborder-righttop: url(https://mcbbs-wiki.cn/images/c/cf/body_top-right.png);
            margin-bottom: 0;
 
            font-size: 0.9rem;
$bookborder-left: url(https://www.mcbbs.net/template/mcbbs/image/bg_border_left.png); // 左侧图片
             line-height: 1rem;
$bookborder-right: url(https://mcbbs-wiki.cn/images/1/13/bg_border_right.png); // 右侧图片
         }
 
$bookborder-leftbottom: url(https://s2.ax1x.com/2019/11/28/QFcINd.png);
$bookborder-bottom: url(https://s2.ax1x.com/2019/11/28/QFco4A.png);
$bookborder-rightbottom: url(https://mcbbs-wiki.cn/images/e/e9/body_bottom-right.png);
 
#content {
    top: calc(#{$content-bookborder} + 2rem);
    padding: 1px $content-bookborder * 1.5;
    margin-right: 0.5rem;
    margin-bottom: calc(#{$content-bookborder * 2} + 1rem);
    overflow: visible;
    position: relative;
    background: $bookborder-left left top repeat-y,
        $bookborder-right right top repeat-y;
    background-color: var(--bgcolor);
    min-height: 500px;
    @include noboder();
    &::after,
    &::before {
        content: "";
        left: 0;
        height: $content-bookborder;
        width: calc(100% - #{$content-bookborder * 2});
        padding: 0 $content-bookborder;
        display: block;
        position: absolute;
    }
    &::before {
        // 上边
        top: -$content-bookborder;
        background: $bookborder-lefttop left top no-repeat,
             $bookborder-righttop right top no-repeat,
            $bookborder-top top repeat-x content-box;
    }
    &::after {
        // 下边
        bottom: -$content-bookborder;
         background: $bookborder-leftbottom left bottom no-repeat,
            $bookborder-rightbottom right bottom no-repeat,
            $bookborder-bottom bottom repeat-x content-box;
     }
     }
}
}
// 顶部栏
/* 顶部栏 */
$head-right-offet: 12px; // 右侧导航栏偏移量
$head-right-offet: 12px; // 右侧导航栏偏移量
#mw-head {
#mw-head {
     top: calc(#{$content-bookborder} + 2rem);
     top: $content-top;
     padding: 0 $content-bookborder * 1.5 - $head-right-offet 0
     padding: 0 $content-bookborder * 1.5 - $head-right-offet 0
         $content-bookborder * 1.5;
         $content-bookborder * 1.5;
第164行: 第192行:
     #right-navigation {
     #right-navigation {
         margin-top: 0rem;
         margin-top: 0rem;
        nav,
         div,
         div,
         ul,
         ul,
         span {
         span,
        a {
             background-image: none;
             background-image: none;
             background-color: transparent;
             background-color: transparent;
第180行: 第210行:
             }
             }
         }
         }
         ul li {
         ul {
             background-image: linear-gradient(
             li {
                 0deg,
                 height: 2.7rem;
                var(--linecolor) 0%,
                var(--bgcolor) 30%
            );
            &:hover {
                 background-image: linear-gradient(
                 background-image: linear-gradient(
                     0deg,
                     0deg,
第192行: 第218行:
                     var(--bgcolor) 20%
                     var(--bgcolor) 20%
                 );
                 );
                &:hover {
                    background-image: linear-gradient(
                        0deg,
                        var(--linecolor) 0%,
                        var(--bgcolor) 12%
                    );
                }
                a {
                    font-size: 0.875rem;
                    padding-top: 1rem;
                    text-align: center;
                }
                &.icon a {
                    padding-top: 2.5rem;
                }
             }
             }
             a {
             &.menu li {
                 font-size: 0.875rem;
                 background-image: linear-gradient(
                 padding-top: 1rem;
                    0deg,
            }
                    var(--linecolor) 0%,
            &.icon a {
                    var(--bgcolor) 12%
                padding-top: 2.5rem;
                );
                 &:hover {
                    background-image: linear-gradient(
                        0deg,
                        var(--linecolor) 0%,
                        var(--bgcolor) 6%
                    );
                }
             }
             }
         }
         }
第211行: 第259行:
     margin-right: 0;
     margin-right: 0;
}
}
#p-personal {
/* 主体 */
    width: 100%;
 
    position: fixed;
$bookborder-lefttop: url(https://s2.ax1x.com/2019/11/28/QFB2X4.png);
    top: 0;
$bookborder-top: url(https://s2.ax1x.com/2019/11/28/QFBc1U.png);
    right: 0;
$bookborder-righttop: url(https://mcbbs.wiki/images/c/cf/body_top-right.png);
    padding: 0.5rem 1rem;
 
    background: url(https://www.mcbbs.net/template/mcbbs/image/top_bg.png);
$bookborder-left: url(https://www.mcbbs.net/template/mcbbs/image/bg_border_left.png); // 左侧图片
     background-size: contain;
$bookborder-right: url(https://mcbbs.wiki/images/1/13/bg_border_right.png); // 右侧图片
     opacity: 0.5;
 
     font-size: 1rem;
$bookborder-leftbottom: url(https://s2.ax1x.com/2019/11/28/QFcINd.png);
     // transition: opacity 0.5s ease;
$bookborder-bottom: url(https://s2.ax1x.com/2019/11/28/QFco4A.png);
     transition-duration: 0.3s;
$bookborder-rightbottom: url(https://mcbbs.wiki/images/e/e9/body_bottom-right.png);
     transition-timing-function: ease;
 
     transition-delay: 0.5s;
#content {
     &:hover {
    top: $content-top;
         opacity: 1;
     min-height: 400px;
         transition-delay: 0s;
     padding: 1px $content-bookborder * 1.5;
     margin-left: 11rem;
     margin-right: 0.5rem;
     margin-bottom: calc(#{$content-bookborder * 2} + 5rem);
    overflow: visible;
    position: relative;
     background: $bookborder-left left top repeat-y,
        $bookborder-right right top repeat-y;
    background-color: var(--bgcolor);
     @include noboder();
    &::after,
    &::before {
        content: "";
        left: 0;
        height: $content-bookborder;
        width: calc(100% - #{$content-bookborder * 2});
        padding: 0 $content-bookborder;
        display: block;
        position: absolute;
    }
     &::before {
         // 上边
        top: -$content-bookborder;
         background: $bookborder-lefttop left top no-repeat,
            $bookborder-righttop right top no-repeat,
            $bookborder-top top repeat-x content-box;
     }
     }
     ul {
     &::after {
         // right: 0;
         // 下边
         float: right;
         bottom: -$content-bookborder;
         li {
         background: $bookborder-leftbottom left bottom no-repeat,
            height: 1rem;
             $bookborder-rightbottom right bottom no-repeat,
             margin-top: 0;
             $bookborder-bottom bottom repeat-x content-box;
             margin-bottom: 0;
            font-size: 0.9rem;
            line-height: 1rem;
        }
     }
     }
}
}
// 适配
/* 页脚 */
@media screen and (max-width: 982px) {
#footer {
     #mw-panel {
    padding-bottom: 0;
         left: 0;
     margin-top: $content-bookborder;
    clear: both;
    transition: all 0.3s;
    &:hover {
         /*鼠标滑过,背景变白*/
        background: rgba(255, 255, 255, 0.7);
     }
     }
}
}
// 滚动公告
/* 滚动公告 */
.topsign {
.topsign {
     position: relative;
     position: relative;
第265行: 第339行:
     }
     }
}
}
// 页脚
/* 适配 */
#footer {
@media screen and (max-width: 982px) {
     padding-bottom: 0;
     #mw-panel {
     // margin-top: 35px;
        left: 0;
    transition: all 0.3s;
     }
    &:hover {
    #content {
         background: rgba(255, 255, 255, 0.7); /*鼠标滑过,背景变白*/
        margin-left: 10rem;
         margin-right: 0;
     }
     }
}
}
优秀编辑者、​界面管理员、​监督员、​管理员
1,760

个编辑

我们提供服务需要使用Cookie。您使用我们的服务,即表示您同意我们使用Cookie。

导航菜单