This commit is contained in:
Roman Pyrih
2026-02-10 08:32:18 +01:00
parent bcb017cde9
commit d321677068
4 changed files with 20 additions and 4 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1107,6 +1107,7 @@ select {
.tile { .tile {
width: calc((100% / 4) - (70px - (70px / 4))); width: calc((100% / 4) - (70px - (70px / 4)));
height: fit-content;
padding-left: 25px; padding-left: 25px;
border-left: 1px solid #1e2832; border-left: 1px solid #1e2832;
@@ -1119,13 +1120,18 @@ select {
} }
.tile-head { .tile-head {
margin-bottom: 30px;
display: flex; display: flex;
flex-direction: row; flex-direction: row;
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
column-gap: 20px; column-gap: 20px;
cursor: pointer;
&.active {
img {
transform: rotate(-180deg);
}
}
h3 { h3 {
color: #1d1d1e; color: #1d1d1e;
font-size: 20px; font-size: 20px;
@@ -1136,10 +1142,14 @@ select {
font-size: 18px; font-size: 18px;
} }
} }
img {
transition: all 400ms ease-in-out;
}
} }
ol { ol {
padding: 0; display: none;
padding: 30px 0 0 0;
margin: 0; margin: 0;
list-style: none; list-style: none;

View File

@@ -953,5 +953,11 @@
setVoivodeshipSelectById(9); setVoivodeshipSelectById(9);
} }
$('body').on('click', '.box-6 .tiles .tile .tile-head', function(e) {
e.preventDefault();
$(this).toggleClass('active')
$(this).next().slideToggle()
});
}); });
</script> </script>