html`
<style type="text/css">
:root {
--activeNotation: #1e90ff;
--inactiveNotation: #ff00ff;
--notationFontSize: 2em;
}
.notation{
width: 200px;
height: 200px;
overflow: hidden;
text-overflow: ellipsis;
border: solid 1px #CCC;
padding: 5px;
position: relative;
}
div.notation:hover {
overflow: visible;
}
.notation p {
font-family: helvetica;
font-weight: bold;
font-size: var(--notationFontSize);
text-align: center;
margin: 0;
position: absolute;
top: 50%;
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
.notation .active{
color: var(--activeNotation);
}
.notation .inactive{
color: var(--inactiveNotation);
}
</style>
`