MediaWiki:Common.css: Difference between revisions
MediaWiki interface page
More actions
m Protected "MediaWiki:Common.css" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)) |
No edit summary Tag: Manual revert |
||
| (5 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
/* ── Infobox podcast ── */ | |||
.infobox-podcast { | |||
float: right; | |||
clear: right; | |||
margin: 0 0 16px 24px; | |||
width: 280px; | |||
border: 1px solid #a2a9b1; | |||
border-radius: 8px; | |||
overflow: hidden; | |||
font-size: 13px; | |||
background: transparent; | |||
} | |||
.infobox-podcast-header { | |||
background: #1a3a5c; | |||
padding: 12px 14px; | |||
text-align: center; | |||
} | |||
.infobox-podcast-title { | |||
color: #ffffff; | |||
font-size: 15px; | |||
font-weight: bold; | |||
line-height: 1.3; | |||
} | |||
.infobox-podcast-subtitle { | |||
color: #9fc3e8; | |||
font-size: 12px; | |||
margin-top: 3px; | |||
} | |||
.infobox-podcast-image { | |||
background: #0f2a44; | |||
padding: 12px; | |||
text-align: center; | |||
} | |||
.infobox-podcast-caption { | |||
color: #9fc3e8; | |||
font-size: 11px; | |||
margin-top: 4px; | |||
} | |||
.infobox-podcast-table { | |||
width: 100%; | |||
border-collapse: collapse; | |||
margin: 0; | |||
background: transparent; | |||
} | |||
.infobox-podcast-table tr { | |||
border-top: 1px solid #e0e0e0; | |||
background: transparent; | |||
} | |||
.infobox-podcast-table th { | |||
width: 90px; | |||
padding: 7px 10px; | |||
font-weight: bold; | |||
color: #555; | |||
background: transparent; | |||
vertical-align: top; | |||
text-align: left; | |||
white-space: nowrap; | |||
} | |||
.infobox-podcast-table td { | |||
padding: 7px 10px; | |||
color: #202122; | |||
vertical-align: top; | |||
background: transparent; | |||
} | |||
/* ── Listen buttons ── */ | |||
.infobox-podcast-buttons { | |||
padding: 10px 12px; | |||
display: flex; | |||
flex-direction: column; | |||
gap: 7px; | |||
border-top: 1px solid #e0e0e0; | |||
background: transparent; | |||
} | |||
.infobox-listen-btn { | |||
display: flex; | |||
align-items: center; | |||
gap: 9px; | |||
padding: 8px 12px; | |||
border-radius: 8px; | |||
border: 1px solid #d0d0d0; | |||
background: #ffffff; | |||
font-size: 12px; | |||
font-weight: 600; | |||
color: #202122; | |||
text-decoration: none; | |||
cursor: pointer; | |||
} | |||
.infobox-listen-btn:hover { | |||
background: #f5f5f5; | |||
text-decoration: none; | |||
} | |||
.infobox-listen-dot { | |||
width: 9px; | |||
height: 9px; | |||
border-radius: 50%; | |||
flex-shrink: 0; | |||
} | |||
Latest revision as of 22:05, 24 June 2026
/* CSS placed here will be applied to all skins */
/* ── Infobox podcast ── */
.infobox-podcast {
float: right;
clear: right;
margin: 0 0 16px 24px;
width: 280px;
border: 1px solid #a2a9b1;
border-radius: 8px;
overflow: hidden;
font-size: 13px;
background: transparent;
}
.infobox-podcast-header {
background: #1a3a5c;
padding: 12px 14px;
text-align: center;
}
.infobox-podcast-title {
color: #ffffff;
font-size: 15px;
font-weight: bold;
line-height: 1.3;
}
.infobox-podcast-subtitle {
color: #9fc3e8;
font-size: 12px;
margin-top: 3px;
}
.infobox-podcast-image {
background: #0f2a44;
padding: 12px;
text-align: center;
}
.infobox-podcast-caption {
color: #9fc3e8;
font-size: 11px;
margin-top: 4px;
}
.infobox-podcast-table {
width: 100%;
border-collapse: collapse;
margin: 0;
background: transparent;
}
.infobox-podcast-table tr {
border-top: 1px solid #e0e0e0;
background: transparent;
}
.infobox-podcast-table th {
width: 90px;
padding: 7px 10px;
font-weight: bold;
color: #555;
background: transparent;
vertical-align: top;
text-align: left;
white-space: nowrap;
}
.infobox-podcast-table td {
padding: 7px 10px;
color: #202122;
vertical-align: top;
background: transparent;
}
/* ── Listen buttons ── */
.infobox-podcast-buttons {
padding: 10px 12px;
display: flex;
flex-direction: column;
gap: 7px;
border-top: 1px solid #e0e0e0;
background: transparent;
}
.infobox-listen-btn {
display: flex;
align-items: center;
gap: 9px;
padding: 8px 12px;
border-radius: 8px;
border: 1px solid #d0d0d0;
background: #ffffff;
font-size: 12px;
font-weight: 600;
color: #202122;
text-decoration: none;
cursor: pointer;
}
.infobox-listen-btn:hover {
background: #f5f5f5;
text-decoration: none;
}
.infobox-listen-dot {
width: 9px;
height: 9px;
border-radius: 50%;
flex-shrink: 0;
}