Template:Repair service/styles.css: Difference between revisions
Add responsive styles for mobile display (via create-page on MediaWiki MCP Server) |
Arclight changed the content model of the page Template:Repair service/styles.css from "wikitext" to "Sanitized CSS" |
(No difference)
| |
Latest revision as of 18:59, 5 February 2026
/* Repair service infobox styles */
.repair-service-infobox {
width: 300px;
border: 1px solid rgba(128, 128, 128, 0.5);
padding: 0.5em;
margin: 0 0 1em 1em;
float: right;
background: rgba(128, 128, 128, 0.1);
}
.repair-service-infobox th.repair-service-header {
background: rgba(128, 128, 128, 0.25);
text-align: center;
font-size: 1.2em;
padding: 0.5em;
}
.repair-service-infobox th {
text-align: right;
padding-right: 0.5em;
}
/* Mobile responsive - stack infobox above content */
@media screen and (max-width: 600px) {
.repair-service-infobox {
float: none;
width: 100%;
margin: 0 0 1em 0;
}
}