FAQ.vue 3.7 KB

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