/*

Ian's Corner bvba 

(c) 2019 
*/

/*

Ian's Corner public website CSS file.

irish_green rgb(51, 102, 0)
irish_gold rgb(255,215,0)
white rgb(255,255,255)
print_black rgb(0,0,0)

*/

/* format for digital display */
@media screen {

body {
	color: rgb(255,215,0); 
	background-color: rgb(51, 102, 0);
}

body::after {
    	content: "";
	background-image: url("parts/logos/images/ic_logo.gif");
	background-repeat: no-repeat, no-repeat, no-repeat;
	background-position: top center, top center, top center;
	background-size: auto, 100%;
    	opacity: 1.0;
    	top: 0;
  	left: 0;
  	bottom: 0;
  	right: 0;
  	position: absolute;
  	z-index: -1;   
	width: inherit;
	height: inherit;
	overflow: visible;
}

div.navigation {
	display: inline-block;
	width:100%;
}

#logo {
	width: 50px;
	height: 50px;
	display: inline-block;
	float: left;
	background-color: rgb(51, 102, 0);
	margin: 5px;
}

ul.menuul {
 	list-style-type: none; 
	margin: 0px; 
	padding: 0px; 
}

li.menuli {
	display: inline-block;
	 float: left;     
}

a.menulink:link, a.menulink:visited, a.menulink:active {
	display: block;
	width: 100px;
	color: rgb(255,215,0); 
}
a.menulink:hover {
	color: rgb(51,102,0);
	background-color: rgb(255,215,0);
}

a {
	color: rgb(255,215,0); 
}

a:hover{
	color: rgb(255,255,255);
}

h1 {
	margin-top: 10px;
	text-align: center;
}

p {
	color: rgb(255,215,0);
	text-align: left;
	border:1px solid rgb(255,215,0); 
	padding:20px;
	margin:30px;
	border-radius: 10px 10px 10px 10px;
	vertical-align: top;
}

td.datetd{
	width:100px;
}


#msgboard {
  clear: left;
  color: rgb(252,204,68);
  display: block;
  background-color: rgb(0,0,128);
  width: 100px;
  float: right;
  padding:25px;
  margin:0px;
  margin-top: 10px;
}



.icparagraph{
	color: rgb(255,215,0);
	text-align: left;
	border:1px solid rgb(255,215,0); 
	padding:20px;
	margin:30px;
	border-radius: 10px 10px 10px 10px;
	vertical-align: top;
}

img.footerlogo {
	width : 30px;
	position: relative;
	top: 5px;
}

}

/* for printing */
@media print {

div.navigation {
	display: none;
}

img{
	/* I thought it would be funny to remove images from the printable version */
	display: none;
}

}

/* end of CSS file */

