Difference between revisions of "MediaWiki:Common.css"
From LMU BioDB 2015
(Standardize schedule table column widths.) |
(Restrict widths to immediate tr children.) |
||
| Line 47: | Line 47: | ||
} | } | ||
| − | .schedule-table tr *:first-child { | + | .schedule-table tr > *:first-child { |
width: 1em; | width: 1em; | ||
} | } | ||
| − | .schedule-table tr *:nth-child(2) { | + | .schedule-table tr > *:nth-child(2) { |
width: 3em; | width: 3em; | ||
} | } | ||
| − | .schedule-table tr *:nth-child(3) { | + | .schedule-table tr > *:nth-child(3) { |
width: 30%; | width: 30%; | ||
} | } | ||
Revision as of 01:07, 30 August 2015
/* CSS placed here will be applied to all skins */
.toc-container {
float: right;
margin-left: 20px;
}
/* A little table compensation. */
.mw-content-ltr table p + ul {
margin-top: -5px;
}
/* Standard style for quickie highlights/warnings. */
.content-warning {
border-radius: 10px;
background-color: #fed;
box-shadow: inset 0 4px 8px #987;
padding: 10px;
text-align: center
}
/* Style group for the specialized class schedule table. */
.schedule-table {
width: 100%;
margin: 1em 0;
}
.schedule-table th {
background-color: #ddd;
text-align: center;
}
.schedule-table td {
border-bottom: 0.5px solid lightgray;
border-right: 0.5px solid lightgray;
}
.schedule-table td, .schedule-table th {
padding: 1.5ex;
vertical-align: top;
}
.schedule-table td:first-child,
.schedule-table th + td,
.schedule-table td:last-child {
text-align: center;
}
.schedule-table tr > *:first-child {
width: 1em;
}
.schedule-table tr > *:nth-child(2) {
width: 3em;
}
.schedule-table tr > *:nth-child(3) {
width: 30%;
}