/* 4. Base: Unclassed HTML elements. H1-H6, basic links, lists, etc. Last layer we see type selectors (e.g. a { }, blockqoute { }).  */

/* https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/HTML5/HTML5_element_list */

/* Text-level semantics */

a {
	cursor: pointer;
	text-decoration: none;
	transition: color var(--transition-duration);
	color: var(--color-link);
}
a:visited {
	color: var(--color-link);
}
a:hover {
	color: var(--color-link-hover);
}
a:active {
	color: var(--color-link-hover);
}

em {
	font-style: var(--font-style-italic)
}

strong {
	font-weight: var(--font-weight-bold);
}

small {
	font-size: var(--font-size-small);
}

s {

}

cite {

}

q {

}

dfn {

}

abbr {

}

data {

}

time {

}

var {

}

samp {

}

kbd {

}

sub {

}

sup {

}

i {
	font-style: var(--font-style-italic);
}

b {
	font-weight: var(--font-weight-bold);
}

u {

}

mark {

}

ruby {

}

rt {

}

rp {

}

bdi {

}

bdo {

}

span {

}

br {

}

wbr {

}

/* Edits */

ins {

}

del {

}
