jana1
// 4. Úprava Fotoalba POUZE pro Úvodní stránku (3 náhledy vedle sebe)
var folders = document.getElementById("folders");
if (folders && window.location.pathname === "/") {
// Vytvoříme dynamický CSS styl pouze pro úvodní stranu
var style = document.createElement("style");
style.innerHTML = `
#folders {
display: flex !important;
flex-direction: row !important;
justify-content: flex-start !important;
gap: 20px !important;
flex-wrap: wrap !important;
}
#folders .folder {
display: none !important;
}
#folders .folder:nth-child(1),
#folders .folder:nth-child(2),
#folders .folder:nth-child(3) {
display: flex !important;
flex-direction: column !important;
width: 200px !important;
text-align: left !important;
margin: 0 !important;
}
#folders .folder .photo-wrap {
width: 200px !important;
height: 180px !important;
background-color: #ffffff !important;
border: 1px solid #e0e0e0 !important;
padding: 5px !important;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
box-sizing: border-box !important;
margin-bottom: 10px !important;
}
#folders .folder .photo-wrap img {
width: 100% !important;
height: 100% !important;
object-fit: cover !important;
}
#folders .folder .folder-info h3 {
font-size: 15px !important;
font-weight: bold !important;
margin: 0 0 8px 0 !important;
line-height: 1.3 !important;
}
#folders .folder .folder-info h3 a {
color: #5a3c3c !important;
text-decoration: none !important;
}
#folders .folder .folder-info div {
font-size: 12px !important;
color: #777777 !important;
font-style: italic !important;
}
#clear_folders {
display: none !important;
}
`;
document.head.appendChild(style);
}
});