FAQ.vue 4.1 KB

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