/* archive.css
   shows/index.html specific: the legacy #oldShowAccounts block (plain
   <p>-per-entry show listings from before the .ticket component
   existed). Everything else this page needs lives elsewhere:
     .show-archive -- ticket.css
     .page-column-label -- label.css
     .site-header -- header.css
     .donation -- donation.css

   #oldShowAccounts used to get its spacing/link-color for free from
   live.css's global p{} and A:link/visited/hover rules. Those aren't
   coming back globally, so this scopes the same look directly to
   #oldShowAccounts instead.
*/

/* Extra breathing room specifically where this label follows directly
   after the last ticket -- not added to label.css itself, since that
   would shift spacing everywhere else .page-column-label is used
   (e.g. "Permanent Record"/"On Deck" on the front page). */
.page-column-label.deep-storage {
	margin-top: 30px;
}

#oldShowAccounts {
	margin: 10px 0px 0px 0px;
	border-style: dashed;
	border-width: 1px;
	border-color: white;
	width: 100%;
	max-width: 538px;
	box-sizing: border-box;
	color: white;
	font-family: sans-serif;
	font-size: 10px;
}

#oldShowAccounts p {
	margin: 0px 0px 0px 0px;
	padding: 1em;
}

#oldShowAccounts a:link,
#oldShowAccounts a:visited {
	color: white;
	text-decoration: none;
}

#oldShowAccounts a:hover {
	color: darkorange;
	text-decoration: underline;
}

#oldShowAccounts span.note {
	font-size: 8px;
	font-style: italic;
}
