FAQ.vue 3.8 KB

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