_start.scss 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  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: -webkit-inline-box;
  31. display: -ms-inline-flexbox;
  32. display: inline-flex;
  33. -ms-flex-wrap: wrap;
  34. flex-wrap: wrap;
  35. -webkit-box-pack: space-evenly;
  36. -ms-flex-pack: space-evenly;
  37. justify-content: space-evenly;
  38. h3 {
  39. @include filet;
  40. }
  41. & > section{
  42. .title{
  43. margin-bottom: 70px;
  44. }
  45. }
  46. .item{
  47. p{
  48. text-align: justify;
  49. }
  50. }
  51. }
  52. .blocks {
  53. width: 35%;
  54. margin-bottom: 50px;
  55. .title{
  56. margin-bottom: 10px;
  57. }
  58. }
  59. .item-etapes {
  60. position: relative;
  61. .title {
  62. @include triangle;
  63. pointer-events: none;
  64. }
  65. h4 {
  66. @include rotateH;
  67. }
  68. .content {
  69. overflow: hidden;
  70. position: relative;
  71. .txt {
  72. z-index: 2;
  73. display: -webkit-inline-box;
  74. display: -ms-inline-flexbox;
  75. display: inline-flex;
  76. -webkit-box-pack: center;
  77. -ms-flex-pack: center;
  78. justify-content: center;
  79. -webkit-box-align: center;
  80. -ms-flex-align: center;
  81. align-items: center;
  82. -webkit-box-orient: vertical;
  83. -webkit-box-direction: normal;
  84. -ms-flex-direction: column;
  85. flex-direction: column;
  86. position: absolute;
  87. width: 100%;
  88. height: 100%;
  89. top: 0%;
  90. left: 0;
  91. background: transparent;
  92. -webkit-transform: scale(0.95);
  93. transform: scale(0.95);
  94. -webkit-transition: background 0.5s ease, -webkit-transform 0.5s ease;
  95. transition: background 0.5s ease, -webkit-transform 0.5s ease;
  96. transition: transform 0.5s ease, background 0.5s ease;
  97. transition: transform 0.5s ease, background 0.5s ease, -webkit-transform 0.5s ease;
  98. .content{
  99. padding: 20px;
  100. }
  101. p, ul, li, a{
  102. color: transparent;
  103. }
  104. ul{
  105. margin-left: 20px;
  106. margin-bottom: 20px;
  107. }
  108. li{
  109. list-style: initial!important;
  110. }
  111. }
  112. }
  113. &:hover, &:focus, &:active {
  114. .txt {
  115. -webkit-transition: background 0.5s ease, -webkit-transform 0.5s ease;
  116. transition: background 0.5s ease, -webkit-transform 0.5s ease;
  117. transition: transform 0.5s ease, background 0.5s ease;
  118. transition: transform 0.5s ease, background 0.5s ease, -webkit-transform 0.5s ease;
  119. -webkit-transform: scale(1);
  120. transform: scale(1);
  121. background: $blue;
  122. p, ul, li, a{
  123. color: white;
  124. }
  125. .content{
  126. overflow: auto;
  127. }
  128. }
  129. }
  130. }
  131. .arrow {
  132. @include arrow;
  133. }
  134. .no-gal {
  135. .section_n2 {
  136. display: -webkit-inline-box;
  137. display: -ms-inline-flexbox;
  138. display: inline-flex;
  139. -ms-flex-wrap: wrap;
  140. flex-wrap: wrap;
  141. -webkit-box-pack: space-evenly;
  142. -ms-flex-pack: space-evenly;
  143. justify-content: space-evenly;
  144. }
  145. }
  146. .galerie{
  147. h5{
  148. margin-bottom: 0;
  149. }
  150. }
  151. #start {
  152. margin: 0 50px;
  153. & > section{
  154. position: relative;
  155. margin-bottom: 150px;
  156. &:not(:first-child){
  157. margin-bottom: 150px;
  158. }
  159. &:last-child{
  160. margin-bottom: 0px!important;
  161. }
  162. h2 {
  163. @include filet-b;
  164. }
  165. .sous-section{
  166. & > section{
  167. padding: 0 50px;
  168. }
  169. }
  170. #clients{
  171. .images {
  172. display: -webkit-inline-box;
  173. display: -ms-inline-flexbox;
  174. display: inline-flex;
  175. -ms-flex-wrap: wrap;
  176. flex-wrap: wrap;
  177. -webkit-box-align: center;
  178. -ms-flex-align: center;
  179. align-items: center;
  180. -webkit-box-pack: space-evenly;
  181. -ms-flex-pack: space-evenly;
  182. justify-content: space-evenly;
  183. img {
  184. width: 15%;
  185. min-width: 150px;
  186. height: 100%;
  187. margin-bottom: 10px;
  188. }
  189. }
  190. }
  191. }
  192. .section:not(#home) {
  193. background: $section;
  194. & > .sous-section {
  195. section {
  196. width: 100%;
  197. }
  198. }
  199. }
  200. #contact {
  201. .sous-section{
  202. // flex-direction: row-reverse!important;
  203. }
  204. background: transparent!important;
  205. .blocks{
  206. display: -webkit-inline-box;
  207. display: -ms-inline-flexbox;
  208. display: inline-flex;
  209. -webkit-box-orient: vertical;
  210. -webkit-box-direction: reverse;
  211. -ms-flex-direction: column-reverse;
  212. flex-direction: column-reverse;
  213. -webkit-box-pack: center;
  214. -ms-flex-pack: center;
  215. justify-content: center;
  216. &:nth-of-type(1){
  217. -webkit-box-align: end;
  218. -ms-flex-align: end;
  219. align-items: flex-end;
  220. p{
  221. text-align: right!important;
  222. img{
  223. width: 15px;
  224. margin-left: 5px;
  225. }
  226. }
  227. }
  228. &:nth-of-type(2){
  229. -webkit-box-align: start;
  230. -ms-flex-align: start;
  231. align-items: flex-start;
  232. }
  233. .title{
  234. display: none;
  235. }
  236. .content{
  237. margin-top: 20px;
  238. p{
  239. margin-top: 5px;
  240. }
  241. }
  242. .images {
  243. width: 10%;
  244. min-width: 180px;
  245. height: auto;
  246. img{
  247. border-radius: 150px;
  248. }
  249. }
  250. }
  251. h2 {
  252. background: transparent!important;
  253. }
  254. }
  255. }