Created
February 21, 2020 05:38
-
-
Save yuuan/f1c2ef15fd32d9433018578fd3fbbd27 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@charset "utf-8"; | |
/* | |
* このファイルを編集して、profile-directory/chrome/userContent.css | |
* としてコピーしてください。 | |
*/ | |
/* | |
* このファイルは、表示するすべての Web ページにスタイルを適用するのに使用 | |
* することができます。 | |
* !important なし規定は、Web ページ作者が何かを設定した場合には、作者の | |
* 規定で無効になります。!important ありの規定は、Web ページ作者の規定を | |
* 無効にします。 | |
*/ | |
/* | |
* 例: "blink" 要素の点滅を無効にする | |
* | |
* blink { text-decoration: none ! important; } | |
* | |
*/ | |
/* | |
* 例: すべてのテーブルに 2 ピクセルの幅を強制する | |
* | |
* table { border: 2px solid; } | |
*/ | |
/* | |
* 例: "marquee" 要素を無効にする | |
* | |
* marquee { -moz-binding: none; } | |
* | |
*/ | |
/* | |
* さらに多くの事例は、 http://www.mozilla.org/unix/customizing.html | |
* を参照してください。 | |
*/ | |
/* | |
* ソースコードを見やすくする | |
*/ | |
@-moz-document url-prefix(view-source:) { | |
*|*:root { | |
background-color: #fcfcfc; | |
color: #404040; | |
margin-right: 3px; | |
} | |
pre[id]:before, span[id]:before { | |
background-color: #f0f0f0; | |
color: #606060 !important; | |
margin-right: 4px !important; | |
} | |
#viewsource { | |
font-family: "Cica-A", monospace !important; | |
font-size: 12pt !important; | |
line-height: 130% !important; | |
} | |
.doctype { | |
color: #a0b0c0; | |
} | |
.start-tag { | |
color: #6a5acd; | |
font-weight: bold; | |
} | |
.end-tag { | |
color: #6a5acd; | |
font-weight: bold; | |
} | |
.attribute-name { | |
color: #1060a0; | |
font-weight: normal; | |
} | |
.attribute-value { | |
color: #718c00; | |
} | |
.entity { | |
color: #c82829; | |
} | |
.comment { | |
background-color: #f0ece8; | |
color: #a07060; | |
} | |
.error { | |
color: #d33682; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment