Difference between revisions of "MediaWiki:Common.css"

From CWRE
Jump to navigation Jump to search
 
Line 31: Line 31:
 
}
 
}
  
/* make blockquotes stand out a little more */
+
/* make blockquotes stand out */
 
blockquote {
 
blockquote {
 
     font-family: serif;
 
     font-family: serif;
 
     border: 1px solid grey;
 
     border: 1px solid grey;
 
     padding: 1em;
 
     padding: 1em;
 +
}
 +
 +
/* make wiki links stand out */
 +
.keychainify-checked {
 +
border-bottom: dashed 1px grey;
 +
text-shadow: -2px 2px 2px #999;
 
}
 
}

Latest revision as of 14:53, 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 */
blockquote {
    font-family: serif;
    border: 1px solid grey;
    padding: 1em;
}

/* make wiki links stand out */
.keychainify-checked {
	border-bottom: dashed 1px grey;
	text-shadow: -2px 2px 2px #999;
}