_aside.scss 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. .layout-sidebar-first{
  2. #block-reha-phase1{
  3. border: solid $yellow-puca 1px;
  4. font-weight: 800;
  5. padding: 1rem;
  6. width: 80%;
  7. @media(max-width:891px){
  8. width: 100%;
  9. }
  10. h2{
  11. margin-top: 0;
  12. margin-bottom: 0;
  13. text-transform: lowercase;
  14. font-weight: 1000;
  15. line-height: 1rem;
  16. font-size:1.5rem ;
  17. }
  18. p{
  19. font-size: 1.5rem;
  20. line-height: 1.8rem;
  21. margin-top: 0.8rem;
  22. }
  23. footer{
  24. @extend %buttonwithborder;
  25. width: fit-content;
  26. }
  27. }
  28. }
  29. ////// tiroirs fichers
  30. aside.layout-sidebar-second{
  31. overflow: scroll;
  32. padding-top: $header-height;
  33. z-index: 98;
  34. padding-left: 2rem;
  35. h2{
  36. transform: translateX(-50%) translateY(45vh) rotate(-90deg);
  37. text-transform: uppercase;
  38. font-weight: 400;
  39. &::before{
  40. content:url('../../dist/images/noun-arrow-1569918-black.svg');
  41. display: inline-block;
  42. transform: translateY(5px) rotate(90deg);
  43. }
  44. }
  45. .view-current-user-doc-profile{
  46. padding: 0 2rem ;
  47. }
  48. .profile--type--collaborateur{
  49. .field--name-field-site{
  50. font-size: 2rem;
  51. font-weight: 900;
  52. display: flex;
  53. justify-content: space-between;
  54. &::after{
  55. content: url(../images/noun-cross-1151731.svg);
  56. cursor: pointer;
  57. }
  58. }
  59. .field--name-field-dossier-de-pilotage{
  60. text-transform: uppercase;
  61. display: flex;
  62. flex-direction: column;
  63. > div:nth-child(1)::before{
  64. content: url('../../dist/images/noun-file-6880430.svg');
  65. display: inline-block;
  66. width: 70px;
  67. height: auto;
  68. // align-content: center;
  69. align-items: center;
  70. }
  71. .field__item{
  72. width: 75%;
  73. align-self: flex-end;
  74. padding-right: 2rem;
  75. }
  76. }
  77. }
  78. footer{
  79. @extend %buttonwithborder;
  80. width: fit-content;
  81. padding: 0.3rem;
  82. font-weight: 400;
  83. :hover{
  84. background-color: $yellow-puca;
  85. }
  86. }
  87. }