44 lines
803 B
SCSS
44 lines
803 B
SCSS
#moments{
|
|
h4, h2{
|
|
color: $color2024;
|
|
}
|
|
.__wrapper{
|
|
.__title{
|
|
margin: 0.5rem 0;
|
|
}
|
|
}
|
|
.__wrap_side{
|
|
margin-top: 0.5rem;
|
|
}
|
|
.__wrap_content{
|
|
.__head{
|
|
margin: 0.5rem 0;
|
|
div{
|
|
& > div{
|
|
font-family: 'Marianneregular';
|
|
font-size: 0.8rem;
|
|
padding-right: 0.5rem;
|
|
&:not(:first-child){
|
|
padding-left: 0.5rem;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.__content{
|
|
max-height: calc(1.5rem * 12 );
|
|
// 1.5rem = line-height if change don't forget script.js
|
|
overflow: hidden;
|
|
&.is_active{
|
|
max-height: 100%!important;
|
|
}
|
|
|
|
@media screen and (min-width: 576px) {
|
|
max-height: 100%;
|
|
}
|
|
}
|
|
.more_link.is_active{
|
|
display: none!important;
|
|
}
|
|
}
|
|
}
|