/* editor-style.cssは自作ファイル */

/* コメントアウト編集画面では表示 */
.iso-commentout {
	position: relative;
	margin: 45px 0 30px;
	padding: 15px;
	border: 2px dashed #999;
	background: #f7f7f7;
}

/* 「コメントアウト中」のマーク */
.iso-commentout::before {
	content: "コメントアウト中";
	position: absolute;
	top: -28px;
	left: 0;
	font-size: 13px;
	font-weight: bold;
	color: #8a7500;
	background: #fffbea;
	padding: 0 5px;
}