/* lecture-videos-main.css
 * CSS for course video site for NCKUEE course "Introduction to Computers"
 *
 * Modified from NCKUEE Freshman camp site
 *
 * (C) 2014-2015 KID Lab, NCKU.
 */

/* body */
body {
	padding-top: 60px; /* for navigation bar */
	padding-bottom: 40px;
	background-image: url("../img/background.png");
}

/* general classes */
.noscript { padding-top: 100px; }
.navbar-icon:hover { 
	background-color: rgb(255, 255, 255);
	box-shadow: 0 -3px 10px 5px rgb(255, 255, 255);
 }
.grey-text { color: #999; }
.pull-center { text-align: center; }

/* Bootstrap overwrite */
.label {
	font-size: 12px !important;
}
.nav > li {
	position: static !important;
}
.navbar .navbar-brand {
	font-weight: bold !important;
	font-family: sans-serif !important;
	font-size: 20px !important;
}
.navbar-default {
	background-color: rgba(250, 250, 250, 0.5) !important;
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(242, 242, 242, 0.85)) !important;
	box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3) !important;
}
.tooltip-inner {
	background-color: rgb(255, 255, 255) !important;
	color: #333 !important;
	box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3) !important;
}
.tooltip.bottom .tooltip-arrow {
 	border-bottom-color: rgb(255, 255, 255) !important;
}

/* hero units */
.hero-unit-wrapper {
	padding: 10px 20px;
	margin-top: 20px;
	margin-bottom: 30px;
	line-height: 30px;
	color: inherit;
	background-color: rgba(250, 250, 255, 0.7);
	border-radius: 6px;
	box-shadow: 0 0 0 10px rgba(250, 250, 255, 0.7);
}


/* file List */
table#file-list {
	box-shadow: 2px 2px 4px 0 rgba(200, 200, 200, 0.7);
}
table#file-list th{
	background-color: #EBEBFF;
	color: #669;
}
table#file-list th:hover{
	background-color: #e0e0ff;
	cursor: pointer;
	color: #669;
}

table#file-list td{
	text-align: right;
	background-color: rgb(255, 255, 255);
}

table#file-list td.file-description {
	text-align: left !important;
	padding-left: 11px;
}

table#file-list span.file-group-toggle {
	font-weight: bold !important;
	color: #aa8e72 !important;
	display: inline-block;
	width: 18px;
}

.files-group {
	display: none;
}

#wrapper { display: none; }
#noscript{ 
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 999;
	font-size: 16px;
	text-shadow: #666 1px 1px 4px;
}
#page-title { 
	background-color: #dde;
	padding: 5px 15px;
	font-size: 18px;
	text-align: center;
	box-shadow: 2px 2px 5px 0 rgba(200, 200, 200, 0.5);
}
#page-announcements {
	font-size: 13px;
	color: #333;
	background-color: #eef;
	border-radius: 2px;
	margin: 10px 0;
}
#page-announcements-title {
	background-color: #e0e0ff;
	color: #669;
	padding: 10px;
	font-size: 15px;
	font-weight: bold;
	margin-top: 0; /* hack for parents' clearfix */
}
#page-announcements-contents {
	padding-bottom: 5px;
}
#page-announcements-contents ul {
	list-style: none;
	padding-left: 10px;
}
#page-announcements-contents ul li {
	padding-right: 10px;
}
#page-announcements-contents .announcement-date {
	display: inline-block;
	text-align: right;
	float: right;
}
#more-announcements {
	display: none;
}
#more-announcement-button {
	text-align: right;
	padding-right: 10px;
}
#footer-hr {
	margin: 5px 0;
}
#footer {
	font-size: 12px;
}
#footer-copyright {
	display: inline-block;
	float: left;
}
#footer-file-stats {
	display: inline-block;
	float: right;
	color: #999;
}