Files
drupal-reha/web/themes/custom/reha/scss/partials/_aside.scss
T
2024-06-25 15:46:52 +02:00

127 lines
2.9 KiB
SCSS

.layout-sidebar-first{
#block-reha-phase1{
border: solid $yellow-puca 1px;
font-weight: 800;
padding: 1rem;
width: 80%;
@media(max-width:891px){
width: 100%;
}
h2{
margin-top: 0;
margin-bottom: 0;
text-transform: lowercase;
font-weight: 1000;
line-height: 1rem;
font-size:1.5rem ;
}
p{
font-size: 1.5rem;
line-height: 1.8rem;
margin-top: 0.8rem;
}
footer{
@extend %buttonwithborder;
width: fit-content;
}
}
}
////// tiroirs fichers
aside.layout-sidebar-second{
overflow: scroll;
padding-top: $header-height;
z-index: 98;
padding-left: 2rem;
h2{
transform: translateX(-50%) translateY(40vh) rotate(-90deg);
text-transform: uppercase;
font-weight: 400;
cursor: pointer;
&::before{
content:url('../../dist/images/noun-arrow-1569918-black.svg');
display: inline-block;
transform: translateY(5px) rotate(90deg);
}
}
.view-current-user-doc-profile{
padding: 0 2rem ;
display: flex;
flex-direction: column;
}
.profile--type--collaborateur{
.field--name-field-site{
font-size: 2rem;
font-weight: 900;
display: flex;
justify-content: space-between;
&::after{
content: url(../images/noun-cross-1151731.svg);
cursor: pointer;
}
}
.field--name-field-dossier-de-pilotage{
text-transform: uppercase;
display: flex;
flex-direction: column;
> div:nth-child(1)::before{
content: url('../../dist/images/noun-file-6880430.svg');
display: inline-flex;
width: 70px;
height: auto;
// align-content: center;
align-items: center;
}
.field__item{
width: 75%;
align-self: flex-end;
padding-right: 2rem;
}
}
}
footer{
text-transform: uppercase;
border: solid black 1px;
background-color: $white-button;
font-size: 0.9rem;
width: fit-content;
font-weight: 400;
@media (max-width:891px) {
font-size: 1rem;
}
p{margin: 0;
padding: 0.3rem;}
:hover{
background-color: $yellow-puca;
}
}
.view-footer{
padding-top: 0;
align-self: center;
}
}
aside.layout-sidebar-second.open {
transform: translateX(90%); /* Par défaut ouvert */
transition: transform 0.35s;
&:hover{
background-color: $yellow-puca;
}
}
aside.layout-sidebar-second {
transform: translateX(0%);
}