无编辑摘要 标签: ![]() ![]() |
无编辑摘要 标签: ![]() ![]() |
||
(未显示同一用户的11个中间版本) | |||
第1行: | 第1行: | ||
/* 页面字体 */ | |||
body { | body { | ||
font-family: Georgia, serif; | |||
font-size: 13.5px; | |||
line-height: 1.6; | |||
} | } | ||
/* 改变标题的字体 */ | |||
h1, h2, h3, h4, h5, h6 { | |||
font-family: Georgia, serif; | |||
font-weight: bold; | |||
color: lightyellow; | |||
} | |||
/* 改变链接的字体 */ | |||
a { | |||
font-family: Arial, sans-serif; | |||
color: #0066cc; | |||
text-decoration: none; | |||
} | |||
/* 改变代码块的字体 */ | |||
pre, code { | |||
font-family: "Courier New", monospace; | |||
font-size: 14px; | |||
background-color: #f5f5f5; | |||
padding: 5px; | |||
border-radius: 3px; | |||
} | } |
2025年2月8日 (六) 07:14的最新版本
/* 页面字体 */ body { font-family: Georgia, serif; font-size: 13.5px; line-height: 1.6; } /* 改变标题的字体 */ h1, h2, h3, h4, h5, h6 { font-family: Georgia, serif; font-weight: bold; color: lightyellow; } /* 改变链接的字体 */ a { font-family: Arial, sans-serif; color: #0066cc; text-decoration: none; } /* 改变代码块的字体 */ pre, code { font-family: "Courier New", monospace; font-size: 14px; background-color: #f5f5f5; padding: 5px; border-radius: 3px; }