13,002
回編集
編集の要約なし |
編集の要約なし |
||
316行目: | 316行目: | ||
/* 非表示リンクのスタイル */ | /* 非表示リンクのスタイル */ | ||
.toctoggle, | .toctoggle, | ||
.toctoggle a { | .toctoggle a { | ||
color: #ffffff !important; | color: #ffffff !important; | ||
328行目: | 328行目: | ||
} | } | ||
.toctoggle:hover, | .toctoggle:hover, | ||
.toctoggle a:hover { | .toctoggle a:hover { | ||
color: #ff7e00 !important; | color: #ff7e00 !important; | ||
441行目: | 441行目: | ||
backdrop-filter: blur(8px); | backdrop-filter: blur(8px); | ||
z-index: -1; | z-index: -1; | ||
} | |||
/* 数式は黒文字で描画するため、ダークモードを使用している場合、見えにくい可能性がある */ | |||
/* この時、CSSを以下に示すように記述することにより、数式画像の明るさを反転させることができる */ | |||
.mwe-math-fallback-image-inline, .mwe-math-fallback-image-display { | |||
/*background-color: #EFEFEF !important;*/ | |||
/*border: solid 1px #5050C0;*/ | |||
/*border-radius: 5px;*/ | |||
/*font-family: "Latin Modern Math";*/ | |||
font-family: 'Noto Sans CJK JP', 'Noto Sans JP', sans-serif !important; | |||
/*font-weight: bold;*/ | |||
/* 外側の余白 : 上0px 下0px, 左右3px */ | |||
/*margin: 0px 0px 3px;*/ | |||
/* 内側の余白 : 上下3px, 左右3px */ | |||
/*padding: 0px 3px;*/ | |||
/*display: none !important;*/ | |||
} | |||
pre .mwe-math-fallback-image-inline, pre .mwe-math-fallback-image-display { | |||
/*color: black !important;*/ | |||
/*background-color: #EFEFEF !important;*/ | |||
/*border: solid 1px #5050C0;*/ | |||
/*border-radius: 5px;*/ | |||
/*font-family: "Latin Modern Math";*/ | |||
font-family: 'Noto Sans CJK JP', 'Noto Sans JP', sans-serif !important; | |||
/*font-weight: bold;*/ | |||
/* 外側の余白 : 上0px 下0px, 左右3px */ | |||
/*margin: 0px 0px 3px;*/ | |||
/* 内側の余白 : 上下3px, 左右3px */ | |||
/*padding: 0px 3px;*/ | |||
/*box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);*/ | |||
/*display: none !important;*/ | |||
} | |||
th .mwe-math-element { | |||
/*border: solid 1px #5050C0;*/ | |||
/*border-radius: 5px;*/ | |||
background-color: inherit; | |||
/*font-family: "Latin Modern Math";*/ | |||
font-family: 'Noto Sans CJK JP', 'Noto Sans JP', sans-serif !important; | |||
/*font-weight: bold;*/ | |||
/* 外側の余白 : 上0px 下0px, 左右3px */ | |||
/*margin: 0px 0px 3px;*/ | |||
/* 内側の余白 : 上下3px, 左右3px */ | |||
/*padding: 0px 3px;*/ | |||
} | |||
td .mwe-math-element { | |||
/*border: solid 1px #5050C0;*/ | |||
/*border-radius: 5px;*/ | |||
/*font-family: "Latin Modern Math";*/ | |||
font-family: 'Noto Sans CJK JP', 'Noto Sans JP', sans-serif !important; | |||
/*font-weight: bold;*/ | |||
/* 外側の余白 : 上下0px, 左右2px */ | |||
/*margin: 1px 2px;*/ | |||
/* 内側の余白 : 上下3px, 左右3px */ | |||
/*padding: 3px 3px;*/ | |||
} | } | ||