﻿@import '../default.less';
@import '../mixins.less';
//DON'T ADD IMPORTS, ABOVE ARE TO MAKE INTELLISENSE WORK

.sc-widget {
	font: 10pt @text-font;
}
/* Corner radius */
.sc-corner-all,
.sc-corner-top,
.sc-corner-left,
.sc-corner-tl {
	border-top-left-radius: 4px;
}
.sc-corner-all,
.sc-corner-top,
.sc-corner-right,
.sc-corner-tr {
	border-top-right-radius: 4px;
}
.sc-corner-all,
.sc-corner-bottom,
.sc-corner-left,
.sc-corner-bl {
	border-bottom-left-radius: 4px;
}
.sc-corner-all,
.sc-corner-bottom,
.sc-corner-right,
.sc-corner-br {
	border-bottom-right-radius: 4px;
}

.sc-scorebar {
	height: 20px;
	width: 150px;
	float: left;
	left: 4px;
}
.sc-progressbar {
	position: relative;
	overflow: hidden;
	background: #CCCCCC;
}
.sc-progressbar .sc-progressbar-text {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	vertical-align: middle;
	cursor: default;
}
.sc-progressbar .sc-progressbar-value {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: -1px;
	background: #999999;
	cursor: default;
}
