Jump to content

User:Kohuda/monobook.css: Difference between revisions

From Arelith Wiki
Kohuda (talk | contribs)
Created page with "forced night mode: html.skin-theme-clientpref-night .pane { background-color: black; color: white; } @media (prefers-color-scheme: dark) { /* automatic mo..."
 
Kohuda (talk | contribs)
No edit summary
Line 1: Line 1:
/* forced night mode */
body {  
html.skin-theme-clientpref-night .pane {
background-color: #f9f9f9;
      background-color: black;
background-image: url('https://upload.wikimedia.org/wikipedia/commons/1/12/Headbg2.jpg');
      color: white;
background-repeat: no-repeat;
}
@media (prefers-color-scheme: dark) {
    /* automatic mode */
    html.skin-theme-clientpref-os .pane {
      background-color: black;
      color: white;
    }
}
}

Revision as of 00:10, 23 June 2024

body { 
	background-color:	#f9f9f9;
	background-image:	url('https://upload.wikimedia.org/wikipedia/commons/1/12/Headbg2.jpg'); 
	background-repeat:	no-repeat;
}