xcorp::When it rains, it pours.

"The nice thing about rain," said Eeyore, "is that it always stops. Eventually."

微調整其之弐

長年 IE でしか思った通りに表示できなかった日付のリンク部分をようやくどのブラウザでも思った通りに表示できるようになった。てかセレクタが細分化し杉でかえって分かりにくいよ(;´Д`)
現在の日付周りの CSS はこんな感じ。

h2 {
	color: #404040;
	background-color: #c0c0c0;
	border-bottom: 2px solid #404040;
	border-right: 2px solid #404040;
	margin: 5px 0 5px 0;
	padding: 4px 4px 4px 10px;
	width: auto;
	_width: 100%;
}

h2 span.date {
	font-size: 150%;
	font-style: normal;
	font-family: "Courier New";
	font-weight: bold;
	margin-left: 2px;
	margin-right: 2px;
}

h2 span.title {
	color: #404040;
	font-size: 125%;
	font-style: normal;
	font-weight: bold;
}

h2 a {
	text-decoration: none;
	border: none;
}

h2 a:hover {
	text-decoration: none;
	border: none;
}

a span.date {
	color: #404040;
}

a:hover span.date {
	color: #0000ff;
}