Accompagnement.vue 4.0 KB

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