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
| #body-wrap { background: -webkit-linear-gradient( 90deg, rgba(247, 149, 51, 0.1) 0, rgba(243, 112, 85, 0.1) 15%, rgba(239, 78, 123, 0.1) 30%, rgba(161, 102, 171, 0.1) 44%, rgba(80, 115, 184, 0.1) 58%, rgba(16, 152, 173, 0.1) 72%, rgba(7, 179, 155, 0.1) 86%, rgba(109, 186, 130, 0.1) 100% ); background: linear-gradient( 90deg, rgba(247, 149, 51, 0.1) 0, rgba(243, 112, 85, 0.1) 15%, rgba(239, 78, 123, 0.1) 30%, rgba(161, 102, 171, 0.1) 44%, rgba(80, 115, 184, 0.1) 58%, rgba(16, 152, 173, 0.1) 72%, rgba(7, 179, 155, 0.1) 86%, rgba(109, 186, 130, 0.1) 100% ); }
#aside-content>.card-widget.card-info, #aside-content>.card-widget.card-announcement, #aside-content>.sticky_layout>.card-widget.card-categories, #aside-content>.sticky_layout>.card-widget.card-tags, #aside-content>.sticky_layout>.card-widget.card-webinfo, #card-toc.card-widget, #recent-posts>.recent-post-item, #archive>.article-sort>.article-sort-item, #post, #page { transform: translateZ(0); background: var(--light_bg_color); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
[data-theme=dark] #aside-content>.card-widget.card-info, [data-theme=dark] #aside-content>.card-widget.card-announcement, [data-theme=dark] #aside-content>.sticky_layout>.card-widget.card-categories, [data-theme=dark] #aside-content>.sticky_layout>.card-widget.card-tags, [data-theme=dark] #aside-content>.sticky_layout>.card-widget.card-webinfo, [data-theme=dark] #card-toc.card-widget, [data-theme=dark] #recent-posts>.recent-post-item, [data-theme=dark] #archive>.article-sort>.article-sort-item, [data-theme=dark] #post, [data-theme=dark] #page { transform: translateZ(0); background: var(--dark_bg_color); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
#footer { background: rgba(255,255,255,0); color: #000; border-top-right-radius: 20px; border-top-left-radius: 20px; backdrop-filter: saturate(100%) } #footer::before { background: rgba(255,255,255,0) } #footer #footer-wrap { color: var(--font-color) } #footer #footer-wrap a { color: var(--font-color) }
|