Urejevalnik pesmi (feature #1)

This commit is contained in:
2026-03-20 22:20:18 +01:00
parent ef16b32e62
commit 91bff12ed7
5 changed files with 260 additions and 1 deletions

View File

@@ -418,6 +418,89 @@ body {
}
}
/* Modal Styles */
.modal {
display: none;
position: fixed;
z-index: 2000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.8);
overflow-y: auto;
}
.modal-content {
background-color: #222;
margin: 5% auto;
padding: 20px;
border: 1px solid #444;
width: 90%;
max-width: 800px;
border-radius: 8px;
color: white;
}
.form-group {
margin-bottom: 15px;
}
.form-group label {
display: block;
margin-bottom: 5px;
}
.form-control {
width: 100%;
padding: 10px;
background-color: #333;
border: 1px solid #555;
color: white;
border-radius: 4px;
box-sizing: border-box;
font-size: 16px;
}
textarea.form-control {
resize: vertical;
font-family: inherit;
}
.modal-footer {
display: flex;
justify-content: flex-end;
gap: 10px;
margin-top: 20px;
}
.btn-primary {
background-color: #1f8a46;
color: white;
border: none;
padding: 10px 20px;
border-radius: 4px;
cursor: pointer;
font-weight: bold;
}
.btn-secondary {
background-color: #555;
color: white;
border: none;
padding: 10px 20px;
border-radius: 4px;
cursor: pointer;
}
.btn-primary:hover {
filter: brightness(1.1);
}
.btn-secondary:hover {
filter: brightness(1.1);
}
/* veliki ekrani */
@media (min-width: 901px) {