/* remotefilename=/web/css/AddHeader.css
 *
 *	Copyright © 2025 by FKE Internet.  All rights reserved.
 *
 *	$Id: /web/css/AddHeader.css,v $
 */
/**
*	CSS rulesets used directly by the AddHeader() code
*
*	Author:			Fred Koschara
*	Creation Date:	July sixteenth, 2025
*	Last Modified:	July 23, 2025 @ 1:18 pm
*
*	Revision History:
*	   Date		  by		Description
*	2025/07/23	wfredk	enforce box-sizing:border-box and overflow-x:hidden
*	2025/07/18	wfredk	add .glueUp (for orthogonality), .honeypot rulesets
*	2025/07/16	wfredk	original development, extracted from AddHeader.php
*/

*,
*::before,
*::after
{	box-sizing:border-box !important;	/* ensure idiot browsers behave */
}

html,
body
{	margin:0;					/* ensure idiot browsers behave */
	padding:0;
	width:100%;
	overflow-x:hidden;
}

.clearing
{	clear:both;
}
.displayInlineBlock
{	display:inline-block;
}
.floatLeft
{	float:left;
}
.floatRight
{	float:right;
}
.glueDown
{	margin-bottom:0;
}
.glueUp
{	margin-top:0;
}
.honeypot
{	display:none !important;
	height:1px;
	width:1px;
}
.visibilityHidden
{	visibility:hidden;
}

/* EOF: AddHeader.css */
