MediaWiki:Commons.css: Difference between revisions
MediaWiki interface page
More actions
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
/* Configuring a single tile of a repeating background image */ | /* Configuring a single tile of a repeating background image */ | ||
body.skin-vector-2022 { | |||
--wiki-body-background-image url(filepath://LogoBW.png) | --wiki-body-background-image url(filepath://LogoBW.png) | ||
--wiki-body-background-position: initial; | --wiki-body-background-position: initial; | ||
| Line 5: | Line 6: | ||
--wiki-body-background-repeat: repeat; | --wiki-body-background-repeat: repeat; | ||
--wiki-body-background-attachment: fixed; /* your choice, do you want it to scroll with the viewport? */ | --wiki-body-background-attachment: fixed; /* your choice, do you want it to scroll with the viewport? */ | ||
} | |||
/* Blur background behind main content */ | /* Blur background behind main content */ | ||
Revision as of 07:40, 12 January 2026
/* Configuring a single tile of a repeating background image */
body.skin-vector-2022 {
--wiki-body-background-image url(filepath://LogoBW.png)
--wiki-body-background-position: initial;
--wiki-body-background-size: initial;
--wiki-body-background-repeat: repeat;
--wiki-body-background-attachment: fixed; /* your choice, do you want it to scroll with the viewport? */
}
/* Blur background behind main content */
#mw-content-text,
#mw-panel, /* sidebar navigation */
#p-search, /* search portlet */
.vector-header-container, /* top bar */
.vector-main-menu-container { /* hamburger/dropdown nav */
position: relative !important;
background: rgba(0, 0, 0, 0.3) !important;
backdrop-filter: blur(8px) !important;
-webkit-backdrop-filter: blur(8px) !important;
border-radius: 12px !important;
padding: 1em !important;
z-index: 1 !important;
}