_projets-complets-ecran.scss 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. .path-projets-complets {
  2. .layout-container header{
  3. top: inherit !important;
  4. left: inherit !important;
  5. }
  6. .layout-content{
  7. // width: 90vw;
  8. // margin: auto;
  9. }
  10. // =========================
  11. // ÉCRAN
  12. // =========================
  13. span {
  14. display: none;
  15. }
  16. .print-header{
  17. display: none;
  18. }
  19. ///// bouton print //////
  20. .view-header{
  21. position: fixed;
  22. right: 0;
  23. margin-right: 2rem;
  24. margin-top: 5rem;
  25. font-weight: 600;
  26. text-transform: uppercase;
  27. padding: 0.3rem 0.7rem;
  28. width: fit-content;
  29. background-color: $blue-light;
  30. border: none;
  31. p{margin: 0;}
  32. a{color: white;}
  33. }
  34. .view-projets{
  35. margin-bottom: 4rem !important;
  36. ///// filtres ///////////
  37. .buttons-filtres-ressources{display: none;}
  38. margin: auto;
  39. .view-filters{
  40. margin-top: 4rem;
  41. padding-left: 0.5rem;
  42. display: flex;
  43. flex-direction: column;
  44. @media (max-width: 479px){
  45. flex-direction: column;
  46. padding-bottom: 3rem;
  47. margin-top: 0rem;
  48. }
  49. &::before{
  50. content: 'Sélectionner les projets à imprimer :';
  51. margin-right: 2rem;
  52. margin-bottom: 1rem;
  53. margin-left: 0.5rem;
  54. font-weight: 900;
  55. // width: 160px;
  56. min-width: fit-content;
  57. @media (max-width: 479px){
  58. padding-bottom: 1rem;
  59. }
  60. }
  61. }
  62. .field--name-title {
  63. order: 2;
  64. font-family: "Marianne";
  65. font-size: 2rem;
  66. font-weight: 800;
  67. color: $blue-light;
  68. @media (max-width: 1624px) {
  69. font-size: 2.3rem;
  70. }
  71. @media (max-width: 1384px) {
  72. font-size: 2rem;
  73. }
  74. @media (max-width: 1216px) {
  75. font-size: 2rem;
  76. }
  77. @media (max-width: 810px) {
  78. font-size: 1.7rem;
  79. }
  80. a {
  81. color: $blue-light;
  82. }
  83. }
  84. .field--name-field-equipe {
  85. order: 3;
  86. color: $blue-dark;
  87. font-size: 1.5rem;
  88. font-weight: 900;
  89. text-transform: uppercase;
  90. @media (max-width: 1624px) {
  91. font-size: 1.3rem;
  92. }
  93. @media (max-width: 1216px) {
  94. font-size: 1.1rem;
  95. }
  96. @media (max-width: 810px) {
  97. font-size: 1rem;
  98. }
  99. .field__label {
  100. display: none;
  101. }
  102. }
  103. .field--name-field-region {
  104. .field__label{
  105. display: none;
  106. }
  107. display: flex;
  108. align-items: center;
  109. gap: 0.5rem;
  110. margin-top: 1rem;
  111. &::before {
  112. content: "";
  113. display: block;
  114. width: 20px;
  115. height: 20px;
  116. background: url("../images/pictos/picto_lieu.svg") no-repeat center;
  117. background-size: contain;
  118. }
  119. }
  120. .field--name-field-incube {
  121. order: 4;
  122. display: inline-flex;
  123. width: fit-content;
  124. background-color: $red;
  125. color: white;
  126. font-weight: 800;
  127. padding-right: 0.3rem;
  128. padding-left: 0.2rem;
  129. margin-bottom: 1rem;
  130. margin-top: 1rem;
  131. // flex-direction: row;
  132. &::before {
  133. content: ' Projet ';
  134. padding-right: 0.5rem;
  135. }
  136. .field__label{
  137. display: inline;
  138. }
  139. .field__item {
  140. display: none;
  141. }
  142. }
  143. .field--name-field-neuf-rehabilitation,
  144. .field--name-field-encours-fini {
  145. display: none;
  146. }
  147. // ///// ///////////
  148. @media screen {
  149. .node-type-projet {
  150. visibility: hidden;
  151. }
  152. }
  153. }
  154. }