MediaWiki:Common.css: Difference between revisions
MediaWiki interface page
More actions
No edit summary Tag: Manual revert |
No edit summary |
||
| Line 10: | Line 10: | ||
overflow: hidden; | overflow: hidden; | ||
font-size: 13px; | font-size: 13px; | ||
background: | background: transparent; | ||
} | } | ||
| Line 48: | Line 48: | ||
border-collapse: collapse; | border-collapse: collapse; | ||
margin: 0; | margin: 0; | ||
background: transparent; | |||
} | } | ||
.infobox-podcast-table tr { | .infobox-podcast-table tr { | ||
border-top: 1px solid #e0e0e0; | border-top: 1px solid #e0e0e0; | ||
background: transparent; | |||
} | } | ||
.infobox-podcast-table th { | .infobox-podcast-table th { | ||
width: 90px; | width: 90px; | ||
padding: | padding: 7px 10px; | ||
font-weight: bold; | font-weight: bold; | ||
color: #555; | color: #555; | ||
background: | background: transparent; | ||
vertical-align: top; | vertical-align: top; | ||
text-align: left; | text-align: left; | ||
| Line 66: | Line 68: | ||
.infobox-podcast-table td { | .infobox-podcast-table td { | ||
padding: | padding: 7px 10px; | ||
color: #202122; | color: #202122; | ||
vertical-align: top; | vertical-align: top; | ||
background: transparent; | |||
} | } | ||
.infobox-podcast- | /* ── Listen buttons ── */ | ||
background: # | .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; | |||
} | |||
.dot-apple { background: #fc3c44; } | |||
.dot-spotify { background: #1db954; } | |||
.dot-web { background: #3b82f6; } | |||
.dot-amazon { background: #ff9900; } | |||
.dot-youtube { background: #ff0000; } | |||
Revision as of 18:09, 28 March 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;
}
.dot-apple { background: #fc3c44; }
.dot-spotify { background: #1db954; }
.dot-web { background: #3b82f6; }
.dot-amazon { background: #ff9900; }
.dot-youtube { background: #ff0000; }