MediaWiki:Medik.css: differenze tra le versioni
add |
Nessun oggetto della modifica |
||
| (13 versioni intermedie di uno stesso utente non sono mostrate) | |||
| Riga 2: | Riga 2: | ||
.mw-footer { |
.mw-footer { |
||
background-color: #eff5ff; |
background-color: #eff5ff; |
||
} |
|||
/* Change colour of the sidebar */ |
|||
.container-fluid div.row div#mw-navigation.col-12.col-md-3.col-xl-2 { |
|||
background-color: #eff5ff; |
|||
} |
|||
/* Make search input wider */ |
|||
#searchInput { |
|||
max-width: 100%; |
|||
width: 600px; |
|||
} |
|||
/* Hide sitename in navbar > 768px */ |
|||
#p-banner, |
|||
#p-banner:hover, |
|||
#p-banner:visited { |
|||
color: #eff5ff; |
|||
} |
|||
/* Make sitename in navbar blue < 768px */ |
|||
@media only screen and (max-width: 768px) { |
|||
#p-banner, |
|||
#p-banner:hover, |
|||
#p-banner:visited { |
|||
color: navy; |
|||
} |
|||
} |
|||
/* Make button in navbar blue */ |
|||
#user-tools button { |
|||
color: navy; |
|||
} |
|||
/* Make hamburger menu in navbar blue */ |
|||
.mw-hamb { |
|||
color: navy; |
|||
} |
|||
/* Make profile icon in navbar blue */ |
|||
.profile-icon, |
|||
.profile-icon::before { |
|||
background-color: navy; |
|||
border: 1px solid navy; |
|||
color: navy; |
|||
} |
|||
/* Make links in sidebar blue */ |
|||
#mw-navigation a:not(.disabled) { |
|||
color: navy; |
|||
} |
|||
/* Fix copyright icon padding */ |
|||
#footer-copyrightico > a:first-child > img { |
|||
padding: 4px 0; |
|||
} |
|||
/* Make action menus wrap on narrow screens */ |
|||
#p-namespaces .mw-portlet-body > div { |
|||
display: flex; |
|||
flex-wrap: wrap; |
|||
} |
|||
#mw-main-container > .row > .col-12 > aside > .d-flex { |
|||
flex-wrap: wrap; |
|||
} |
} |
||
Versione attuale delle 11:24, 9 dic 2025
/* Change colour of the footer */
.mw-footer {
background-color: #eff5ff;
}
/* Change colour of the sidebar */
.container-fluid div.row div#mw-navigation.col-12.col-md-3.col-xl-2 {
background-color: #eff5ff;
}
/* Make search input wider */
#searchInput {
max-width: 100%;
width: 600px;
}
/* Hide sitename in navbar > 768px */
#p-banner,
#p-banner:hover,
#p-banner:visited {
color: #eff5ff;
}
/* Make sitename in navbar blue < 768px */
@media only screen and (max-width: 768px) {
#p-banner,
#p-banner:hover,
#p-banner:visited {
color: navy;
}
}
/* Make button in navbar blue */
#user-tools button {
color: navy;
}
/* Make hamburger menu in navbar blue */
.mw-hamb {
color: navy;
}
/* Make profile icon in navbar blue */
.profile-icon,
.profile-icon::before {
background-color: navy;
border: 1px solid navy;
color: navy;
}
/* Make links in sidebar blue */
#mw-navigation a:not(.disabled) {
color: navy;
}
/* Fix copyright icon padding */
#footer-copyrightico > a:first-child > img {
padding: 4px 0;
}
/* Make action menus wrap on narrow screens */
#p-namespaces .mw-portlet-body > div {
display: flex;
flex-wrap: wrap;
}
#mw-main-container > .row > .col-12 > aside > .d-flex {
flex-wrap: wrap;
}