Jump to content

Common.css: Difference between revisions

From Impact Evaluation Foundation
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');..."
 
No edit summary
 
Line 1: Line 1:
/* Light mode theme test */
/* Light mode theme test */
body {
body {
     background-color: #f9f9f9;  
     background-color: #E6E6DD;  
}
}



Latest revision as of 15:21, 16 December 2024

/* Light mode theme test */ body {

   background-color: #E6E6DD; 

}

  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'); 
   }

}