Delights
Copyright © 2025 Nađa Stevanović. All rights reserved.
/* Sakrij trigger/menu button samo na front page-u */
body.home .ast-header-break-point .ast-mobile-menu-buttons {
display: none !important;
}
/* Stil tag dugmadi */
.front-page-tags {
display: flex;
justify-content: center; /* centriraj dugmad */
gap: 20px; /* razmak između dugmadi */
margin: 20px 0;
}
.front-page-tags .tag-button {
text-decoration: none;
padding: 10px 25px;
border: 2px solid #000; /* crna ivica */
color: #000; /* crna boja slova */
font-weight: bold;
text-transform: uppercase;
border-radius: 5px;
transition: all 0.3s ease;
}
.front-page-tags .tag-button:hover {
background-color: #000; /* crna pozadina na hover */
color: #fff; /* tekst postaje beo */
}
Copyright © 2025 Nađa Stevanović. All rights reserved.