/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

/* FORCE BLUE LINKS INSIDE GUTENBERG EDITOR */

.editor-styles-wrapper a,
.block-editor-writing-flow a,
.block-editor-rich-text__editable a,
.block-editor-block-list__layout a {
  color: #0000EE !important;
  text-decoration-color: currentColor !important;
  border-bottom: none !important;
  box-shadow: none !important;
  background-image: none !important;
}

.editor-styles-wrapper a:hover,
.block-editor-writing-flow a:hover,
.block-editor-rich-text__editable a:hover,
.block-editor-block-list__layout a:hover {
  color: #551A8B !important;
}

