Last updated: 23 Apr 20 15:39:22 (UTC)

CSS set link classes

E.g., to change colour per class.

In Stylesheet:

.red a {
color: red;
}

.red a:hover {
color: #f76a6a;
text-decoration: none;
border-bottom: 1px solid #f76a6a;
}
.red a {
color: red;
}

.red a:hover {
color: #f76a6a;
text-decoration: none;
border-bottom: 1px solid #f76a6a;
}

In Passage: Text text text <span class=“red”>[[link]]</span> text text text.

The link will appear red.