黑暗料理王/style.css:修订间差异

来自EaseCation Wiki
(Tkka将页面黑暗料理王/style.css的内容模型从“CSS”更改为“已过滤的CSS”)
标签内容模型更改
无编辑摘要
标签
第1行: 第1行:
/* 改变整个页面的字体 */
body {
body {
background-size:cover;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}
}
body,html {
 
width:100%;
/* 改变标题的字体 */
height:100%;
h1, h2, h3, h4, h5, h6 {
padding:0;
    font-family: Georgia, serif;
margin:0;
    font-weight: bold;
font-family: "Lantinghei SC","Open Sans",Arial,"Hiragino Sans GB","Microsoft YaHei","微软雅黑","STHeiti","WenQuanYi Micro Hei",SimSun,sans-serif;
    color: #000;
}
 
/* 改变链接的字体 */
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月5日 (三) 08:13的版本

/* 改变整个页面的字体 */
body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* 改变标题的字体 */
h1, h2, h3, h4, h5, h6 {
    font-family: Georgia, serif;
    font-weight: bold;
    color: #000;
}

/* 改变链接的字体 */
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;
}