MediaWiki:Common css

From Bhikitia Pro, An open encyclopedia

/* Highlight links in the shortcut panel */ .shortcut a {

   background-color: #ffdd57; /* Light yellow background */
   color: #333333; /* Dark text for readability */
   border-radius: 5px; /* Rounded corners */
   padding: 3px 6px; /* Padding around the text */
   text-decoration: none; /* Remove default underline */
   transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition for hover */

}

/* Change link appearance on hover */ .shortcut a:hover {

   background-color: #ff8c00; /* Orange background on hover */
   color: #ffffff; /* White text on hover */

}