/* 
   Kelli Wiseth
   CIS 112 WW
   Assignment 3 Simplifying the look of this page, and getting rid of the black background. 
   				Adding some styles for the newsfeed section. Created new header image.
   inettuts.css
   2-June-2019 Trying to get rid of the "edit" box on the widget 
   3-December-2009
*/

/* Reset */
body,img,p,h1,h2,h3,h4,h5,h6,ul,ol {margin:0; padding:0; list-style:none; border:none;}
/* End Reset */

body {font-size:12px; font-family:Arial,Verdana,Sans-Serif; background: #ffffff;}
a {color:black;}

/* Colors */
.color-yellow {
	background: #fbe805;
}
.color-red    {
	background: #eb1536;
}
.color-blue   {
	background: #1c429b;
}
.color-white  {
	background: #dfe6fc;
}
.color-orange {
	background: #dfe6fc;
}
.color-green  {
	background: #2cb434;
}
.color-green h3,
.color-red h3,
.color-blue h3
	{color:#ffffff;}
.color-yellow h3,
.color-white h3,
.color-orange h3
	{color:#224499;}
/* End Colors */

/* Head section */
#head {
    background: #000 url(img/head-bg.png) repeat-x; /*edited background; #000 to #fff  3/2/2024 no diff*/
    height: 100px;
}
#head h1 {
    line-height: 100px;
    color: #FFF;
    text-align: center;
    background: url(img/icsm-goog.png) no-repeat center;
    text-indent: -9999em
}
/* End Head Section */

/* Columns section */
#columns .column {
    float: left;
    width: 33.3%;
		/* Min-height: */
		min-height: 400px;
		height: auto !important; 
		height: 400px;
}

/* Column dividers (background-images) : */
	#columns #column1 { background: url(img/column-bg-left.png) no-repeat right top; }
	#columns #column3 { background: url(img/column-bg-right.png) no-repeat left top; }
	
#columns #column1 .widget { margin: 30px 35px 0 25px; }
#columns #column3 .widget { margin: 30px 25px 0 35px; }
#columns .widget {
    margin: 30px 20px 0 20px;
    padding: 2px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}
#columns .widget .widget-head {
    color: #000;
    overflow: hidden;
    width: 100%;
    height: 30px;
    line-height: 30px;
}
#columns .widget .widget-head h3 {
    padding: 0 5px;
    float: left;
}
#columns .widget .widget-content {
    background: #ffffff url(img/widget-content-bg.png) repeat-x; /*edited background from #333 to #ffffff */
    padding: 0 5px;
    color: #999999;
    -moz-border-radius-bottomleft: 2px;
    -moz-border-radius-bottomright: 2px;
    -webkit-border-bottom-left-radius: 2px;
    -webkit-border-bottom-right-radius: 2px;
    line-height: 1.2em;
    overflow: hidden;
}
#columns .widget .widget-content p {
    padding: 0.8em 0;
    border-bottom: 1px solid #666;
}
#columns .widget .widget-content img {
    float: right;
    margin: 10px;
    border: 1px solid #FFF;
}
#columns .widget .widget-content pre {
    padding: 0.5em 5px;
    color: #EEE;
    font-size: 12px;
}
#columns .widget .widget-content ul {
    padding: 5px 0 5px 20px;
    list-style: disc;
}
#columns .widget .widget-content ul li {padding: 3px 0;}
#columns .widget .widget-content ul.images {
    padding: 7px 0 0 0;
    list-style: none;
    height: 1%;
}
#columns .widget .widget-content ul.images li {
    display: inline;
    float: left;
}
#columns .widget .widget-content ul.images img {
    display: inline;
    float: left;
    margin: 0 0 7px 7px;
}

div.feedtitle {
    padding-left: 5px;
    font-size: 20px; /*adjust font size for feed title */
    font-weight: bold;
    color: #eee;
    text-decoration: none;
}

span.itemdate {
     font-style:italic;
     color: #006b84;
}

/* adjust font size for feed items */
/* ul li {
    font-size: 20px;
} */




/* End Columns section */

