/*
   Autscape "Green" colour scheme
   By Peter Benie and Martijn Dekker
   © 2008-2023 The Autscape Organisation
*/

/*
   DESIGN NOTE: try to have *no* overlap between different .css files so we
   don't have to deal with override priority headaches. If the use of
   "!important" is needed, add a comment so others can understand why.
*/

html {
	background: rgb(222,255,222);
	background-image: url("https://www.autscape.org/image/leaf.jpg");
	background-attachment: fixed;
	background-size: 100% auto;
}
body {
	background: rgba(238,255,238,0.85);
}

p#accesslinks {
	background-color: rgb(200,255,200);
}

h1,h2,h3,h4,h5,h6, em, dl dt, table.prettytable caption {
	color: #050;
}

div.notice {
	border-color: #050;
}

input.submitlink {
	color: blue;
}

/* overrides of "@media screen" for narrow viewports */
@media screen and (max-width: 768px) {
	div#left {
		background: rgb(224,255,224);
	}
}

/* Martijn 30 May 2013 */
/* source: http://css-tricks.com/examples/CSS3Gradient/ */
ul#navlinks a, ul#navlinks input {
	border-left: solid #050 4px;
	color: black;
	background: white;
}
ul#navlinks a#navactive, ul#navlinks input#navactive {
	color: white;
	background: #050;
}
ul#navlinks a[href]:hover, ul#stylelist a:hover {
/* "!important" overrides individual backgrounds of colour style links */
	color: white !important;
	background: #050 !important;
}

ul#navlinks a[href$="/logout"], ul#navlinks a[href$="/passwordchange"] {
	font-style: italic;
	border-color: gray;
	color: #050;
}

table.newstable thead, table.prettytable thead, table.simpletable thead {
	background-color: #beb;
}
table.newstable tr:nth-child(even), table.prettytable tr:nth-child(even) {
	background: #eee;
}

/* colour-specific stuff for sitemap.xml */
	.sitemap-bubbles ul {
 		background-color: white;
	}
	.sitemap-bubbles li ul {
 		background-color: rgb(238,255,238);
	}
	.sitemap-bubbles li li ul {
 		background-color: white;
	}
	.sitemap-bubbles li li li ul {
 		background-color: rgb(238,255,238);
	}
	.sitemap-bubbles li li li li ul {
 		background-color: white;
	}
	.sitemap-bubbles li li li li li ul {
 		background-color: rgb(238,255,238);
	}
	.sitemap-bubbles li li li li li li ul {
 		background-color: white;
	}

/* [20-Dec-2023] left border on blockquote, same colour as page border */
blockquote {
	padding-left: 2.4em;
	margin-left: 1px;
	border-left: 3px solid rgb(222,255,222);
}
