_globals.scss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. body{
  2. font-family: "trueno" !important;
  3. font-size: $font-normal ;
  4. font-weight: 300;
  5. line-height: 1.5;
  6. // background: $bck-col;
  7. &.path-node{
  8. &.programme-1{
  9. #node\:title,.field_sous_titre,.field_intro{
  10. color: $col-1;
  11. }
  12. article{
  13. h2,h3,h4,h5,h6,.field_titre{
  14. color: $col-1;
  15. }
  16. }
  17. }
  18. &.programme-2{
  19. #node\:title,.field_sous_titre,.field_intro{
  20. color: $col-2;
  21. }
  22. article{
  23. h2,h3,h4,h5,h6,.field_titre{
  24. color: $col-2;
  25. }
  26. }
  27. }
  28. &.programme-3{
  29. #node\:title,.field_sous_titre,.field_intro{
  30. color: $col-eur;
  31. }
  32. article{
  33. h2,h3,h4,h5,h6,.field_titre{
  34. color: $col-eur;
  35. }
  36. }
  37. }
  38. &.programme-4{
  39. #node\:title,.field_sous_titre,.field_intro{
  40. color: black;
  41. }
  42. article{
  43. h2,h3,h4,h5,h6,.field_titre{
  44. color: black;
  45. }
  46. }
  47. }
  48. &.programme-5{
  49. #node\:title,.field_sous_titre,.field_intro{
  50. color: $col-mond;
  51. }
  52. article{
  53. h2,h3,h4,h5,h6,.field_titre{
  54. color: $col-mond;
  55. }
  56. }
  57. }
  58. &.programme-6{
  59. #node\:title,.field_sous_titre,.field_intro{
  60. color: $col-ter;
  61. }
  62. article{
  63. h2,h3,h4,h5,h6,.field_titre{
  64. color: $col-ter;
  65. }
  66. }
  67. }
  68. &.programme-7{
  69. #node\:title,.field_sous_titre,.field_intro{
  70. color: $col-met;
  71. }
  72. article{
  73. h2,h3,h4,h5,h6,.field_titre{
  74. color: $col-met;
  75. }
  76. }
  77. }
  78. }
  79. }
  80. main{
  81. h2{
  82. text-transform: uppercase;
  83. font-family: 'duke';
  84. font-size: $font-extra;
  85. }
  86. }
  87. a{
  88. color:inherit;
  89. }
  90. .ext{
  91. display: none;
  92. }
  93. strong, b{
  94. font-weight: 600;
  95. }
  96. i, em{
  97. font-style: italic;
  98. }
  99. //TEMP
  100. iframe{
  101. display: none;
  102. }
  103. .slick-arrow{
  104. font-size: 0;
  105. background: center / 40% no-repeat url(../../images/fleche.svg);
  106. @include breakpoint(small down) {
  107. background: center / 100% no-repeat url(../../images/fleche.svg);
  108. }
  109. }
  110. .slick-prev{
  111. -moz-transform: rotate(180deg);
  112. -webkit-transform: rotate(180deg);
  113. -o-transform: rotate(180deg);
  114. -ms-transform: rotate(180deg);
  115. transform: rotate(180deg);
  116. }
  117. //map
  118. .leaflet-marker-icon{
  119. // padding: .5rem;
  120. a{
  121. text-decoration: none;
  122. color: white;display: block;
  123. padding: .6rem;
  124. font-weight: 600;
  125. font-size: 0;
  126. border-radius: 50%;
  127. transition: all 250ms;
  128. &:hover{
  129. background: white;
  130. font-size: $font-small;
  131. transition: all 250ms;
  132. border-radius: 0;
  133. }
  134. }
  135. .programme-1{
  136. background: $col-1;
  137. &:hover{
  138. color: $col-1;
  139. }
  140. }
  141. .programme-2{
  142. background: $col-2;
  143. &:hover{
  144. color: $col-2;
  145. }
  146. }
  147. .programme-3{
  148. background: $col-eur;
  149. &:hover{
  150. color: $col-eur;
  151. }
  152. }
  153. .programme-4{
  154. background: black;
  155. &:hover{
  156. color: black;
  157. }
  158. }
  159. .programme-5{
  160. background: $col-mond;
  161. &:hover{
  162. color: $col-mond;
  163. }
  164. }
  165. .programme-6{
  166. background: $col-ter;
  167. &:hover{
  168. color: $col-ter;
  169. }
  170. }
  171. .programme-7{
  172. background: $col-met;
  173. &:hover{
  174. color: $col-met;
  175. }
  176. }
  177. }