MediaWiki:Common.css: Difference between revisions

From FizzWiki
Jump to navigation Jump to search
No edit summary
Tags: Manual revert Reverted
No edit summary
Tag: Reverted
Line 4: Line 4:
#content {
#content {
     margin-right: 16px; /* Must be wider than #right-sidebar */
     margin-right: 16px; /* Must be wider than #right-sidebar */
}
/* Change color of the text in the personal tools menu (Talk, Preferences, Watchlist, etc.) */
#p-personal {
    color: #ffffff;  /* Change to your desired color (e.g., red) */
}
/* Change the base color of sidebar links */
#mw-panel .sidebar-chunk,
#p-navigation,
#p-tb {
    color: #88DDFF
}
/* Change sidebar link color on hover */
#mw-panel .sidebar-chunk a:hover,
#p-navigation a:hover,
#p-tb a:hover {
    color: #FFFF00;
}
#footer-info-lastmod {
    color: #ffffff
}
#footer {
    color: #88DDFF
}
#footer, #footer:visited {
    color: #88DDFF
}
/* Change color of the Tools header on the sidebar */
#p-tb-label, .vector-menu-heading, #p-cactions-label {
    color: #88DDFF
}
.mw-body {
background-image: url(http://localhost:4000/images/8/89/Fizzwiki-background2.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-color: rgba(255, 255, 255, 0.85);
}
#mw-page-base {
    background-color: rgba(255, 255, 255, 0);
    background-image: none; /* Removes the default gradient */
}
#mw-panel {
    background-color: #f0f0f0; /* Replace with your desired color */
}
}

Revision as of 20:23, 6 June 2026

/* CSS placed here will be applied to all skins */

/* Adjust the main content so it doesn't overlap with the new sidebar */
#content {
    margin-right: 16px; /* Must be wider than #right-sidebar */
}

/* Change color of the text in the personal tools menu (Talk, Preferences, Watchlist, etc.) */
#p-personal {
    color: #ffffff;  /* Change to your desired color (e.g., red) */
}

/* Change the base color of sidebar links */
#mw-panel .sidebar-chunk,
#p-navigation,
#p-tb {
    color: #88DDFF 
}

/* Change sidebar link color on hover */
#mw-panel .sidebar-chunk a:hover,
#p-navigation a:hover,
#p-tb a:hover {
    color: #FFFF00; 
}

#footer-info-lastmod {
    color: #ffffff 
}

#footer {
    color: #88DDFF 
}
#footer, #footer:visited {
    color: #88DDFF 
}

/* Change color of the Tools header on the sidebar */
#p-tb-label, .vector-menu-heading, #p-cactions-label {
    color: #88DDFF 
}






.mw-body {
	background-image: url(http://localhost:4000/images/8/89/Fizzwiki-background2.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-color: rgba(255, 255, 255, 0.85);
}
#mw-page-base {
    background-color: rgba(255, 255, 255, 0);
    background-image: none; /* Removes the default gradient */
}
#mw-panel {
    background-color: #f0f0f0; /* Replace with your desired color */
}