<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>efefef &amp;mdash; 江尚寒</title>
    <link>https://paper.wf/jiangshanghan/tag:efefef</link>
    <description>存短篇用。互动→ @jiangshanghan@allships.run </description>
    <pubDate>Tue, 26 May 2026 09:27:07 +0000</pubDate>
    <item>
      <title>整点儿这边能用的CSS代码说明</title>
      <link>https://paper.wf/jiangshanghan/zheng-dian-er-zhe-bian-neng-yong-de-cssdai-ma-shuo-ming</link>
      <description>&lt;![CDATA[!--more--&#xA;&#xA;特别说明：本篇基于write.as网站中的guide内容。&#xA;&#xA;----&#xA;&#xA;参考资料&#xA;&#xA;WA自定义教程&#xA;HTML颜色代码&#xA;CSS颜色代码&#xA;CSS字体加粗/斜体&#xA;CSS字体代码&#xA;W3school这个网站看起来很厉害，有很多种CSS代码模板可以参考，还有自带的测试框，可以用于检察代码是否可用。&#xA;&#xA;----&#xA;&#xA;一些常见的用语翻译&#xA;&#xA;Background 背景&#xA;color颜色&#xA;Font 字体&#xA;Font-style 字体变斜体等的选项&#xA;normal 文本正常显示&#xA;italic 文本斜体显示&#xA;oblique 文本倾斜显示&#xA;Font-weight 字体重量（粗细）&#xA;bold加粗&#xA;Lighter 变细&#xA;normal 一般&#xA;----&#xA;&#xA;此项操作需在“自定义”后台中实现。&#xA;找到“自定义”中的“自定义CSS”一项后，将以下代码输入，并点击保存。&#xA;&#xA;我在下方代码中加入了批注（汉字），在输入前请删除批注。&#xA;&#xA;----&#xA;&#xA;/ &#xA;&#xA;    BASICS&#xA;    Use the following CSS rules to change the elements you&#39;re trying to customize.&#xA;&#xA;/&#xA;&#xA;body {&#xA;    background-color: #efefef;   背景色代码可百度&#xA;}&#xA;&#xA;/ Blog header on index and post pages /    页面大标题&#xA;blog-title a { &#xA;    color: #fff;&#xA;background-color: #7a629d;&#xA;font-style:italic;&#xA;}&#xA;&#xA;blog-title a:hover { &#xA;    color: #eee;&#xA;    background-color: #7a629d;&#xA;}&#xA;&#xA;/ Blog header on post pages ONLY /&#xA;body#post #blog-title a {&#xA;    padding: 4px 8px;&#xA;}&#xA;&#xA;/ Blog description (underneath title) on index page /    博客描述（介绍语）的定义&#xA;header p.description {&#xA;    font-style: italic;    文章字体 斜体&#xA;}&#xA;&#xA;/ Post titles on blog index /&#xA;.post-title {&#xA;    font-weight: normal;    字体加粗选项&#xA;}&#xA;.post-title a.u-url:link, .post-title a.u-url:visited {&#xA;    color: blue;     发文中链接的颜色表示，可改为其他&#xA;}&#xA;&#xA;/ &#34;Read more...&#34; links /&#xA;body#collection a.read-more {&#xA;    text-decoration: underline;&#xA;}&#xA;&#xA;/ Links inside blog posts /&#xA;article p a {&#xA;    color: #444[];&#xA;    text-decoration: none;&#xA;    border-bottom: 2px solid orangered;&#xA;}&#xA;article p a:hover {&#xA;    background-color: orangered;&#xA;    color: white[];&#xA;    text-decoration: none;&#xA;}&#xA;&#xA;/&#xA;&#xA;    RECIPES&#xA;    These are common patterns you may want to use on your blog.&#xA;&#xA;/&#xA;&#xA;/ Center images /&#xA;img {&#xA;    display: block;&#xA;    margin: 0 auto;&#xA;}&#xA;&#xA;/ Disable post header fade effect /&#xA;body#post header&#xA;    -moz-opacity: 1;&#xA;    -khtml-opacity: 1;&#xA;    -webkit-opacity: 1;&#xA;    opacity: 1;&#xA;}&#xA;&#xA;/ Hide post views /&#xA;header nav .views {&#xA;    display: none;&#xA;}]]&gt;</description>
      <content:encoded><![CDATA[

<p>特别说明：本篇基于<a href="http://write.as" rel="nofollow">write.as</a>网站中的<a href="https://guides.write.as/customizing/#custom-css" rel="nofollow">guide</a>内容。</p>

<hr>

<p><strong>参考资料</strong></p>

<p><a href="https://guides.write.as/customizing/#custom-css" rel="nofollow">WA自定义教程</a>
<a href="https://blog.csdn.net/sxc1414749109/article/details/79260543" rel="nofollow">HTML颜色代码</a>
<a href="https://www.w3school.com.cn/cssref/css_colors.asp" rel="nofollow">CSS颜色代码</a>
<a href="https://blog.csdn.net/bcbobo21cn/article/details/50903776" rel="nofollow">CSS字体加粗/斜体</a>
<a href="https://www.cnblogs.com/xhtml5/p/5719073.html" rel="nofollow">CSS字体代码</a>
<a href="http://www.w3school.com.cn/css/css_font.asp" rel="nofollow">W3school</a>这个网站看起来很厉害，有很多种CSS代码模板可以参考，还有自带的测试框，可以用于检察代码是否可用。</p>

<hr>

<p><strong>一些常见的用语翻译</strong></p>

<p>Background 背景
color颜色
Font 字体
Font-style 字体变斜体等的选项
normal 文本正常显示
italic 文本斜体显示
oblique 文本倾斜显示
Font-weight 字体重量（粗细）
bold加粗
Lighter 变细
normal 一般</p>

<hr>

<p>此项操作需在“自定义”后台中实现。
找到“自定义”中的“自定义CSS”一项后，将以下代码输入，并点击保存。</p>

<p><strong>我在下方代码中加入了批注（汉字），在输入前请删除批注。</strong></p>

<hr>

<p>/*</p>

<p>    BASICS
    Use the following CSS rules to change the elements you&#39;re trying to customize.</p>

<p>*/</p>

<p>body {
    background-color: <a href="/jiangshanghan/tag:efefef" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">efefef</span></a>;   背景色代码可百度
}</p>

<p>/* Blog header on index and post pages */    页面大标题
<a href="/jiangshanghan/tag:blog" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">blog</span></a>-title a {
    color: <a href="/jiangshanghan/tag:fff" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">fff</span></a>;
background-color: <a href="/jiangshanghan/tag:7a629d" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">7a629d</span></a>;
font-style:italic;
}</p>

<p><a href="/jiangshanghan/tag:blog" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">blog</span></a>-title a:hover {
    color: <a href="/jiangshanghan/tag:eee" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">eee</span></a>;
    background-color: <a href="/jiangshanghan/tag:7a629d" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">7a629d</span></a>;
}</p>

<p>/* Blog header on post pages ONLY */
body<a href="/jiangshanghan/tag:post" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">post</span></a> <a href="/jiangshanghan/tag:blog" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">blog</span></a>-title a {
    padding: 4px 8px;
}</p>

<p>/* Blog description (underneath title) on index page */    博客描述（介绍语）的定义
header p.description {
    font-style: italic;    文章字体 斜体
}</p>

<p>/* Post titles on blog index */
.post-title {
    font-weight: normal;    字体加粗选项
}
.post-title a.u-url:link, .post-title a.u-url:visited {
    color: blue;     发文中链接的颜色表示，可改为其他
}</p>

<p>/* “Read more...” links */
body<a href="/jiangshanghan/tag:collection" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">collection</span></a> a.read-more {
    text-decoration: underline;
}</p>

<p>/* Links inside blog posts */
article p a {
    color: #444[];
    text-decoration: none;
    border-bottom: 2px solid orangered;
}
article p a:hover {
    background-color: orangered;
    color: white[];
    text-decoration: none;
}</p>

<p>/*</p>

<p>    RECIPES
    These are common patterns you may want to use on your blog.</p>

<p>*/</p>

<p>/* Center images */
img {
    display: block;
    margin: 0 auto;
}</p>

<p>/* Disable post header fade effect */
body<a href="/jiangshanghan/tag:post" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">post</span></a> header
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
}</p>

<p>/* Hide post views */
header nav .views {
    display: none;
}</p>
]]></content:encoded>
      <guid>https://paper.wf/jiangshanghan/zheng-dian-er-zhe-bian-neng-yong-de-cssdai-ma-shuo-ming</guid>
      <pubDate>Tue, 13 Oct 2020 23:30:04 +0000</pubDate>
    </item>
    <item>
      <title>整点儿这边能用的CSS代码说明</title>
      <link>https://paper.wf/jiangshanghan/zheng-dian-er-zhe-bian-neng-yong-de-cssdai-ma-shuo-ming-fh29</link>
      <description>&lt;![CDATA[!--more--&#xA;&#xA;特别说明：本篇基于write.as网站中的guide内容。&#xA;&#xA;----&#xA;&#xA;参考资料&#xA;&#xA;WA自定义教程&#xA;HTML颜色代码&#xA;CSS颜色代码&#xA;CSS字体加粗/斜体&#xA;CSS字体代码&#xA;W3school这个网站看起来很厉害，有很多种CSS代码模板可以参考，还有自带的测试框，可以用于检察代码是否可用。&#xA;&#xA;----&#xA;&#xA;一些常见的用语翻译&#xA;&#xA;Background 背景&#xA;color颜色&#xA;Font 字体&#xA;Font-style 字体变斜体等的选项&#xA;normal 文本正常显示&#xA;italic 文本斜体显示&#xA;oblique 文本倾斜显示&#xA;Font-weight 字体重量（粗细）&#xA;bold加粗&#xA;Lighter 变细&#xA;normal 一般&#xA;----&#xA;&#xA;此项操作需在“自定义”后台中实现。&#xA;找到“自定义”中的“自定义CSS”一项后，将以下代码输入，并点击保存。&#xA;&#xA;我在下方代码中加入了批注（汉字），在输入前请删除批注。&#xA;&#xA;----&#xA;&#xA;/ &#xA;&#xA;    BASICS&#xA;    Use the following CSS rules to change the elements you&#39;re trying to customize.&#xA;&#xA;/&#xA;&#xA;body {&#xA;    background-color: #efefef;   背景色代码可百度&#xA;}&#xA;&#xA;/ Blog header on index and post pages /    页面大标题&#xA;blog-title a { &#xA;    color: #fff;&#xA;background-color: #7a629d;&#xA;font-style:italic;&#xA;}&#xA;&#xA;blog-title a:hover { &#xA;    color: #eee;&#xA;    background-color: #7a629d;&#xA;}&#xA;&#xA;/ Blog header on post pages ONLY /&#xA;body#post #blog-title a {&#xA;    padding: 4px 8px;&#xA;}&#xA;&#xA;/ Blog description (underneath title) on index page /    博客描述（介绍语）的定义&#xA;header p.description {&#xA;    font-style: italic;    文章字体 斜体&#xA;}&#xA;&#xA;/ Post titles on blog index /&#xA;.post-title {&#xA;    font-weight: normal;    字体加粗选项&#xA;}&#xA;.post-title a.u-url:link, .post-title a.u-url:visited {&#xA;    color: blue;     发文中链接的颜色表示，可改为其他&#xA;}&#xA;&#xA;/ &#34;Read more...&#34; links /&#xA;body#collection a.read-more {&#xA;    text-decoration: underline;&#xA;}&#xA;&#xA;/ Links inside blog posts /&#xA;article p a {&#xA;    color: #444[];&#xA;    text-decoration: none;&#xA;    border-bottom: 2px solid orangered;&#xA;}&#xA;article p a:hover {&#xA;    background-color: orangered;&#xA;    color: white[];&#xA;    text-decoration: none;&#xA;}&#xA;&#xA;/&#xA;&#xA;    RECIPES&#xA;    These are common patterns you may want to use on your blog.&#xA;&#xA;/&#xA;&#xA;/ Center images /&#xA;img {&#xA;    display: block;&#xA;    margin: 0 auto;&#xA;}&#xA;&#xA;/ Disable post header fade effect /&#xA;body#post header&#xA;    -moz-opacity: 1;&#xA;    -khtml-opacity: 1;&#xA;    -webkit-opacity: 1;&#xA;    opacity: 1;&#xA;}&#xA;&#xA;/ Hide post views /&#xA;header nav .views {&#xA;    display: none;&#xA;}]]&gt;</description>
      <content:encoded><![CDATA[

<p>特别说明：本篇基于<a href="http://write.as" rel="nofollow">write.as</a>网站中的<a href="https://guides.write.as/customizing/#custom-css" rel="nofollow">guide</a>内容。</p>

<hr>

<p><strong>参考资料</strong></p>

<p><a href="https://guides.write.as/customizing/#custom-css" rel="nofollow">WA自定义教程</a>
<a href="https://blog.csdn.net/sxc1414749109/article/details/79260543" rel="nofollow">HTML颜色代码</a>
<a href="https://www.w3school.com.cn/cssref/css_colors.asp" rel="nofollow">CSS颜色代码</a>
<a href="https://blog.csdn.net/bcbobo21cn/article/details/50903776" rel="nofollow">CSS字体加粗/斜体</a>
<a href="https://www.cnblogs.com/xhtml5/p/5719073.html" rel="nofollow">CSS字体代码</a>
<a href="http://www.w3school.com.cn/css/css_font.asp" rel="nofollow">W3school</a>这个网站看起来很厉害，有很多种CSS代码模板可以参考，还有自带的测试框，可以用于检察代码是否可用。</p>

<hr>

<p><strong>一些常见的用语翻译</strong></p>

<p>Background 背景
color颜色
Font 字体
Font-style 字体变斜体等的选项
normal 文本正常显示
italic 文本斜体显示
oblique 文本倾斜显示
Font-weight 字体重量（粗细）
bold加粗
Lighter 变细
normal 一般</p>

<hr>

<p>此项操作需在“自定义”后台中实现。
找到“自定义”中的“自定义CSS”一项后，将以下代码输入，并点击保存。</p>

<p><strong>我在下方代码中加入了批注（汉字），在输入前请删除批注。</strong></p>

<hr>

<p>/*</p>

<p>    BASICS
    Use the following CSS rules to change the elements you&#39;re trying to customize.</p>

<p>*/</p>

<p>body {
    background-color: <a href="/jiangshanghan/tag:efefef" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">efefef</span></a>;   背景色代码可百度
}</p>

<p>/* Blog header on index and post pages */    页面大标题
<a href="/jiangshanghan/tag:blog" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">blog</span></a>-title a {
    color: <a href="/jiangshanghan/tag:fff" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">fff</span></a>;
background-color: <a href="/jiangshanghan/tag:7a629d" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">7a629d</span></a>;
font-style:italic;
}</p>

<p><a href="/jiangshanghan/tag:blog" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">blog</span></a>-title a:hover {
    color: <a href="/jiangshanghan/tag:eee" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">eee</span></a>;
    background-color: <a href="/jiangshanghan/tag:7a629d" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">7a629d</span></a>;
}</p>

<p>/* Blog header on post pages ONLY */
body<a href="/jiangshanghan/tag:post" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">post</span></a> <a href="/jiangshanghan/tag:blog" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">blog</span></a>-title a {
    padding: 4px 8px;
}</p>

<p>/* Blog description (underneath title) on index page */    博客描述（介绍语）的定义
header p.description {
    font-style: italic;    文章字体 斜体
}</p>

<p>/* Post titles on blog index */
.post-title {
    font-weight: normal;    字体加粗选项
}
.post-title a.u-url:link, .post-title a.u-url:visited {
    color: blue;     发文中链接的颜色表示，可改为其他
}</p>

<p>/* “Read more...” links */
body<a href="/jiangshanghan/tag:collection" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">collection</span></a> a.read-more {
    text-decoration: underline;
}</p>

<p>/* Links inside blog posts */
article p a {
    color: #444[];
    text-decoration: none;
    border-bottom: 2px solid orangered;
}
article p a:hover {
    background-color: orangered;
    color: white[];
    text-decoration: none;
}</p>

<p>/*</p>

<p>    RECIPES
    These are common patterns you may want to use on your blog.</p>

<p>*/</p>

<p>/* Center images */
img {
    display: block;
    margin: 0 auto;
}</p>

<p>/* Disable post header fade effect */
body<a href="/jiangshanghan/tag:post" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">post</span></a> header
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
}</p>

<p>/* Hide post views */
header nav .views {
    display: none;
}</p>
]]></content:encoded>
      <guid>https://paper.wf/jiangshanghan/zheng-dian-er-zhe-bian-neng-yong-de-cssdai-ma-shuo-ming-fh29</guid>
      <pubDate>Tue, 13 Oct 2020 23:30:04 +0000</pubDate>
    </item>
  </channel>
</rss>