adds highlight effects

This commit is contained in:
Nye Evans 2022-05-05 20:24:26 +01:00
parent c1a1a121ce
commit 9815fb5fc9
5 changed files with 31 additions and 0 deletions

27
stylesheets/effects.css Normal file
View file

@ -0,0 +1,27 @@
/*this all does the same thing*/
::selection {
background-color: black;
color: rgb(43, 80, 201);
}
::-moz-selection {
background-color: black;
color: rgb(43, 80, 201);
}
::-o-selection {
background-color: black;
color: rgb(43, 80, 201);
}
::-ms-selection {
background-color: black;
color: rgb(43, 80, 201);
}
::-webkit-selection {
background-color: black;
color: rgb(43, 80, 201);
}