
/*// nether-onescript //
@date 2025-07-23 16:19:24
@files [
    "src\/main.css"
]
//*/

/*/////////////////////////////////////////////////////////////////////////
// src/main.css /////////////////////////////////////////////////////////*/

/******************************************************************************
**** css variables ***********************************************************/

:root {
	--ColourMain: #274472;
	--ColourDim: #313e56;
	--ColourSecond: #222222;
	--ColourThird: #111111;
	--ColourMainLite: #426091;

	--SiteRed: #BA1733;
	--SiteBlue: #274472;
	--SiteGrey: #ECEBEC;

	--SiteGood: #48ad33;
	--SiteBad: #cf3535;

	--ColourBlack: #000000;
	--ColourWhite: #ffffff;
}

/******************************************************************************
**** straight up html hacks **************************************************/

body {
	background: var(--ColourMain);
	color: #fff;
}

a:link:not(.btn),
a:visited:not(.btn) {
	color: var(--ColourMain);
	text-decoration: underline;
}

dl {
	margin-bottom: 32px;
}

dl dt {
	background: var(--ColourSecond);
	border-radius: 4px;
	margin-bottom: 6px;
	padding: 8px;
	text-transform: uppercase;
}

dl dd {
	background: var(--ColourThird);
	border-radius: 4px;
	padding: 8px;
}

hr {
	border: 0px;
	border-top: 1px solid var(--ColourMain);
	opacity: 0.25;
	margin-top: 32px;
	margin-bottom: 32px;
}

h1,
h2,
h3,
h4 {
	font-weight: bold;
}

h1 {
	font-size: 2.5em;
}

h2 {
	font-size: 2em;
}

h4 {
	font-size: 1.0em;
}

img {
	max-height: 100%;
	max-width: 100%;
	padding: 0px;
	margin: 0px;
	line-height: 0px;
}

pre {

}

p { margin-bottom: 1rem; }

video {
	max-width: 100%;
}

/******************************************************************************
**** site elements ***********************************************************/

#SiteHeader {
	background: #ffffff;
	color: var(--ColourMain);
	font-size: 1.2em;
}

#SiteHeader a:link,
#SiteHeader a:visited {
	font-weight: bold;
	text-decoration: none;
}

#SiteNav {
	background: var(--ColourWhite);
	color: var(--ColourBlack);
}

#SiteFooter {
	background: #ffffff;
	color: var(--ColourMain);
	min-height: 300px;
}

.container-page {
	padding-top: 0rem;
	padding-bottom: 2.5rem;
}

.page-wrapper {
	background: #ffffff;
	color: #000000;
	padding: 1.75rem;
}

.heading {
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
}

.wallpapered {
	background: #f0f0f0;
}

.btn,
.btn:hover {
	text-decoration: none !important;
}

.btn-red {
	background: var(--SiteRed);
	color: #FFF;
}

.btn-red:hover {
	color: #FFF;
}

.btn-white {
	background: var(--SiteGrey);
	text-shadow: none;
}

.btn-blue {
	background: var(--SiteBlue);
}

.hr-hide-last hr:last-of-type {
	display: none;
}

.btn-primary {
	background-color: var(--ColourMain) !important;
	border-color: var(--ColourMain) !important;
	color: var(--ColourWhite) !important;
}

.btn-secondary {
	color: var(--ColourWhite) !important;
}

.text-primary {
	color: var(--ColourMain) !important;
}

.text-good {
	color: var(--SiteGood) !important;
	font-weight: bold !important;
}

.text-red {
	color: var(--SiteBad) !important;
}

.text-bad {
	color: var(--SiteBad) !important;
	font-weight: bold !important;
}

.bg-primary {
	background-color: var(--ColourMain) !important;
}

.jumbotron-dark {
	background: #000000aa;
}

.wallpapered {
	background-size: cover;
}

.StructuredButton {
	font-size: 0.85em;
}

.themed-heading {
	background: rgb(39,68,114);
	background: linear-gradient(135deg, rgba(39,68,114,1) 0%, rgba(39,68,114,0.6530812153963148) 100%);
	border-radius: 6px;
	color: #fff;
	padding: 4px 10px;
}

@media(max-width: 767.98px) {
	h2 { font-size: 1.7em; }
}

/******************************************************************************
**** photo gallery ***********************************************************/

.GalleryView {
	position: fixed;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 100%;

	background: #000000dd;
	background-image: url(/share/gfx/loading001.gif);
	background-position: center center;
	background-repeat: no-repeat;
}

.GalleryView i {
	text-shadow: 0px 0px 10px #000, 0px 0px 3px #000;
}

.GalleryView .QuitContainer {
	position: absolute;
	top: 0px;
	right: 0px;

	background: transparent;
	color: #ffffff;
	cursor: pointer;
	font-size: 2.0em;
	margin: 10px;
	padding: 10px;
	z-index: 9003;
}

.GalleryView .Next,
.GalleryView .Prev {
	background: transparent;
	color: #ffffff;
	cursor: pointer;
	font-size: 2.0em;
	margin: 10px;
	padding: 10px;
}

.GalleryViewImage img {
	box-shadow: 0px 0px 20px #000000, 0px 0px 50px #000000;
}


