surtur
604021a1ad
replace the default 'white' bg and make sure that text colour is changed accordingly for 'body > pre' elements that contain e.g. raw code on gitea/github
8 lines
149 B
CSS
8 lines
149 B
CSS
/* gitea/github raw code sites */
|
|
body > pre
|
|
{
|
|
color: #fbfbfe !important;
|
|
background-color: #1c1b22 !important;
|
|
background: #1c1b22 !important;
|
|
}
|