global.scss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. body,html{
  2. font-size: 16px;
  3. font-family: 'Marianne', "sans-serif";
  4. line-height: 1.2;
  5. background: $fond;
  6. .is-active{
  7. overflow: hidden;
  8. }
  9. }
  10. main{
  11. min-height: calc(100vh - 150px);
  12. }
  13. header{
  14. background: white;
  15. }
  16. ul,li,ol{
  17. list-style: none;
  18. }
  19. h1,h2,h3,h4{
  20. margin: 0;
  21. padding: 0;
  22. }
  23. h2{
  24. font-family: 'Marianne';
  25. font-size: 2.5rem;
  26. line-height: 2.5rem;
  27. color: $col_black;
  28. @media screen and (min-width: 768px) {
  29. font-size: 3rem;
  30. line-height: 3.5rem;
  31. }
  32. a{
  33. color: $col_black;
  34. }
  35. }
  36. h3{
  37. margin: 1rem 0;
  38. font-family: 'Mariannebold';
  39. font-size: 2rem;
  40. color: $color2024;
  41. @media screen and (min-width: 768px){
  42. font-size: 2.5rem;
  43. line-height: 3.5rem;
  44. }
  45. }
  46. p {
  47. + h3 {
  48. margin: 0.5rem 0 1.5rem 0;
  49. }
  50. }
  51. p{
  52. font-size: 1rem;
  53. line-height: 1.5rem;
  54. font-family: 'Marianneregular';
  55. strong{
  56. font-family: 'Mariannebold';
  57. em{
  58. font-family: 'Mariannebold_italic';
  59. }
  60. }
  61. em{
  62. font-family: 'Marianneregular_italic';
  63. }
  64. a{
  65. display: inline;
  66. background: $underline;
  67. }
  68. }
  69. a{
  70. color: black;
  71. text-decoration: none;
  72. &:hover{
  73. color: black;
  74. text-decoration: none;
  75. }
  76. }
  77. blockquote{
  78. margin: 2rem 1rem 2rem 1rem;
  79. color: $lightgrey;
  80. // @include croix_or_B;
  81. @media screen and (min-width: 768px) {
  82. margin: 3.5rem 2rem 4rem 2rem;
  83. p{
  84. margin-top: 1rem;
  85. }
  86. }
  87. p{
  88. font-family: 'Mariannebold';
  89. font-size: 2rem;
  90. line-height: 2.5rem;
  91. font-weight: lighter;
  92. margin-top: 0.5rem;
  93. }
  94. }
  95. img{
  96. width:100%;
  97. height: 100%;
  98. object-fit: cover;
  99. }
  100. button{
  101. outline:0;
  102. border: 0;
  103. &:focus{
  104. outline:0;
  105. border: 0;
  106. }
  107. }
  108. footer{
  109. *{
  110. font-family: 'Marianne';
  111. color: $col_black;
  112. }
  113. h2{
  114. text-transform: uppercase;
  115. font-size: 1rem;
  116. line-height: 1.5rem;
  117. }
  118. }