Jump to content

User:Darc/monobook.css: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Darc (talk | contribs)
mNo edit summary
Darc (talk | contribs)
mNo edit summary
Line 15: Line 15:


/* 選択していないタブの背景を変える */
/* 選択していないタブの背景を変える */
/* #p-cactions ul li a { background: white; } */
#p-cactions ul li a { background: white; }


/* 選択しているタブの背景を変える */
/* 選択しているタブの背景を変える */

Revision as of 19:08, 6 August 2005

body { font-family: "Times New Roman", serif; }

/* 本文部分とタブの背景を白色にする */
#content, #content table
#p-cactions ul li a { background: white; }

/* 本文部分と一緒に背景画面がスクロールしないようにする */
body { background-attachment: fixed; }

/* preタグの部分の背景を変える  */
pre { background: white; }

/* 文字のサイズとフォントをブラウザ指定のものにする */
/* body, #globalWrapper { font: inherit !important; } */

/* 選択していないタブの背景を変える */
#p-cactions ul li a { background: white; }

/* 選択しているタブの背景を変える */
#p-cactions ul li.selected a { background: white; }

/* 選択しているタブの縁を変える */
#p-cactions li.selected { border-color: red; }

/* 選択していないタブにマウスを当てても、タブの下の線が消えないようにする */
#p-cactions li a:hover { z-index: 0; text-decoration: none; }
#p-cactions li.selected a:hover { z-index: 3; }

/* 検索ボックスと検索ボタンの下部のスタイルを変える */
input.searchButton {
    background-color: #efefef !important;
    border: 1px outset !important;  
}
#searchInput { border: 1px inset !important; }

/* firefoxを使っているときpreの部分でみにくい遮断や重なりがあるので、スクロールバーを付ける。 */
pre { overflow: auto; }

/* すべてのプリントアウト用の規定は@media printブロックに置いてください */

/* とても小さいフォントを使って紙とインクを節約 */
@media print {
    #footer,
    #content,
    body { font-size: 8pt !important; }
    h1 { font-size: 17pt; }
    h2 { font-size: 14pt; }
    h3 { font-size: 11pt; }
    h4 { font-size: 9pt; }
    h5 { font-size: 8pt; }
    h6 { 
        font-size: 8pt;
        font-weight: normal;
    }
}

/* 小さいフォントを使わない */
td.diff-addedline, td.diff-deletedline, td.diff-context { font-size: 100%; }

/* 違っている部分だけにアンダーライン */
span.diffchange { text-decoration:underline; }