Formations.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. <template>
  2. <div id="Formations">
  3. <LayoutContainer>
  4. <div class="container-green mt-12">
  5. <v-row>
  6. <div class="d-flex justify-center align-center mt-6">
  7. <v-icon
  8. size="10"
  9. class="fa-solid fa-circle icon-title"
  10. />
  11. <h5 class="subtitle">
  12. pour aller plus loin
  13. </h5>
  14. </div>
  15. </v-row>
  16. <v-row class="mt-12">
  17. <v-col cols="4">
  18. <v-img
  19. src="/images/logiciels/school/reunion.jpg"
  20. class="reunion-img mb-12"
  21. />
  22. </v-col>
  23. <v-col cols="6">
  24. <h3 class="formation-title">
  25. Webinaire de découverte - Nouveaux utilisateurs
  26. </h3>
  27. <p class="formation-details mb-6">
  28. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do
  29. eiusmod tempor incididunt ut labore et dolore magna aliqua.
  30. </p>
  31. <v-btn class="formation-btn mt-12">
  32. S’incrire à une session
  33. </v-btn>
  34. </v-col>
  35. </v-row>
  36. </div>
  37. <v-row class="card-container mb-12">
  38. <v-col
  39. cols="3"
  40. class="d-flex justify-center align-center small-padding"
  41. >
  42. <div class="card">
  43. <h3 class="chiffre">
  44. XXX
  45. </h3>
  46. <p>utilisateurs</p>
  47. </div>
  48. </v-col>
  49. <v-col
  50. cols="3"
  51. class="d-flex justify-center align-center"
  52. >
  53. <div class="card">
  54. <h3 class="chiffre">
  55. XXX
  56. </h3>
  57. <p>structures</p>
  58. </div>
  59. </v-col>
  60. <v-col
  61. cols="3"
  62. class="d-flex justify-center align-center"
  63. >
  64. <div class="card">
  65. <h3 class="chiffre">
  66. 13
  67. </h3>
  68. <p>années d'expérience</p>
  69. </div>
  70. </v-col>
  71. </v-row>
  72. <v-row>
  73. <LogicielsSchoolCaroussel />
  74. </v-row>
  75. <v-row />
  76. </LayoutContainer>
  77. </div>
  78. </template>
  79. <script setup></script>
  80. <style scoped>
  81. .carousel-button i {
  82. color: black;
  83. }
  84. .carousel-button {
  85. display: flex;
  86. justify-content: center;
  87. align-items: center;
  88. width: 40px;
  89. height: 40px;
  90. background-color: transparent;
  91. border: 2px solid black;
  92. cursor: pointer;
  93. margin-right: 1rem;
  94. margin-top: 1rem;
  95. }
  96. .title {
  97. font-family: "Barlow";
  98. font-style: normal;
  99. font-weight: 600;
  100. font-size: 42px;
  101. line-height: 42px;
  102. text-align: center;
  103. color: #0e2d32;
  104. width: 30rem;
  105. margin-left: auto;
  106. margin-right: auto;
  107. margin-bottom: 2rem;
  108. }
  109. .chiffre {
  110. font-family: "Barlow";
  111. font-style: normal;
  112. font-weight: 600;
  113. font-size: 60px;
  114. line-height: 68px;
  115. text-align: center;
  116. color: #091d20;
  117. margin-bottom: 0.5rem;
  118. }
  119. .formation-btn {
  120. font-family: "Barlow";
  121. font-style: normal;
  122. font-weight: 500;
  123. font-size: 1rem;
  124. line-height: 18px;
  125. background: transparent;
  126. color: #eff9fb;
  127. border: 1px solid #eff9fb;
  128. border-radius: 0.5rem;
  129. margin-left: 7rem;
  130. }
  131. .formation-details {
  132. font-family: "Barlow";
  133. font-style: normal;
  134. font-weight: 300;
  135. font-size: 1rem;
  136. line-height: 1.5rem;
  137. color: #eff9fb;
  138. margin-left: 7rem;
  139. }
  140. .formation-title {
  141. font-family: "Barlow";
  142. font-style: normal;
  143. font-weight: 500;
  144. font-size: 1.8rem;
  145. line-height: 26px;
  146. color: #ffffff;
  147. margin-left: 7rem;
  148. margin-bottom: 3rem;
  149. }
  150. .reunion-img {
  151. width: 100%;
  152. height: 100%;
  153. object-fit: cover;
  154. border-radius: 20%;
  155. margin-left: 5rem;
  156. }
  157. .subtitle {
  158. font-family: "Barlow";
  159. font-weight: 500;
  160. font-size: 0.9rem;
  161. line-height: 1.2rem;
  162. font-weight: 600;
  163. line-height: 16px;
  164. display: flex;
  165. align-items: center;
  166. letter-spacing: 0.18em;
  167. text-transform: uppercase;
  168. }
  169. .icon-title {
  170. color: #fac20a;
  171. font-size: 1.5rem;
  172. margin-right: 0.5rem;
  173. margin-left: 5rem;
  174. }
  175. .container-green {
  176. background-color: #0e2d32;
  177. padding: 20px;
  178. height: auto;
  179. margin-bottom: 2rem;
  180. color: white;
  181. }
  182. .card-container {
  183. margin-left: auto;
  184. margin-right: auto;
  185. display: flex;
  186. justify-content: center;
  187. align-items: center;
  188. }
  189. .card {
  190. background: #fac20a;
  191. border-radius: 10px;
  192. width: 36rem;
  193. height: 15rem;
  194. display: flex;
  195. flex-direction: column;
  196. justify-content: center;
  197. align-items: center;
  198. text-align: center;
  199. }
  200. </style>