website/assets/scss/layouts/partners_per_compet.scss
2024-09-23 23:01:01 +02:00

43 lines
609 B
SCSS
Executable file

ul.sponsors-per-event-list{
list-style-type: none;
li.event{
div.supporters{
div.supporters-list{
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
justify-content: space-evenly;
align-content: center;
a{
img{
width:100%;
height:100%;
}
}
&.level-big{
flex-direction:column;
a{
min-height:100px;
max-width:100%;
}
}
&.level-middle{
a{
max-width:33%;
max-height:500px;
}
}
&.level-little{
flex-direction:column;
a::before{
content:"- ";
}
}
}
}
}
}