typography.scss 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. @font-face {
  2. font-family: 'dukefill';
  3. src: url('../fonts/duke_fill-webfont.woff') format('woff'),
  4. url('../fonts/duke_fill-webfont.woff2') format('woff2');
  5. font-weight: normal;
  6. font-style: normal;
  7. }
  8. @font-face {
  9. font-family: 'cormorantBold';
  10. src: url('../fonts/Cormorant-Bold-webfont.woff') format('woff');
  11. font-weight: normal;
  12. font-style: normal;
  13. }
  14. @font-face {
  15. font-family: 'cormorantBoldItalic';
  16. src: url('../fonts/Cormorant-BoldItalic-webfont.woff') format('woff');
  17. font-weight: lighter;
  18. font-style: normal;
  19. }
  20. @font-face {
  21. font-family: 'truenolight';
  22. src: url('../fonts/trueno/truenolt-webfont.woff') format('woff'),
  23. url('../fonts/trueno/truenolt-webfont.woff2') format('woff2');
  24. font-weight: normal;
  25. font-style: normal;
  26. }
  27. @font-face {
  28. font-family: 'truenolight_italic';
  29. src: url('../fonts/trueno/truenoltit-webfont.woff') format('woff'),
  30. url('../fonts/trueno/truenoltit-webfont.woff2') format('woff2');
  31. font-weight: normal;
  32. font-style: normal;
  33. }
  34. @font-face {
  35. font-family: 'truenoregular';
  36. src: url('../fonts/trueno/truenorg-webfont.woff') format('woff'),
  37. url('../fonts/trueno/truenorg-webfont.woff2') format('woff2');
  38. font-weight: normal;
  39. font-style: normal;
  40. }
  41. @font-face {
  42. font-family: 'truenoregular_italic';
  43. src: url('../fonts/trueno/truenorgit-webfont.woff') format('woff'),
  44. url('../fonts/trueno/truenorgit-webfont.woff2') format('woff2');
  45. font-weight: normal;
  46. font-style: normal;
  47. }
  48. @font-face {
  49. font-family: 'truenobold';
  50. src: url('../fonts/trueno/truenobd-webfont.woff') format('woff'),
  51. url('../fonts/trueno/truenobd-webfont.woff2') format('woff2');
  52. font-weight: normal;
  53. font-style: normal;
  54. }
  55. @font-face {
  56. font-family: 'truenobold_italic';
  57. src: url('../fonts/trueno/truenobdit-webfont.woff') format('woff'),
  58. url('../fonts/trueno/truenobdit-webfont.woff2') format('woff2');
  59. font-weight: normal;
  60. font-style: normal;
  61. }
  62. #block-renderedsitesettingsblock-2{
  63. .site_setting_entity{
  64. h1{
  65. font-family: 'dukefill';
  66. font-size: 2rem;
  67. line-height: 2rem;
  68. text-transform: uppercase;
  69. text-align: right;
  70. align-self: stretch;
  71. margin: auto;
  72. }
  73. .__info_colloque{
  74. & > div{
  75. &:first-child{
  76. font-family: 'truenoregular';
  77. font-size: 0.9rem;
  78. }
  79. &:last-child{
  80. font-family: 'truenoregular';
  81. font-weight: bold;
  82. font-size: 0.7rem;
  83. line-height: 1;
  84. }
  85. }
  86. }
  87. }
  88. }
  89. form{
  90. label{
  91. font-family: 'truenolight';
  92. }
  93. .select-items{
  94. div{
  95. font-family: 'truenolight';
  96. }
  97. }
  98. .select-selected{
  99. font-family: 'truenoregular';
  100. }
  101. input{
  102. font-family: 'truenolight';
  103. }
  104. }
  105. .thumbnails{
  106. &.programme{
  107. .__content{
  108. font-family: 'truenobold';
  109. font-size: 1rem;
  110. text-transform: uppercase;
  111. }
  112. }
  113. &.publications{
  114. .__content{
  115. div{
  116. font-family: 'cormorantBold';
  117. font-size: 1.2rem;
  118. }
  119. span{
  120. font-family: 'cormorantBoldItalic';
  121. font-size: 1.2rem;
  122. }
  123. }
  124. }
  125. &.bibliographie{
  126. background: transparent;
  127. div,p{
  128. font-family: 'cormorantBold';
  129. font-size: 1.2rem;
  130. }
  131. span{
  132. font-family: 'cormorantBoldItalic';
  133. font-size: 1.2rem;
  134. }
  135. }
  136. }
  137. // thumbnails_participants
  138. .thumbnails_participants{
  139. @include shadow_participants;
  140. *{
  141. color: $color2;
  142. }
  143. .__name{
  144. font-family: 'truenoregular';
  145. font-size: 1rem;
  146. }
  147. .__qualite{
  148. font-family: 'truenoregular_italic';
  149. font-size: 0.8rem;
  150. }
  151. }
  152. .paragraph--type--role-de-l-intervenant{
  153. .___title_inter{
  154. div{
  155. font-family: 'truenobold';
  156. font-size: 0.8rem;
  157. text-transform: uppercase;
  158. }
  159. }
  160. }
  161. // page shadow_participants
  162. article{
  163. &.participant_full{
  164. .__auteur{
  165. h2{
  166. font-family: 'truenoregular';
  167. font-size: 2rem;
  168. line-height: 1;
  169. letter-spacing: normal;
  170. }
  171. }
  172. .status{
  173. div{
  174. font-family: 'truenoregular_italic';
  175. color: $color2;
  176. font-size: 1rem;
  177. line-height: 1.2rem;
  178. text-align: center;
  179. @media screen and (min-width: 768px) {
  180. text-align: left;
  181. }
  182. }
  183. }
  184. }
  185. }