_start.scss 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. body {
  2. position: relative;
  3. }
  4. #home {
  5. width: 40%;
  6. min-width: 700px;
  7. margin-left: auto;
  8. margin-right: auto;
  9. }
  10. .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  11. background-color: #964587!important;
  12. }
  13. .mCSB_scrollTools .mCSB_draggerRail {
  14. background-color: $bkg-d!important;
  15. }
  16. .section-content {
  17. p{
  18. text-align: center;
  19. }
  20. .block{
  21. width: 100%;
  22. }
  23. .content {
  24. width: 50%;
  25. margin: 70px auto;
  26. }
  27. }
  28. .sous-section {
  29. width: 100%;
  30. display: inline-flex;
  31. flex-wrap: wrap;
  32. justify-content: space-evenly;
  33. h3 {
  34. @include filet;
  35. }
  36. & > section{
  37. .title{
  38. margin-bottom: 70px;
  39. }
  40. }
  41. .item{
  42. p{
  43. text-align: justify;
  44. }
  45. }
  46. }
  47. .blocks {
  48. width: 35%;
  49. margin-bottom: 50px;
  50. .title{
  51. margin-bottom: 10px;
  52. }
  53. }
  54. .item-etapes {
  55. position: relative;
  56. .title {
  57. @include triangle;
  58. pointer-events: none;
  59. }
  60. h4 {
  61. @include rotateH;
  62. }
  63. .content {
  64. .txt {
  65. display: none;
  66. position: absolute;
  67. width: 100%;
  68. height: 100%;
  69. top: 0;
  70. left: 0;
  71. background: $blue;
  72. }
  73. }
  74. &:hover {
  75. .txt {
  76. display: inline-flex;
  77. justify-content: center;
  78. align-items: left;
  79. flex-direction: column;
  80. }
  81. }
  82. }
  83. .arrow {
  84. @include arrow;
  85. }
  86. .no-gal {
  87. .section_n2 {
  88. display: inline-flex;
  89. flex-wrap: wrap;
  90. justify-content: space-evenly;
  91. }
  92. }
  93. .galerie{
  94. h5{
  95. margin-bottom: 0;
  96. }
  97. }
  98. #start {
  99. margin: 0 50px;
  100. & > section{
  101. position: relative;
  102. margin-bottom: 150px;
  103. &:not(:first-child){
  104. margin-bottom:150px;
  105. }
  106. &:last-child{
  107. margin-bottom: 0px!important;
  108. }
  109. h2 {
  110. @include filet-b;
  111. }
  112. .sous-section{
  113. & > section{
  114. padding: 0 50px;
  115. }
  116. }
  117. #clients{
  118. .images {
  119. display: inline-flex;
  120. flex-wrap: wrap;
  121. align-items: center;
  122. justify-content: space-evenly;
  123. img {
  124. width: 15%;
  125. min-width: 150px;
  126. height: 100%;
  127. }
  128. }
  129. }
  130. }
  131. .section:not(#home) {
  132. background: $section;
  133. & > .sous-section {
  134. section {
  135. width: 100%;
  136. }
  137. }
  138. }
  139. #contact {
  140. background: transparent!important;
  141. .blocks{
  142. display: inline-flex;
  143. flex-direction: column-reverse;
  144. justify-content: center;
  145. &:nth-of-type(1){
  146. align-items: flex-end;
  147. p{
  148. text-align: right!important;
  149. }
  150. }
  151. &:nth-of-type(2){
  152. align-items: flex-start;
  153. }
  154. .title{
  155. display: none;
  156. }
  157. .content{
  158. margin-top: 20px;
  159. }
  160. .images {
  161. width: 10%;
  162. min-width: 180px;
  163. height: auto;
  164. img{
  165. border-radius: 150px;
  166. }
  167. }
  168. }
  169. h2 {
  170. background: transparent!important;
  171. }
  172. }
  173. }