Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Citizen.css: Difference between revisions

MediaWiki interface page
No edit summary
No edit summary
Line 9: Line 9:
background-image: url("https://nysos.ordo.top/static/images/backgrounds/nysos.png");
background-image: url("https://nysos.ordo.top/static/images/backgrounds/nysos.png");
content: "";
content: "";
   position: absolute;
   position: fixed;
   top: 0;  
   top: 0;  
   left: 0;
   left: 0;
   width: 100%;  
   width: 100vw;  
   height: 100%;   
   height: 100vh;   
   opacity: .4;  
   opacity: .4;  
   z-index: -1;
   z-index: -1;
  background: url(path/to/your/image);
}
}

Revision as of 10:45, 8 May 2025

/* All CSS here will be loaded for users of the Citizen skin */
:root {
--color-primary__h: 181;
--color-primary__s: 100%;
--color-primary__l: 48%;
}

body::before {
background-image: url("https://nysos.ordo.top/static/images/backgrounds/nysos.png");
content: "";
  position: fixed;
  top: 0; 
  left: 0;
  width: 100vw; 
  height: 100vh;  
  opacity: .4; 
  z-index: -1;
}