User:Kethyga/timeless.css

维基百科,自由的百科全书

注意:保存之后,你必须清除浏览器缓存才能看到做出的更改。Google ChromeFirefoxMicrosoft EdgeSafari:按住⇧ Shift键并单击工具栏的“刷新”按钮。参阅Help:绕过浏览器缓存以获取更多帮助。

#catlinks-sidebar { display:none }
#catlinks { display:inherit!important }


/*
修改中文标点字体
https://keqingrong.cn/blog/2019-11-30-different-fonts-in-different-locales/
https://www.zhangxinxu.com/wordpress/2016/11/css-unicode-range-character-font-face/
https://sspai.com/post/41674

使用蝌蚪形状的引号;思源宋体(Source Han Serif)
分号 - U+FF1B;双引号 U+201C / U+201D;单引号 U+2018 / U+2019
逗号 U+FF0C
*/
@font-face {
  font-family: "Chinese Quote";
  src: local("Source Han Serif");
  unicode-range: U+2018, U+2019, U+201c, U+201d, U+ff1b, U+ff0c;
}

/*
body {
  font-family:"Chinese Quote" ;
}
*/

/*
间隔号 - Interpunct(U+00b7)
中易宋体(SimSun):间隔号一字宽,不过效果不如思源
新宋体(NSimsun):间隔号一字宽
思源黑体 Source Han Sans CN
*/


@font-face {
  font-family: "Interpunct";
  src: local("NSimsun");
  unicode-range: U+00b7;
}

.mw-body {
  font-family:"Chinese Quote", "Interpunct", "Microsoft YaHei";
}


/*
[[:Special:PermanentLink/76962232|76962232]] [[Wikipedia:互助客栈/技术#是否有插件可标注出重定向条目?]]
.mw-redirect:after {
	content: "(R)";
	color: #FFBF00;
	vertical-align: super;
	font-size: 50%;
}
*/

/*
[[:en:Wikipedia:Visualizing redirects]] [[:en:Special:PermanentLink/981815181|981815181]]
*/
/*
 .mw-redirect {
     color: #0af459;
 }
 .mw-redirect:visited {
     color: #0af459;
 }
 .mw-redirect:hover {
     color: blue;
 }
 .mw-redirect:active {
     color: green;
 }
*/