CSS styling for a link

Hello,
what class should I use to create mmy own styling for text with a URL link on it? I can’t find it anywhere. Also is there any official documentation of CSS styling in RemNote.
Thanks in advance.

Not as yet, just some bits scattered around the forums. You may reverse-engineer one of the currently updated themes to find the selector you’re after, unless @hannesfrank can help out directly.

@yonysek We are working on cleaner and well documented CSS classes as part of the plugin system sprint. For now you should be able to do something like

.EditorContainer .underline.text-blue-60 {
  outline: red 1px solid;
}

image

but this will likely require adjustment in the next release.

1 Like