mirror of
https://github.com/italicsjenga/injections.git
synced 2024-11-22 00:21:32 +11:00
first commit
This commit is contained in:
commit
44cd36a33c
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
web-ext-artifacts
|
14
manifest.json
Normal file
14
manifest.json
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"manifest_version": 2,
|
||||
"name": "injections",
|
||||
"version": "0.1",
|
||||
|
||||
"description": "misc CSS injections.",
|
||||
|
||||
"content_scripts": [
|
||||
{
|
||||
"matches": ["*://news.ycombinator.com/*"],
|
||||
"css": ["styles/news.ycombinator.com.css"]
|
||||
}
|
||||
]
|
||||
}
|
53
styles/news.ycombinator.com.css
Normal file
53
styles/news.ycombinator.com.css
Normal file
|
@ -0,0 +1,53 @@
|
|||
@media (prefers-color-scheme: dark) {
|
||||
.pagetop a:visited {
|
||||
color: #eaeaea;
|
||||
}
|
||||
.pagetop {
|
||||
color: #eaeaea;
|
||||
}
|
||||
form {
|
||||
color: #eaeaea;
|
||||
}
|
||||
body {
|
||||
background: #37393f;
|
||||
}
|
||||
td {
|
||||
background: #37393f;
|
||||
}
|
||||
tr {
|
||||
background: #37393f;
|
||||
}
|
||||
.comment {
|
||||
color: #eaeaea;
|
||||
}
|
||||
.commtext {
|
||||
color: #eaeaea;
|
||||
}
|
||||
a:link {
|
||||
color: #eaeaea;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:visited {
|
||||
color: #9e9e9e;
|
||||
text-decoration: none;
|
||||
}
|
||||
#pagespace {
|
||||
display: block;
|
||||
background-color: #37393f;
|
||||
}
|
||||
.c00,
|
||||
.c00 a:link {
|
||||
color: #eaeaea;
|
||||
}
|
||||
.comhead,
|
||||
.comhead a:link {
|
||||
color: #9e9e9e;
|
||||
}
|
||||
textarea {
|
||||
background: #cfcfcf;
|
||||
}
|
||||
}
|
||||
|
||||
textarea {
|
||||
height: 4em;
|
||||
}
|
Loading…
Reference in a new issue