FAQ.vue 3.8 KB

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