Google Notebook を等幅フォントで使いたいと思って書いてみました。Firefox 1.5 の userContent.css に書き込みます。
/* Google Notebook */ @-moz-document url-prefix(http://www.google.com/notebook/) { .NoteContents, .editable, .NoteCollapsedContents { font-family: monospace !important; font-size: 12px !important; line-height: 18px !important; } }
とりあえず、こんな感じ。
—- 追記 @ 2006/12/21 —-
id とか class 名とか調べるのが面倒くさかったので、下のような CSS コードに書き換えた。
@-moz-document url-prefix(http://www.google.com/notebook/) {
* {
font-family: monospace !important;
font-size: 12px !important;
line-height: 18px !important;
font-weight: normal !important;
}