MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
#mw-head { | |||
background-color: #2c2c2c; /* Slightly lighter dark shade for the top bar */ | |||
background-color: # | color: #ffffff; | ||
color: # | |||
} | } | ||
#mw-head { | |||
# | background-color: #2c2c2c; /* Slightly lighter dark shade for the top bar */ | ||
background-color: # | color: #ffffff; | ||
} | } | ||
#mw-panel { | |||
background-color: #2c2c2c; /* Synchronizing with the top bar */ | |||
color: # | color: #ffffff; | ||
} | } | ||
#mw-panel { | |||
color: # | background-color: #2c2c2c; /* Synchronizing with the top bar */ | ||
color: #ffffff; | |||
} | } | ||
/* | /* Example for the sidebar */ | ||
#mw-panel { | |||
background-image: url('URL_TO_YOUR_SIDEBAR_IMAGE'); | |||
background-size: cover; | |||
background-repeat: no-repeat; | |||
} | } | ||
/* Example for the top bar */ | |||
#mw-head { | |||
background-image: url('URL_TO_YOUR_TOPBAR_IMAGE'); | |||
background-size: cover; | |||
background-repeat: no-repeat; | |||
} | } | ||
#content { | |||
background-color: | background-color: rgba(28, 28, 28, 0.8); /* Dark with some transparency */ | ||
border: none; /* Remove default borders if any */ | |||
} | } | ||
a { | |||
color: #9cd9f0; /* A light blue color for links */ | |||
} | } | ||
a:visited { | |||
color: #829da7; /* A more subdued color for visited links */ | |||
} | } |
Revision as of 23:01, 21 March 2024
#mw-head {
background-color: #2c2c2c; /* Slightly lighter dark shade for the top bar */
color: #ffffff;
}
#mw-head {
background-color: #2c2c2c; /* Slightly lighter dark shade for the top bar */
color: #ffffff;
}
#mw-panel {
background-color: #2c2c2c; /* Synchronizing with the top bar */
color: #ffffff;
}
#mw-panel {
background-color: #2c2c2c; /* Synchronizing with the top bar */
color: #ffffff;
}
/* Example for the sidebar */
#mw-panel {
background-image: url('URL_TO_YOUR_SIDEBAR_IMAGE');
background-size: cover;
background-repeat: no-repeat;
}
/* Example for the top bar */
#mw-head {
background-image: url('URL_TO_YOUR_TOPBAR_IMAGE');
background-size: cover;
background-repeat: no-repeat;
}
#content {
background-color: rgba(28, 28, 28, 0.8); /* Dark with some transparency */
border: none; /* Remove default borders if any */
}
a {
color: #9cd9f0; /* A light blue color for links */
}
a:visited {
color: #829da7; /* A more subdued color for visited links */
}