/* 自定义内容字体 */
.ipsRichText{
font-family: "Georgia", "Times New Roman", serif;
}
/*自定义背景图像*/
.ipsLayout__main {
background-image: url({resource="custom/yourimage.png" app="core" location="front"});
/*background-image: url(https://yoursite/images/pic.png);*/
width: 100%;
background-position: center bottom;
background-size: cover; background-repeat: no-repeat;
}
/* 作者在线状态 */
.ipsEntry__author-online {
display: block;
}
/* 作者在线状态 */
.ipsEntry__author-online {
border: 1.1em solid hsl(113deg 76.22% 37.79%);
animation: ipsOnlineStatus 1s infinite;
border-bottom-color: transparent;
border-inline-end-color: transparent;
display: block;
}
/* 反向用户导航 */
.ipsUserNav--member{
flex-direction: row-reverse;
}
/*要仅隐藏描述,请添加以下内容*/
@container (max-width:750px){
.ipsData--table.ipsData--forum-category .ipsData__desc{
display: none;
}
}
/*要隐藏描述和最新文章,请添加以下内容*/
@container (max-width:750px){
.ipsData--table.ipsData--forum-category :is(.ipsData__desc, .ipsData__last){
display: none;
}
}
推荐意见