FAQ.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. <template>
  2. <LayoutContainer>
  3. <div class="container-img">
  4. <v-row>
  5. <v-col cols="6">
  6. <div class="container-left">
  7. <div class="container-title">
  8. <v-icon class="fa-brands fa-react icon-title" />
  9. <h5 class="subtitle-faq">
  10. Vous voulez tirer le meilleur de notre logiciel ?
  11. </h5>
  12. </div>
  13. <h3 class="title-faq">
  14. Quelle que soit votre demande, notre équipe est à vos côtés pour
  15. vous guider
  16. </h3>
  17. <v-btn class="btn-faq">
  18. Consulter notre FAQ
  19. </v-btn>
  20. </div>
  21. </v-col>
  22. <v-col cols="6">
  23. <div class="btn-container">
  24. <v-btn class="btn-faq-tuto">
  25. <div class="container-button">
  26. <v-icon class="fa-brands fa-react icon-button" />
  27. <p class="text-btn">
  28. De nombreux articles tutoriels accessibles 24h/24
  29. </p>
  30. </div>
  31. </v-btn>
  32. <v-btn class="btn-faq-tuto">
  33. <div class="container-button">
  34. <v-icon class="fa-brands fa-react icon-button" />
  35. <p class="text-btn">
  36. De nombreux articles tutoriels accessibles 24h/24
  37. </p>
  38. </div>
  39. </v-btn>
  40. </div>
  41. </v-col>
  42. </v-row>
  43. </div>
  44. </LayoutContainer>
  45. </template>
  46. <script setup></script>
  47. <style scoped>
  48. .container-left {
  49. margin-left: 6rem;
  50. }
  51. .text-btn {
  52. font-family: "Barlow";
  53. font-style: normal;
  54. font-weight: 500;
  55. font-size: 16px;
  56. line-height: 26px;
  57. color: #f0e8e4;
  58. }
  59. .btn-container {
  60. display: flex;
  61. flex-direction: column;
  62. align-items: center;
  63. justify-content: space-between;
  64. margin-top: 10rem;
  65. margin-right: 15rem;
  66. }
  67. .container-button {
  68. display: flex;
  69. flex-direction: row;
  70. align-items: center;
  71. width: 20rem;
  72. height: 3.5rem;
  73. }
  74. .icon-button {
  75. color: #fff;
  76. font-size: 2rem;
  77. margin-right: 1rem;
  78. margin-left: 2rem;
  79. }
  80. .btn-faq-tuto {
  81. width: 20rem;
  82. height: 5.5rem;
  83. margin-left: 3rem;
  84. border-radius: 6px;
  85. font-family: "Barlow";
  86. background: transparent;
  87. color: #fff;
  88. font-style: normal;
  89. font-weight: 500;
  90. font-size: 0.8rem;
  91. line-height: 1rem;
  92. border: 1px white solid;
  93. margin-bottom: 2rem;
  94. text-transform: none !important;
  95. }
  96. .subtitle-faq {
  97. font-size: 1.5rem;
  98. font-weight: 500;
  99. color: #fff;
  100. margin-top: 5rem;
  101. font-family: "Barlow";
  102. font-style: normal;
  103. font-weight: 600;
  104. font-size: 10px;
  105. line-height: 15px;
  106. margin-right: 25rem;
  107. letter-spacing: 0.18em;
  108. text-transform: uppercase;
  109. }
  110. .btn-faq {
  111. width: 14rem;
  112. height: 3.5rem;
  113. margin-left: 3rem;
  114. background: #ffffff;
  115. border-radius: 6px;
  116. font-family: "Barlow";
  117. font-style: normal;
  118. font-weight: 500;
  119. font-size: 0.8rem;
  120. text-transform: none !important;
  121. line-height: 1rem;
  122. }
  123. .title-faq {
  124. font-size: 2rem;
  125. font-weight: 500;
  126. color: #fff;
  127. margin-bottom: 2rem;
  128. font-family: "Barlow";
  129. margin-left: 3rem;
  130. margin-right: 15rem;
  131. }
  132. .container-title {
  133. display: flex;
  134. align-items: center;
  135. margin-bottom: 1rem;
  136. margin-left: 3rem;
  137. }
  138. .icon-title {
  139. font-size: 1rem;
  140. color: #64afb7;
  141. margin-right: 0.5rem;
  142. margin-top: 3rem;
  143. }
  144. .subtitle-faq {
  145. font-size: 1.5rem;
  146. font-weight: 500;
  147. color: #fff;
  148. margin-bottom: 2rem;
  149. margin-top: 5rem;
  150. font-family: "Barlow";
  151. font-style: normal;
  152. font-weight: 600;
  153. font-size: 10px;
  154. line-height: 15px;
  155. display: flex;
  156. align-items: center;
  157. letter-spacing: 0.18em;
  158. text-transform: uppercase;
  159. }
  160. .container-img {
  161. background-image: url("/images/logiciels/school/faq.jpg");
  162. background-size: cover;
  163. background-position: center;
  164. background-repeat: no-repeat;
  165. height: 35rem;
  166. display: flex;
  167. flex-direction: column;
  168. justify-content: center;
  169. align-items: center;
  170. }
  171. </style>