I’ve got a simple CSS file
body {
font-family:"Helvetica Neue";
font-size: 13px;
line-height: 136%;
color:#f4f4f4;
background-color:#1E1E1E;
margin:1.75em;
}
a:link {
color: #29BDF1;
}
In this I’ve successfully added a custom class to style some text in a script’s output
searchResultHit {
color: #1e1e1e;
background-color:#ffa718;
}
Now I want to add another class to style links that point to DEVONthink records but can’t figure out how. Some time ago I’ve read that when adding additional link
elements the order in the CSS file is important, unfortunately I don’t find the page anymore.
Is it possible to style link
or e.g. hr
in custom classes?
And does DEVONthink respect a:visited
? Could’t make that work too.