typography.scss 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372
  1. @font-face {
  2. font-family: 'dukefill';
  3. src: url('../fonts/duke_fill-webfont.woff2') format('woff2'),
  4. url('../fonts/duke_fill-webfont.woff') format('woff');
  5. font-weight: normal;
  6. font-style: normal;
  7. }
  8. @font-face {
  9. font-family: 'cormorantBold';
  10. src: url('../fonts/Cormorant-Bold-webfont.woff2') format('woff2'),
  11. url('../fonts/Cormorant-Bold-webfont.woff') format('woff');
  12. font-weight: normal;
  13. font-style: normal;
  14. }
  15. @font-face {
  16. font-family: 'cormorantBoldItalic';
  17. src: url('../fonts/Cormorant-BoldItalic-webfont.woff2') format('woff2'),
  18. url('../fonts/Cormorant-BoldItalic-webfont.woff') format('woff');
  19. font-weight: lighter;
  20. font-style: normal;
  21. }
  22. @font-face {
  23. font-family: 'truenoregular';
  24. src: url('../fonts/truenorg-webfont.woff2') format('woff2'),
  25. url('../fonts/truenorg-webfont.woff') format('woff');
  26. font-weight: normal;
  27. font-style: normal;
  28. }
  29. #block-renderedsitesettingsblock-2{
  30. .site_setting_entity{
  31. h1{
  32. font-family: 'dukefill';
  33. font-size: 2rem;
  34. line-height: 2rem;
  35. text-transform: uppercase;
  36. text-align: right;
  37. align-self: stretch;
  38. margin: auto;
  39. }
  40. .__info_colloque{
  41. display: flex;
  42. flex-direction: column;
  43. justify-content: space-between;
  44. & > div{
  45. height: auto;
  46. &:first-child{
  47. font-family: 'truenoregular';
  48. color: $color1;
  49. font-size: 0.9rem;
  50. padding-bottom: 0.4rem;
  51. margin-bottom: 0.6rem;
  52. }
  53. &:last-child{
  54. color: $color2;
  55. font-family: 'truenoregular';
  56. font-weight: bold;
  57. font-size: 0.7rem;
  58. line-height: 1;
  59. width: min-content;
  60. }
  61. }
  62. }
  63. }
  64. }
  65. #block-mainnavigation{
  66. ul{
  67. li{
  68. font-size: 0.8rem;
  69. a{
  70. color: black;
  71. font-family: 'truenoregular';
  72. &:hover{
  73. color: black;
  74. text-decoration: none;
  75. font-weight: bold;
  76. }
  77. }
  78. }
  79. }
  80. }
  81. a{
  82. &:hover{
  83. text-decoration: none;
  84. }
  85. }
  86. main{
  87. h2{
  88. font-family: 'dukefill';
  89. font-size: 3.5rem;
  90. line-height: 3rem;
  91. letter-spacing: $letter_spacingH;
  92. }
  93. h2, a{
  94. color: $color2;
  95. }
  96. &.home{
  97. h2{
  98. font-size: 2rem;
  99. font-family: 'truenoregular';
  100. line-height: normal;
  101. }
  102. }
  103. #txt_present{
  104. .__sub-title-present{
  105. p{
  106. font-family: 'truenoregular';
  107. font-style: italic;
  108. font-size: 0.9rem;
  109. line-height: 1.2rem;
  110. }
  111. }
  112. .__body-present{
  113. p{
  114. font-family: 'truenoregular';
  115. font-weight: lighter;
  116. font-size: 1.2rem;
  117. line-height: 1.8rem;
  118. }
  119. }
  120. .more_link{
  121. a{
  122. font-size: 0.7rem
  123. }
  124. }
  125. }
  126. .more_link{
  127. a{
  128. font-family: 'truenoregular';
  129. font-size: 0.6rem;
  130. }
  131. }
  132. h3{
  133. text-transform: uppercase;
  134. margin: 2rem 0;
  135. font-family: 'dukefill';
  136. font-size: 3rem;
  137. letter-spacing: $letter_spacingH;
  138. color: $lightgrey;
  139. }
  140. .__ressources{
  141. h4{
  142. text-transform: uppercase;
  143. margin: 2rem 0;
  144. font-family: 'dukefill';
  145. font-size: 2rem;
  146. letter-spacing: $letter_spacingH;
  147. color: $color2
  148. }
  149. }
  150. blockquote{
  151. p{
  152. font-family: 'cormorantBold';
  153. font-size: 2.5rem;
  154. line-height: 3rem;
  155. font-weight: lighter;
  156. @media screen and (min-width: 768px) {
  157. font-size: 3rem;
  158. line-height: 3.5rem;
  159. }
  160. }
  161. }
  162. p{
  163. font-size: 1rem;
  164. line-height: 1.5rem;
  165. font-family: 'truenoregular';
  166. }
  167. a{
  168. color: black;
  169. &:hover{
  170. color: black;
  171. }
  172. }
  173. .__wrap_content{
  174. p{
  175. a{
  176. display: inline;
  177. background: $underline;
  178. }
  179. }
  180. }
  181. // Page programme
  182. .container{
  183. &.programme{
  184. h3{
  185. font-size: 1.5rem;
  186. font-family: 'truenoregular';
  187. color: $col_black;
  188. }
  189. }
  190. }
  191. // page publication
  192. article{
  193. &.publications{
  194. .__wrap_content{
  195. .__head{
  196. & *{
  197. color: $color2;
  198. }
  199. .__auteur{
  200. div{
  201. font-family: 'cormorantBold';
  202. font-size: 1.5rem;
  203. }
  204. }
  205. .__titre{
  206. span{
  207. font-family: 'cormorantBoldItalic';
  208. font-size: 1.5rem;
  209. }
  210. }
  211. .__info{
  212. margin: 1rem 0;
  213. div{
  214. font-family: 'cormorantBold';
  215. font-size: 1rem;
  216. }
  217. }
  218. }
  219. }
  220. }
  221. }
  222. .thumbnails{
  223. time, .type_moment{
  224. font-family: 'truenoregular';
  225. font-size: 0.9rem;
  226. text-transform: uppercase;
  227. }
  228. &.programme{
  229. .__content{
  230. font-family: 'truenoregular';
  231. font-weight: bold;
  232. font-size: 1rem;
  233. text-transform: uppercase;
  234. }
  235. }
  236. &.publications{
  237. .__content{
  238. div{
  239. font-family: 'cormorantBold';
  240. font-size: 1.2rem;
  241. }
  242. span{
  243. font-family: 'cormorantBoldItalic';
  244. font-size: 1.2rem;
  245. }
  246. }
  247. }
  248. &.bibliographie{
  249. background: transparent;
  250. div,p{
  251. font-family: 'cormorantBold';
  252. font-size: 1.2rem;
  253. }
  254. span{
  255. font-family: 'cormorantBoldItalic';
  256. font-size: 1.2rem;
  257. }
  258. }
  259. }
  260. // page shadow_participants
  261. article{
  262. &.participant_full{
  263. .__auteur{
  264. h2{
  265. font-family: 'truenoregular';
  266. font-size: 2rem;
  267. letter-spacing: normal;
  268. }
  269. }
  270. .status{
  271. div{
  272. font-family: 'truenoregular';
  273. font-style: italic;
  274. font-size: 0.8rem;
  275. text-align: center;
  276. @media screen and (min-width: 768px) {
  277. text-align: left;
  278. }
  279. }
  280. }
  281. }
  282. }
  283. // thumbnails_participants
  284. .thumbnails_participants{
  285. @include shadow_participants;
  286. *{
  287. color: $color2;
  288. }
  289. .__name{
  290. font-family: 'truenoregular';
  291. font-size: 1rem;
  292. }
  293. .__qualite{
  294. font-family: 'truenoregular';
  295. font-size: 0.8rem;
  296. font-style: italic;
  297. }
  298. }
  299. .paragraph--type--role-de-l-intervenant{
  300. .___title_inter{
  301. div{
  302. font-family: 'truenoregular';
  303. font-weight: bold;
  304. font-size: 0.8rem;
  305. text-transform: uppercase;
  306. }
  307. }
  308. }
  309. article{
  310. .__head{
  311. div{
  312. font-family: 'truenoregular';
  313. font-size: 1rem;
  314. // text-transform: uppercase;
  315. }
  316. }
  317. }
  318. #block-views-block-slide-programme-block-1,
  319. #block-views-block-dernieres-publications-block-1{
  320. h3{
  321. text-transform: uppercase;
  322. margin: 0;
  323. font-family: 'dukefill';
  324. font-size: 2rem;
  325. letter-spacing: $letter_spacingH;
  326. color: $color2
  327. }
  328. }
  329. }
  330. #block-popsu-colloque-submenu{
  331. ul{
  332. li{
  333. a{
  334. font-size: 2rem;
  335. font-family: 'dukefill';
  336. letter-spacing: 0.05rem;
  337. text-transform: uppercase;
  338. }
  339. }
  340. }
  341. }
  342. .more_link{
  343. span{
  344. padding-left: 0.5rem;
  345. }
  346. }