styles_de_paragraphes.scss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. // .pre-title {
  2. // font-family: "Duke POPSU";
  3. // font-weight: inherit;
  4. // font-size: 45pt;
  5. // line-height: 33pt;
  6. // }
  7. //
  8. // .pre-sub-title {
  9. // font-family: "Texa";
  10. // font-weight: 800;
  11. // font-size: 10pt;
  12. // line-height: 13pt;
  13. // }
  14. .intro {
  15. font-family: "SGI-TextAlt";
  16. font-size: 9.5pt;
  17. line-height: 20pt;
  18. margin: 0;
  19. }
  20. .main-title {
  21. font-family: "Duke POPSU";
  22. font-weight: inherit;
  23. font-size: 60pt;
  24. line-height: 42pt;
  25. margin: 0;
  26. padding: 0;
  27. background-color: white;
  28. }
  29. .main-sub-title {
  30. font-family: "Texa";
  31. font-weight: 800;
  32. font-size: 12pt;
  33. line-height: 15pt;
  34. }
  35. .main-pre-title {
  36. font-family: "Texta";
  37. font-weight: 800;
  38. font-size: 12pt;
  39. text-transform: uppercase;
  40. line-height: 15pt;
  41. margin-top: 0;
  42. padding-top: 0;
  43. width: 250px;
  44. background-color: white;
  45. }
  46. .table-of-content {
  47. font-family: "Cormorant";
  48. font-weight: 200;
  49. font-size: 25pt;
  50. line-height: 25pt;
  51. margin: 0;
  52. a {
  53. text-decoration: none;
  54. color: inherit;
  55. }
  56. a::after {
  57. font-size: 9pt;
  58. margin-left: 10pt;
  59. content: target-counter(attr(href), page);
  60. font-family: "SGI-TextAlt";
  61. }
  62. }
  63. .credits {
  64. font-size: 9pt;
  65. margin-bottom: 6pt;
  66. h4 {
  67. font-family: "TextaAlt";
  68. text-transform: uppercase;
  69. margin: 8pt 0 0;
  70. }
  71. p {
  72. font-family: "SGI-TextAlt";
  73. line-height: 13pt;
  74. margin: 0;
  75. }
  76. }
  77. .chapter-title {
  78. font-family: "Cormorant";
  79. font-weight: 200;
  80. font-size: 34pt;
  81. line-height: 34pt;
  82. text-align: right;
  83. margin-bottom: 20mm;
  84. }
  85. .chapter-title:after {
  86. content: "++++";
  87. display: block;
  88. font-family: inherit;
  89. font-weight: 200;
  90. font-size: 10pt;
  91. letter-spacing: 4pt;
  92. }
  93. .chapter-title::before {
  94. content: attr(data-rubrique);
  95. display: block;
  96. @extend .section-title;
  97. }
  98. .chapter-content {
  99. hyphens: auto;
  100. font-family: "Cormorant";
  101. font-weight: 200;
  102. font-size: 10.5pt;
  103. line-height: 18pt;
  104. // hanging-punctuation: first last;
  105. }
  106. .section-title {
  107. font-family: "TextaAlt";
  108. font-weight: 800;
  109. font-size: 12pt;
  110. text-transform: uppercase;
  111. }
  112. .section-content {
  113. hyphens: auto;
  114. font-family: "SGI-TextAlt";
  115. font-size: 9.5pt;
  116. font-weight: 200;
  117. line-height: 18pt;
  118. // text-align: left;
  119. }
  120. // texte justifié par defaut
  121. .justify p {
  122. text-align: justify;
  123. text-align-last: left !important;
  124. hyphens: auto;
  125. hanging-punctuation: first;
  126. }
  127. .section-content p {
  128. text-align: left;
  129. }
  130. .chapter-content h3 {
  131. hyphens: none;
  132. font-size: 19pt;
  133. font-weight: 200;
  134. line-height: 23pt;
  135. margin-left: 10mm;
  136. }
  137. h4 {
  138. margin: 0;
  139. }
  140. // phrase amorce du chapitre 1
  141. strong {
  142. font-family: "Cormorant";
  143. font-weight: 200;
  144. font-size: 14pt;
  145. line-height: 18pt;
  146. letter-spacing: -1px;
  147. }
  148. // .column .image-cover .image-bleed {
  149. // margin:0;
  150. //
  151. // }
  152. p img{
  153. max-width: 100%;
  154. }
  155. .legend{
  156. font-size: 9.5pt;
  157. font-family: "Texta";
  158. line-height: 9pt;
  159. }
  160. blockquote{
  161. background-image: url("/motifs/croix.png");
  162. background-size: 0.4cm;
  163. width: calc(#{$largeur} + #{$fond-perdu} * 2);
  164. height: calc(#{$hauteur} + #{$fond-perdu} * 2);
  165. position: absolute;
  166. margin-left: calc(-2cm - #{$fond-perdu});
  167. margin-top: calc(-2cm - #{$fond-perdu});
  168. padding: 2cm;
  169. break-before: always;
  170. break-after: always;
  171. & p{
  172. display: inline;
  173. font-size: 28pt;
  174. padding: 0.2cm 0.2cm;
  175. background-color: white;
  176. box-shadow: 0.2cm 0px 0px white, 0.2cm 0px 0px white;
  177. box-decoration-break: clone;
  178. line-height: calc(100% + 0.4cm);
  179. }
  180. }