install menu and attribution plugins, update amical.html to use

This commit is contained in:
kfitz
2023-06-22 17:13:18 -04:00
committed by Kathleen Fitzpatrick
parent 962a3ab3cf
commit 306d654274
40 changed files with 12850 additions and 1 deletions

18
dist/attribution.css vendored Normal file
View File

@@ -0,0 +1,18 @@
/* Attribution plugin: text along the right edge of the viewport */
.attribution{
position: absolute;
top: 50%;
bottom: auto;
left: 50%;
right: auto;
font-size: 0.4em;
pointer-events: none;
text-align: center;
writing-mode: vertical-lr;
transform: translate( -50%, -50% ) scale( 1 ) rotate( 180deg );
}
/* Attribution plugin: activate pointer events for attribution text only */
.attribution .content{
pointer-events: auto;
}