noticecss = html`
<style>
.notice {
font-size: 1.5rem;
padding: 1rem;
width: 100%;
display: block;
border: 1px solid rgba(0,255,255,.75);
border-radius: 3px;
background: repeat linear-gradient(45deg, rgba(255,0,255,.5), rgba(0,255,255,.75));
}
.notice:before {
content: '👉🏾 ';
font-weight: bold;
padding: .25rem 0 .25rem .25rem;
margin-right: .25rem;
}
</style>
`