/* remotefilename=/web/css/StockFooter.css
 *
 *	Copyright © 2025 by FKE Internet.  All rights reserved.
 *
 *	$Id: /web/css/StockFooter.css,v $
 */
/**
*	CSS styles used by StockFooter.php
*
*	Author:			Fred Koschara
*	Creation Date:	May thirty-first, 2025
*	Last Modified:	October 9, 2025 @ 1:10 pm
*
*	Revision History:
*	   Date		  by		Description
*	2025/10/09	wfredk	change to "global" link color defined by CSS variable
*	2025/10/09	wfredk	change footer "address" line to responsive design
*	2025/06/28	wfredk	disable visibility:hidden (WTF was it set at all???)
*	2025/05/31	wfredk	original development, extracted from StockFooter.php
*/

:root
{	--linkColor:#9999ff;		/* "standard dark background" .LnkColor */
}

.footer_leadingSpace_p
{	margin-top:50px;
}
.footer_stockStyle_div
{	font-style:italic;
}
.footer_stockStyle_prefixHr
{	margin-bottom:1em;
}

.footerLine
{	display:flex;
	flex-direction:row;
	flex-wrap:nowrap;
	gap:0.25em;
	justify-content:center;
	text-align:center;
}

.footerLine .footContact a,
p.hostedBy a
{	color:var(--linkColor);
}

.footerLine .footTitle::after,
.footerLine .footContact::after
{	content:" / ";				/* add slashes between items for wide screens */
}

/* small-screen stacked layout */
@media (max-width:480px)
{	.footerLine
	{	flex-direction:column;
		gap:0.15em;
	}
	.footerLine .footTitle::after,
	.footerLine .footContact::after
	{	content:none;			/* hide slashes */
	}
}

.footer_xmlValid_icon_img
{	float:left;
	padding:0 5px;
}
.footer_xmlValid_icon_img_rt
{	float:right;
	padding:0 5px 0 10px;
}

/* EOF: StockFooter.css */
