Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.css: Difference between revisions

MediaWiki interface page
Attempt to remove default login options
Undo last failed CSS change, try to make all images more uniformly sized?
Line 22: Line 22:
}
}


/* Hide username, password fields and the login button */
/* To make images responsive */
#wpName1, #wpPassword1, #wpLoginAttempt {
img {
    display: none;
max-width:100%;
height:auto;
}
}

Revision as of 18:10, 11 August 2024

/* CSS placed here will be applied to all skins */
.alert--success {
    background-color: #00a40026; /* Highlight background color */
    color: #4CAF50; /* Foreground color */
    border: 1px solid #4CAF50; /* Border color */
    border-radius: 5px; /* Rounded corners */
    padding: 10px; /* Padding */
    margin: 10px 0; /* Margin */
}

.alert--success .admonitionHeading_Gvgb {
    font-weight: bold; /* Heading style */
    margin-bottom: 5px; /* Space below heading */
}

.alert--success .admonitionContent_BuS1 {
    margin: 5px 0; /* Space around content */
}

.alert--success .admonitionIcon_Rf37 {
    margin-right: 5px; /* Space between icon and text */
}

/* To make images responsive */
img {
	max-width:100%;
	height:auto;
}