@charset "UTF-8";
/* CSS Document */
/* N Hattan & St Marys School ©2012-2020 */

@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&family=Rubik:wght@400;700&display=swap');


/* CSS Description for general / default page elements  */
body {
	background: #333333; 
	color: black;
	font-family:"Rubik";
	font-size: 20px;
	font-weight:400;
}

/* CSS Description for wrapper  */ 

#wrapper  {
	margin: 20px auto 25px auto;
	width:1024px;
}

/* CSS Description for header section elements  */  

#header {
	float:left;
	width:1024px;
	height:150px;
	border-radius: 6px;
	background:url(images/headerpic_1024.jpg)
}

/* CSS Description for navigation section elements  */ 

#nav   {
	float: left;
	width: 190px;
	min-height: 300px;
	background:#97FCF9;
	border-radius: 6px;
	margin-top: 5px;
}

#nav ul {
	margin:20px 0; /*5 px gap between blocks of links */
	padding:0;    /*remove normal indentation due to list behaviour */
	list-style-type:none;
}
	
#nav li {
	margin:5px; /* space out links vertically */
	padding: 5px; /*add padding inside buttons */
}

#nav a {
	text-decoration:none;
}
	
#nav a li {
	color:White;
	background:#0B8F8A;
	border-radius:4px;
}
	
#nav a:hover li {
	color:White;
	background-color:#02615E;
}

#nav .label{
	color:#078580;
	font-size:24px;
	margin-left:5px;
	margin-bottom: 0;
	font-weight:700;	
}
	
/* CSS Description for main section elements  */ 

#main {
	min-height: 500px;
	float: right;
	width: 800px;
	background: #E3FAF9;
	padding: 0 10px;
	border-radius:6px;
	margin-top: 5px;
}

#main h1 {
	color: #02615E;
	margin: 10px 0;
	font-size: 1.8em;
}

#main h2 {
	background: #0B8F8A;
	color: #fff;
	border-radius: 4px;
	padding:5px;
	font-size: 1.2em;
	font-weight: 400;
	margin: 10px 0 10px 0;
}

#main h2.masthead {margin-bottom: 20px;}

#main div.hideable {margin-bottom:30px;}

#main img.linker {border:none;}

#main img.float_r{
	float: right;
	margin-left: 5px;
	margin-top: -2px;
}

#main img.float_l{
	float: right;
	margin-left:5px;
}

#main table.tbloutline {
	border:2px solid white;
}

#main a.hyper:link, a.hyper:visited  {
	background:#0B8F8A;
	color: white;
	border-radius: 10px;
	padding: 0 5px;
	text-decoration: none;
}

#main .codetitle {
	background: black;
	color:white;
	padding: 5px;
	font-size:1.15em;
	border-radius: 4px;
}

#main .codeblock {
	margin-top: -19px;  /* font-size + 1 */
	margin-bottom: 20px;
	padding:10px 5px 10px 45px;
	border: 1px dashed black;
	background: white;
	font-family:"Roboto Mono", Courier, monospace;
	font-size: 20px;
}

#main .codeblock p {
	/* remove line spacing from paragraphs - this allows blocks to be copied and pasted into
	a text editor */
	margin: 0;
	padding: 0;
}

#main .codeblock pre {
	/* remove line spacing from paragraphs - this allows blocks to be copied and pasted into
	a text editor */
	margin: 0;
	padding: 0;
	font-family:"Roboto Mono", Courier, monospace;
	font-size: 20px;
}

/* CSS Description for footer section elements  */ 
#footer  {
	float: right;
	width: 800px;
	height: 35px;
	text-align:right;
	margin: 5px 0 20px 0;
	padding:5px 20px 0 0;
	font-size: 0.7em;
	background: #0B8F8A;
	color: #fff;
	border-radius: 6px;
}

/* General classes */
.codesnippet {
	font-family:"Roboto Mono", Courier, monospace;
	font-size: 20px;
}

.picborder {
	border: solid 2px #000000;
}

.geekoutline {
	border:dotted 2px red;
	background:#FFFFCC;
}

.fakelink:hover {
	 cursor:pointer; 
}	

.pythoncode {
	font-family:"Roboto Mono", Courier, monospace;
	font-size: 20px;
	font-weight: 700;
}

.cartouche {border: 1px solid black; padding: 1px; border-radius: 4px; background:black; color: white;}

/* classes for trinket.io additions */

.selExpt {font-size: 0.9em;}

	
