/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

/**
* Main container for the whole plugin
*/
.uctoday-plugin{
	-webkit-box-sizing: border-box;
 	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	font-size: 0;
}

/**
* Styling the individual plugin post cell
*/
 .uctoday-list-item{
 	-webkit-box-sizing: border-box;
  	-moz-box-sizing: border-box;
 	box-sizing: border-box;
 	position: relative;
 	list-style: none;
 }

 .uctoday-pictures{
   	margin: 0;
 	padding: 0 6px 30px 6px;	
 }

 .uctoday-no-pictures{
 	padding: 5px 0 5px 0;
 }

 .uctoday-no-pictures:first-child{
 	padding: 0 0 5px 0;
 }

 .uctoday-no-pictures:last-child{
 	padding: 5px 0 0 0;
 }

/**
* Styling the post blocks with pictures in cells
*/
 .uctoday-celled{ 	 
 	 display: inline-block;
 	 vertical-align: top;
 }

/**
* div container for the plugin post image
*/
.uctoday-img-container{
	width: 100%;
	padding-bottom: 66.66%;
	position: relative;
}

/**
* The plugin post picture itself
*/
.uctoday-img-container .uctoday-cell-image{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
}

/**
* The container for the article title underneath the image
*/
.uctoday-title-container{
	padding: 4px 0 0 0;
}

/**
* Used for styling the article title link for each post
*/
 .uctoday-list-item .uctoday-cell-title{
 	color: gray;
 	max-width: 100%;
 	font-size: 16px;
 	line-height: 1em;
 	box-shadow: 0 0 0 0;
 	border-bottom: 0;
 }