canti primo tag

This commit is contained in:
David Frassi
2026-05-16 17:24:59 +02:00
commit 0c33fc6fcf
106 changed files with 28210 additions and 0 deletions
@@ -0,0 +1,283 @@
.bg-gradient {
--background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}
.propose-container {
max-width: 800px;
margin: 0 auto;
}
.ocr-progress-card {
background: rgba(var(--ion-color-secondary-rgb), 0.15);
border: 1px solid var(--ion-color-secondary);
border-radius: 16px;
padding: 20px;
display: flex;
align-items: center;
gap: 16px;
margin-bottom: 20px;
box-shadow: 0 4px 15px rgba(0,0,0,0.3);
ion-spinner {
color: var(--ion-color-secondary);
width: 32px;
height: 32px;
}
.progress-info {
flex: 1;
p {
margin: 0;
font-size: 15px;
font-weight: 600;
color: white;
&.small {
font-size: 11px;
color: rgba(255,255,255,0.6);
margin-top: 2px;
}
}
ion-progress-bar {
margin-top: 12px;
height: 6px;
border-radius: 3px;
}
}
}
.toolbar-section {
margin-bottom: 12px;
.toolbar-label {
font-size: 10px;
text-transform: uppercase;
letter-spacing: 1.5px;
color: rgba(255, 255, 255, 0.5);
margin-bottom: 6px;
padding-left: 4px;
font-weight: 700;
}
}
.horizontal-toolbar {
display: flex;
gap: 6px;
overflow-x: auto;
padding-bottom: 10px;
scrollbar-width: thin;
&::-webkit-scrollbar {
height: 3px;
}
&::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.15);
border-radius: 2px;
}
ion-button {
--border-radius: 10px;
margin: 0;
flex-shrink: 0;
font-size: 11px;
font-weight: 600;
}
}
.chords-toolbar {
ion-button {
--background: rgba(255, 255, 255, 0.1);
--color: #ffffff;
border: 1px solid rgba(255,255,255,0.1);
&:active {
--background: var(--ion-color-secondary);
}
}
}
.editor-wrapper {
margin-bottom: 20px;
background: #000000;
border-radius: 14px;
overflow: hidden;
border: 1px solid rgba(255,255,255,0.1);
box-shadow: inset 0 2px 10px rgba(0,0,0,0.5);
.editor-header {
background: rgba(255,255,255,0.05);
padding: 4px 8px 4px 16px;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid rgba(255,255,255,0.1);
.editor-title-group {
span {
font-size: 11px;
font-weight: 800;
color: var(--ion-color-secondary);
text-transform: uppercase;
letter-spacing: 0.5px;
}
}
.editor-actions {
display: flex;
gap: 0;
ion-button {
--color: rgba(255,255,255,0.6);
margin: 0;
height: 36px;
&[disabled] {
opacity: 0.3;
}
ion-icon {
font-size: 18px;
}
}
}
}
&.hc {
border: 2px solid #ffffff;
background: #000000;
.editor-header {
background: #ffffff;
span { color: #000000; }
small { color: #333; font-weight: 600; }
}
.content-textarea {
--color: #ffffff !important;
color: #ffffff !important;
background: #000000 !important;
font-size: 18px !important;
font-weight: 700 !important;
caret-color: #ff00ff;
}
}
}
.content-textarea {
font-family: 'Courier New', Courier, monospace;
font-size: 15px;
font-weight: 500;
color: #ffffff;
--padding-start: 16px;
--padding-end: 16px;
--padding-top: 16px;
--padding-bottom: 16px;
min-height: 400px;
}
.category-selectors {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 12px;
margin-bottom: 12px;
}
.select-item {
--background: rgba(255, 255, 255, 0.04);
--border-radius: 12px;
ion-select {
width: 100%;
--padding-start: 0;
color: white;
font-size: 14px;
}
}
.custom-input-item {
--background: rgba(255, 255, 255, 0.04);
--border-radius: 12px;
margin-bottom: 12px;
ion-label {
color: var(--ion-color-secondary) !important;
font-family: 'Outfit', sans-serif;
font-weight: 600;
margin-bottom: 6px !important;
font-size: 12px !important;
text-transform: uppercase;
}
ion-input {
color: white;
font-weight: 500;
}
}
.textarea-item {
--background: transparent;
--padding-start: 0;
--padding-end: 0;
}
.action-buttons {
margin-top: 24px;
margin-bottom: 50px;
}
.send-btn {
--border-radius: 16px;
--background: var(--ion-color-secondary);
font-weight: 700;
height: 60px;
font-size: 16px;
box-shadow: 0 8px 20px rgba(var(--ion-color-secondary-rgb), 0.3);
}
/* POPOVER STYLING */
.quick-popover {
--width: 90%;
--max-width: 400px;
--background: #1e1e1e;
--color: white;
.popover-container {
display: flex;
flex-direction: column;
gap: 16px;
padding: 16px;
}
.popover-section {
h6 {
margin: 0 0 8px 0;
font-size: 10px;
text-transform: uppercase;
color: var(--ion-color-medium);
letter-spacing: 1px;
}
}
.popover-grid {
display: grid;
gap: 4px;
ion-button {
margin: 0;
--padding-start: 4px;
--padding-end: 4px;
font-size: 12px;
height: 32px;
--background: rgba(255,255,255,0.08);
--color: white;
font-weight: 700;
}
}
.tags-grid {
grid-template-columns: repeat(2, 1fr);
}
.chords-grid {
grid-template-columns: repeat(4, 1fr);
}
}