modificato deploy verso contabo

This commit is contained in:
David Frassi
2026-06-17 01:04:27 +02:00
parent 2d23dcae83
commit 97a11d5074
24 changed files with 1063 additions and 64 deletions
+33
View File
@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html>
<head>
<style>
.chord-segment {
display: inline-flex;
flex-direction: column;
vertical-align: bottom;
margin-right: 0.2em;
border: 1px solid blue;
}
.chord {
font-size: 0.75em;
font-weight: 700;
color: red;
height: 1.2em;
margin-bottom: -0.2em;
border: 1px solid red;
}
.seg-text {
white-space: pre;
border: 1px solid green;
}
</style>
</head>
<body>
<div>
ti amerò come
<span class="chord-segment"><span class="chord">LA</span><span class="seg-text"> </span></span>
<span class="chord-segment"><span class="chord">MI</span><span class="seg-text"></span></span>
</div>
</body>
</html>