MediaWiki:Common.css
注意:在发布之后,您可能需要清除浏览器缓存才能看到所作出的更改的影响。
- Firefox或Safari:按住Shift的同时单击刷新,或按Ctrl-F5或Ctrl-R(Mac为⌘-R)
- Google Chrome:按Ctrl-Shift-R(Mac为⌘-Shift-R)
- Edge:按住Ctrl的同时单击刷新,或按Ctrl-F5。
/* 这里放置的CSS将应用于所有皮肤 */
/* WIKI背景图 */
body {
background: url(https://djmaxwiki.cn/djmax_wiki/images/5/5c/%E8%83%8C%E6%99%AF_64514.jpg) no-repeat fixed 50% 0;
background-size:cover;
}
.full-width {
width: 100%;
}
/* == 背景 == */
.game-bg {
background: rgb(255 255 255 / 84%);
}
/* 添加毛玻璃效果 */
.game-bg {
position:relative;
margin-top: 10px;
border-radius: 16px;
}
.game-bg:before {
content:"";
position:absolute;
top: 0;
left: 0;
backdrop-filter: blur(12px);
width: 100%;
height: 100%;
border-radius: 16px;
overflow: hidden;
}