ok css

by Matt Anderson

CSS

/**
	Fusion Tracker Interface
	Rev. 0.0.1
	--
	Matthew Anderson
	Matthew Kelch
	--
	06/20/2013
*/

* {
	font-family: "Roboto", sans-serif;
	-webkit-font-smoothing: subpixel-antialiased;
/*	text-rendering: optimizeLegibility;*/
}

button,
.btn-group .btn {
	font-family: "Roboto", sans-serif !important;
	font-weight: 300 !important;
}

.btn-group .btn.btn-large {
	font-size: 14px;
}

.btn i {
	display: inline-block;
}

button i {
	display: inline-block;
	margin-right: 5px;
}


/* Bootstrap's Half-Pixel 
	Font-Size Makes For Weird Effects */
h1 { font-size: 38px; }
h2 { font-size: 31px; }
h3 { font-size: 24px; }
h4 { font-size: 17px; }
h5 { font-size: 14px; }
h6 { font-size: 12px; }



h1, h2, h3, h4, h5, h6 {
	font-weight: 300;
	margin-top: 0;
}

h2 > small {
	font-weight: 300;
	font-size: 17px;
}

h1, h2 {
	border-bottom: 1px solid #ebebeb;
	padding-bottom: 15px;
	margin-bottom: 15px;
}

html, body {
	background: #eaeaea;
	color: #333332;
	font-size: 14px;
	padding: 0 !important;
}

#navigationPane, #contentPane {
	box-sizing: border-box;
	transition: width 0.5s;
}

#navigationPane {
	border-right: 1px solid #ddd;
	min-height: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	box-shadow: inset -5px 0px 10px -5px rgba(0,0,0,.25);
	font-family: "Roboto", sans-serif;
	background: #454545;
}

#navigationPane ul {
	list-style: none;
	margin: 0;
}

#navigationPane h1.icon {
	display: none;
	font-size: 26px;
	line-height: 65px;
}

#contentPane {
	
}

#renderingOutlet {
	padding: 15px;
}


div.selectContainer {
	height: 30px;
	max-height: 30px;
	border-radius: 0;
	box-sizing: border-box;
	border-bottom: rgb(217, 217, 217) 1px solid;
	border-left: rgb(217, 217, 217) 1px solid;
	border-right: rgb(217, 217, 217) 1px solid;
	border-top: rgb(192, 192, 192) 1px solid;
	padding: 0;
	margin: 0;
	display: inline-block;
	width: 100%;
	overflow: hidden;
}

div.selectContainer:hover {
	border-bottom: rgb(185, 185, 185) 1px solid;
	border-left: rgb(185, 185, 185)...