Common.css

Revision as of 15:20, 16 December 2024 by IEFAdmin (talk | contribs) (Created page with "Light mode theme test: body { background-color: #f9f9f9; } #p-logo a { background-image: url('https://ief.wiki/index.php/File:LightModeLogo.png'); background-size: contain; Adjust size if needed: background-repeat: no-repeat; } Dark mode theme test: @media (prefers-color-scheme: dark) { body { background-color: #202124; } #p-logo a { background-image: url('https://ief.wiki/index.php/File:DarkModeLogo.png');...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

/* Light mode theme test */ body {

   background-color: #f9f9f9; 

}

  1. p-logo a {
   background-image: url('https://ief.wiki/index.php/File:LightModeLogo.png'); 
   background-size: contain; /* Adjust size if needed */
   background-repeat: no-repeat;

}

/* Dark mode theme test */ @media (prefers-color-scheme: dark) {

   body {
       background-color: #202124; 
   }
   #p-logo a {
       background-image: url('https://ief.wiki/index.php/File:DarkModeLogo.png'); 
   }

}