Is there a single spot for css notes?
In the deepest parts of hell.
lol
Is there a single spot for css notes?
In the deepest parts of hell.
lol
Check the test CSS I put in or
I promised I will provide a full set to change anything possible. Will do after we'll update the entire Poal's code from the dev VM.
nice examples in those subs. i'll try to keep up.
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)