Difference between revisions of "User:Wiki-admin/common.css"

From TSG Doc
Jump to navigation Jump to search
(Created page with "→‎Wiki-admin custom css to make sure users don't accidentally log in with the wrong account: @media screen { #mw-page-base { background-image: linear-gradient(...")
 
 
Line 22: Line 22:
 
   }
 
   }
 
    
 
    
   #p-personal a {
+
   #p-personal a,  #p-personal a.new {
 
     color:white;
 
     color:white;
 
   }
 
   }

Latest revision as of 11:41, 24 June 2026

/* Wiki-admin custom css to make sure users don't accidentally log in with the wrong account */

@media screen {  
  #mw-page-base {    
    background-image: linear-gradient(to bottom,#e3000b 10%,#f6f6f6 100%);
    height: 8em;
  }
  
  #mw-page-base::before {
    content:"Please log in with your personal account to make changes to our Wiki!";
    font-weight: bold;
    font-size: 1.2em;
    position:absolute;
    left:50%;
    top:1.5em;
    transform:translateX(-50%);
    color: white;
  }
  
  #left-navigation, #right-navigation {
    margin-top: 5.5em;
  }
  
  #p-personal a,  #p-personal a.new {
    color:white;
  }
  
  #p-personal a:hover {
    text-decoration: underline;
  }
  
}