/*=============================================================================
  File:         readwritetools.com/css/links.css
  Language:     CSS
  Copyright:    Read Write Tools © 2023
  License:      CC-BY-NC-ND 4.0
  Initial date: Jan 11, 2023
  Contents:     inline textual hyperlinks
=============================================================================*/

a {
	text-decoration: none;
	color: var(--paragraph-color);
	border-bottom: 1px dotted;
}
a:hover {
	color: var(--yellow);
}
a:focus {
	outline: thin dotted;
}
a.clean {
	text-decoration: none;
	border-bottom: none;
}
