alert.scss 828 Bytes
.alertCommon{
	width:100%;
	height:100%;
	opacity:1;
	background-color:#f50;
	position:absolute;
	.entryInformation{
		width:600px;
		position:absolute;
		top:200px;
		left:300px;
		text-align:center;
		background-color:#fff;
		border:1px solid #eee;
		border-radius:6px;
		padding-left:20px;
		padding-right:20px;
		z-index:100;
		.head{
			height:50px;
			line-height: 50px;
			color:#333;
			font-size:18px;
			border-bottom:1px solid #eee;
		}
		.content{
			height:114px;
			line-height:30px;
			font-size:18px;
			padding-top:30px;
			color:#333;
			border-bottom:1px solid #eee;
		}
		.footer{
			height:72px;
			button{
				width:200px;
				height:32px;
				line-height:32px;
				font-size:16px;
				padding:0px;
				margin-top:20px;
				color:#fff;
				background-color:#55aa55;
				border-color:#55aa55;
			}
		}
	}
}