原彩色横条在PC端显示正常,但手机端显示错位,如图所示:
原代码如下:
/* 首页顶部条 */
.IndexPage-toolbar::after {
content: "唯愿公平如大水滚滚 | 使公义如江河滔滔";
padding: 10px;
color: #ffffff;
border-radius: 50px;
text-align: center;
font-size: 16px;
background: linear-gradient(135deg, #29c7ac, #6699ff);
display: block;
margin: 5px 0;
}
⚠警告:请备份所有数据再进行操作,此操作可能会导致网站不可用!
.IndexPage-toolbar::after
的样式在屏幕宽度大于768像素时保持不变。但是,当屏幕宽度小于或等于768像素时(即在手机屏幕上),.IndexPage-toolbar::after
的 display
属性被设置为 none
,这意味着这个元素将会被隐藏。max-width
值以适应不同尺寸的手机屏幕。更新后代码如下:
/* 首页顶部条 */
.IndexPage-toolbar::after {
content: "唯愿公平如大水滚滚 | 使公义如江河滔滔";
padding: 10px;
color: #ffffff;
border-radius: 50px;
text-align: center;
font-size: 16px;
background: linear-gradient(135deg, #29c7ac, #6699ff);
display: block;
margin: 5px 0;
}
/* 在手机屏幕上隐藏顶部彩色条 */
@media (max-width: 768px) {
.IndexPage-toolbar::after {
display: none;
}
}
原表格样式间距太大,手机端无法适配。
⚠警告:请备份所有数据再进行操作,此操作可能会导致网站不可用!
更新后代码如下:
/* 表格美化 */
table {
table-layout:fixed;
padding: 0;
word-break: break-all;
border-collapse: collapse;
margin: 0.8em 0;
width: 100%;
}
table tr {
border: 1px solid #dfe2e5;
margin: 0;
padding: 0;
}
table tr:nth-child(2n), thead {
background-color: #f8f8f8;
}
table th {
font-weight: bold;
border: 1px solid #dfe2e5;
border-bottom: 0;
margin: 0;
padding: 6px 13px;
width: auto ! important;
}
table td {
border: 1px solid #dfe2e5;
margin: 0;
padding: 6px 13px;
}
table th:first-child, table td:first-child {
margin-top: 0;
}
table th:last-child, table td:last-child {
margin-bottom: 0;
}
如图所示:
⚠警告:请备份所有数据再进行操作,此操作可能会导致网站不可用!
<link href="https://cdn.staticfile.org/lxgw-wenkai-screen-webfont/1.7.0/lxgwwenkaiscreen.css" rel="stylesheet">
注意:这里基本适配所有的终端设备字体,请根据自己的需求进行修改。
/* 字体美化 - 添加苹果设备字体和通用备选字体 */
body {
font-family: 'LXGW WenKai Screen', 'Times New Roman', 'Times', 'Georgia', serif;
}
h1, h2, h3, h4, .TagsLabel, .Button, .DiscussionListItem-count, .item-discussion-views {
font-family: 'LXGW WenKai Screen', 'Arial', 'Helvetica Neue', 'San Francisco', sans-serif;
}
⚠警告:请备份所有数据再进行操作,此操作可能会导致网站不可用!
/* 取消欢迎关闭按钮 */
.Hero-close{
display:none;
}
如图所示:
⚠警告:请备份所有数据再进行操作,此操作可能会导致网站不可用!
@media (min-width: 768px) and (max-width: 1099px) {
.Header-primary .Header-controls {
max-width: 200px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.Header-primary:after {
content: " > ";
margin-left: 20px;
}
.Header-primary:hover {
padding-right: 30px;
padding-bottom: 20px;
}
.Header-primary:hover .Header-controls {
transition: max-width 1s;
max-width: 1000px;
overflow: unset;
animation: delay-overflow-unset 1s;
}
@keyframes delay-overflow-unset {
from {
overflow: hidden;
}
to {
overflow: unset;
}
}
.Header-primary:hover:after {
content: "";
}
.Header-primary:hover + .Header-secondary {
white-space: nowrap;
overflow: hidden;
margin-right: 20px;
float: unset;
}
}
.Header-secondary .item-session button {
max-width: 140px;
overflow: hidden;
text-overflow: ellipsis;
}