|
|
第1行: |
第1行: |
| /* 这里放置的CSS将应用于所有皮肤 */ | | /* 这里放置的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;
| |
| }
| |