1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
| body { background-size: cover; background-attachment: fixed; background-position: center; background-repeat: no-repeat; }
@media (orientation: portrait) { body { background-image: url(''); //替换你自己的竖屏背景,注意不要删掉引号 } }
@media (orientation: landscape) { body { background-image: url(''); //替换你自己的横屏背景,注意不要删掉引号 } }
.md-tabs { background-color: rgba(63, 81, 181, 0.85) !important; backdrop-filter: blur(5px); }
.md-footer { background-color: rgba(63, 81, 181, 0.85) !important; backdrop-filter: blur(5px); }
.md-dialog { background-color: rgba(255, 255, 255, 0.9) !important; backdrop-filter: blur(10px); }
.md-content__inner { background-color: transparent !important; }
.md-search { background-color: rgba(255, 255, 255, 0.85) !important; -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); }
.md-header { background-color: rgba(63, 81, 181, 0.85) !important; -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); }
.md-main { background-color: rgba(255, 255, 255, 0.85) !important; }
.md-nav--primary .md-nav__title~.md-nav__list { background-color: rgba(255, 255, 255, 0.85) !important; backdrop-filter: blur(5px) !important; -webkit-backdrop-filter: blur(5px) !important; box-shadow: none !important; }
.md-sidebar--secondary .md-nav__title, .md-sidebar--secondary .md-nav__title::before { background: rgba(255, 255, 255, 0.85) !important; backdrop-filter: blur(5px) !important; -webkit-backdrop-filter: blur(5px) !important; box-shadow: none !important; }
.md-nav--secondary .md-nav__title { background: transparent !important; box-shadow: none !important; }
.md-nav__title { background: rgba(255, 255, 255, 0.85) !important; backdrop-filter: blur(5px) !important; -webkit-backdrop-filter: blur(5px) !important; box-shadow: none !important; }
|