banner
「云华」CloudSino

网络一隅¦Net`Corner

愿我的祝福与你同在︕
github
bilibili
zhihu
steam
discord user
misskey
follow
email

搬运|一个红头文件样式

原作者为: 红头文件 组件 - Area-CN-02
遵循: CC BY-SA 3.0 协议共享,本站仅做些许适配




文件题头 XXX发〔XXXX〕X号
文件标题
文件内容



CSS部分代码
<style>
@import url('https://google-fonts.mirrors.sjtug.sjtu.edu.cn/css2?family=Noto+Serif+SC&display=swap');
@import url('https://google-fonts.mirrors.sjtug.sjtu.edu.cn/css2?family=Noto+Serif+TC&display=swap');
@import url(https://crimone.github.io/typefaces/fandol-fangsong/FandolFang-Regular.css);
div.reddoc {
    box-shadow: 0 0 10px;
    padding: 2em;
    margin: 2em auto;
    background-color: white;
    overflow: hidden;
    color: black;
}
span.redheader {
    color: red;
    font-family: "宋体", 'Noto Serif SC', 'Noto Serif TC', serif;
    font-weight: bold;
    font-size: 300%;
    -ms-transform: scaleX(0.7);
    -moz-transform: scaleX(0.7);
    -webkit-transform: scaleX(0.7);
    -o-transform: scaleX(0.7);
    transform: scaleX(0.7);
    margin-bottom: 0.7em;
    display: inline-block;
    line-height: 120%;
}
span.redtitle {
    font-family: "宋体", 'Noto Serif SC', 'Noto Serif TC', serif;
    font-weight: bold;
    display: block;
    font-size: 120%;
    line-height: 190%;
}
span.rednumber {
    font-family: "仿宋", 'FandolFang-Regular', serif;
    display: block;
    font-size: 110%;
}
span.redtext {
    font-family: "仿宋", 'FandolFang-Regular', serif;
    display: block;
    font-size: 110%;
    line-height: 190%;
}
div.reddoc hr {
    border-style: none;
    height: 2.5em;
    margin: 0;
    position: relative;
    background-color: white;
    overflow: visible;
}
div.reddoc hr::before {
    content: "  ";
    display: block;
    width: 100%;
    height: 5px;
    background-color: red;
    position: absolute;
    left: 0;
    top: calc(0.5em - 1px);
}
div.reddoc hr::after {
    content: "★";
    line-height: 0.5;
    color: red;
    font-size: 200%;
    text-align: center;
    display: block;
    width: 1.5em;
    height: 1em;
    position: absolute;
    left: calc(50% - 0.75em);
    top: 0;
    background-color: white;
}
</style>
HTML部分代码
<div class="reddoc">
<div style="text-align: center;">
<span class="redheader">文件题头</span>
<span class="rednumber">XXX发〔XXXX〕X号</span>
<hr>
<span class="redtitle">文件标题</span>
</div>
<span class="redtext">文件内容</span>
</div>
Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.