
/* 
 * File name  : titlebar.css
 * Created on : Feb 13, 2018, 8:09:24 PM
 * Author     : Thomas Kirby <tkirby at dynengsys.com>
 * Company    : Dynamic Engineering Systems
 * Rights     : Under license to assignee. Not for resale or redistribution.
 */

.pageTitleBar {
	display: block;
	background-color: #5EBBEB;	/* light blue */
	background-color: #66B2FF;	/* darker blue */
	padding: 12px 0;
	text-align: center;
	box-sizing: border-box;
	border: 1px solid #ccc;
	overflow: hidden;
	/*position: relative;*/
	}

.pageTitleBar > .pageTitleBarIcon {
	xposition: absolute;
	xleft: 8px;
	xtop: 10px;
	height: 48px;
	width: 48px;
	border: none;
	float: left;
	}

/* using h1 here because this is a page title, so over-riding default h1 definition */
.pageTitleBar > h1 {
	font: 100 40px/44px "Roboto",sans-serif;
    letter-spacing: 1px;
    color: #FFF;
	text-align: center;
	/*position: relative;*/
	padding: 0px;
	margin: 0px;
	box-sizing: border-box;
	}

/* tobiasahlin.com/blog/css-trick-animating-link-underlines/ */

.pageTitleBarMenu {	
	width: 100%;
	box-sizing: border-box;
	padding: 8px 0;
	margin: 0;
	margin-bottom: 20px;
	overflow: hidden;
	text-align: center;
	background: #fff;
	font-family: "Roboto",sans-serif;
	font-kerning: auto;
	font-size: 1.1rem;
	font-weight: 400;
	border-bottom: 1px solid #ccc;
	}

.pageTitleBarMenu a {
	display: inline-block;
	color: #4C5051;
	background: transparent none repeat scroll 0% 0%;
	line-height: 24px;
	text-decoration: none;
	text-align: center;
	overflow: hidden;
	white-space: nowrap;
	padding: 4px 22px;
	margin-right: 8px;
	transition: all 0.3s ease 0s;
	position: relative;
	}

.pageTitleBarMenu a.selected,
.pageTitleBarMenu a:hover {
	color: #50ADE7;
	}
	
.pageTitleBarMenu a:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: #50ADE7;
	visibility: hidden;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	}

.pageTitleBarMenu a.selected:before,
.pageTitleBarMenu a:hover:before {
	visibility: visible;
	-webkit-transform: scaleX(.82);
	transform: scaleX(.82);
	}


.pageTitleBarMenu a:last-child {
    margin: 0px;
	}

