https://www.w3schools.com/Css/css_examples.asp
from above and using right click, inspect element in firefox i derived the following:
div.pure-u-1.pure-u-md-18-24
{
background-color: #888888; //works, gray
}
div.score
{
background-color: #888888; color: blue; //text color
}
div.upvoted
{
background-color: #0000aa; //works, blue //color: blue; //does not work, icon is image for arrows. // is to comment out text
}
crude, but they work
edit: right click, inspect element, {} style editor, poal.css for raw css codes you can copy/paste into your stylesheet
a:link
{
color: #4646ff !important;
text-decoration: none;
}
.post .title:hover {
background: #c0c0c0;
//color: #fff;
}
a:visited
{
color: #990099 !important;
text-decoration: none;
}
body.dark .post .title:link
{
color: #4646ff !important;
}
body.dark .post .title:visited
{
color: #db73a8 !important;
}
body.dark .post .title:hover
{
background: #404040;
}
(post is archived)