Difference between revisions of "MediaWiki:Common.css"
Jump to navigation
Jump to search
| Line 21: | Line 21: | ||
text-decoration:line-through; | text-decoration:line-through; | ||
} | } | ||
| + | |||
/* spoilers and triggery content */ | /* spoilers and triggery content */ | ||
.secret { | .secret { | ||
| Line 28: | Line 29: | ||
.secret:hover { | .secret:hover { | ||
background: blue; | background: blue; | ||
| + | } | ||
| + | |||
| + | /* make blockquotes stand out a little more */ | ||
| + | blockquote { | ||
| + | font-family: serif; | ||
| + | border: 1px solid grey; | ||
| + | padding: 1em; | ||
} | } | ||
Revision as of 14:49, 20 October 2021
/* CSS placed here will be applied to all skins */
table.listing {
border: 1px solid black;
background: radial-gradient(yellow, green);
box-shadow: 5px 5px 3px 1px #999;
}
table.listing tr th {
background: #aaf;
}
table.listing tr td {
background: white;
}
table.listing .odd td {
background: #eef;
}
table.listing .even td {
background: #fff;
}
table.listing .void td {
color: #888;
text-decoration:line-through;
}
/* spoilers and triggery content */
.secret {
color: black;
background: black;
}
.secret:hover {
background: blue;
}
/* make blockquotes stand out a little more */
blockquote {
font-family: serif;
border: 1px solid grey;
padding: 1em;
}