ColeSite/stylesheets/effects.css

28 lines
429 B
CSS
Raw Permalink Normal View History

2022-05-05 20:24:26 +01:00
/*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);
}