はてなダイアリーのスタイルシート

このBlogのスタイルシートを変更した。

/* (たぶんデフォルト) */
span.highlight {
    color: black;
    background-color: yellow;
}

/* (たぶんデフォルト) */
img.photo {
    float: right;
    margin: 10px;
    border: 0;
}

/* リンク全体(URLリンクなど)の対処 */
/* ・リンクの下線を削除        */
a {
    text-decoration: none;
    border-bottom: 1px #cccccc;
}

/* キーワードリンクの対処 */
/* ・下線を点線にしている */
/* ・下線を灰色にしている */
a.keyword:link {
    text-decoration: none;
    border-bottom: 1px dashed #cccccc;
}

/* 訪問済みキーワードリンクの対処 */
/* ・下線を点線にしている     */
/* ・下線を灰色にしている     */
a.keyword:visited {
    text-decoration: none;
    border-bottom: 1px dashed #cccccc;
}

/* リンクにマウスを重ねたときの対処     */
/* ・リンクにマウスを重ねた場合、色を変える */
a:hover {
    background-color: #ffff00;
}

/* 段落間の幅設定 */
/* ・サイズは適当 */
div.section p {
    line-height: 1.5;
    margin-top:  3.0;
    margin-bottom: 3.0;
}