FAQ.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. <template>
  2. <div class="alt-theme main my-2">
  3. <div class="d-flex flex-row">
  4. <div class="d-flex flex-column">
  5. <LayoutUISubTitle class="mt-12 ml-3">
  6. Vous voulez tirer le meilleur de notre logiciel ?
  7. </LayoutUISubTitle>
  8. <h3 class="mt-6">
  9. Quelle que soit votre demande, notre équipe est à vos côtés pour
  10. vous guider
  11. </h3>
  12. <v-btn
  13. to="https://ressources.opentalent.fr/"
  14. target="_blank"
  15. class="btn-faq inv-theme"
  16. >
  17. Consulter notre FAQ
  18. </v-btn>
  19. </div>
  20. <div class="d-flex flex-column justify-center links">
  21. <v-btn
  22. to="https://ressources.opentalent.fr/pages/viewpage.action?pageId=75170564"
  23. target="_blank"
  24. >
  25. <div>
  26. <v-img
  27. src="/images/icons/tuto.svg"
  28. />
  29. <p>
  30. De nombreux articles tutoriels accessibles 24h/24
  31. </p>
  32. </div>
  33. </v-btn>
  34. <v-btn
  35. to="https://ressources.opentalent.fr/?contact"
  36. target="_blank"
  37. >
  38. <div>
  39. <v-img
  40. src="/images/icons/faq.svg"
  41. />
  42. <p class="text-btn">
  43. Support accessible du lundi au vendredi via l’outil en
  44. ligne
  45. </p>
  46. </div>
  47. </v-btn>
  48. </div>
  49. </div>
  50. </div>
  51. </template>
  52. <style scoped lang="scss">
  53. .flex-row {
  54. position: relative;
  55. z-index: 2;
  56. }
  57. .main {
  58. min-height: 600px;
  59. background-image: url("/images/logiciels/school/faq.jpg");
  60. background-size: cover;
  61. background-position: center 15%;
  62. background-repeat: no-repeat;
  63. height: 100%;
  64. display: flex;
  65. flex-direction: column;
  66. justify-content: center;
  67. align-items: center;
  68. position: relative;
  69. }
  70. .main::after {
  71. content: "";
  72. position: absolute;
  73. top: 0;
  74. left: 0;
  75. width: 100%;
  76. height: 100%;
  77. background: rgba(0, 0, 0, 0.6);
  78. z-index: 1;
  79. }
  80. h3 {
  81. font-family: "Barlow", serif;
  82. margin-left: 3rem;
  83. margin-right: 15rem;
  84. width: 28rem;
  85. margin-bottom: 3rem;
  86. font-size: 30px;
  87. font-style: normal;
  88. font-weight: 400;
  89. }
  90. .btn-faq {
  91. width: 14rem;
  92. height: 3.5rem;
  93. margin-left: 3rem;
  94. border-radius: 6px;
  95. font-family: "Barlow", serif;
  96. font-style: normal;
  97. font-weight: 500;
  98. font-size: 0.8rem;
  99. z-index: 1;
  100. text-transform: none !important;
  101. line-height: 1rem;
  102. }
  103. .links {
  104. .v-btn {
  105. z-index: 1;
  106. width: 23rem;
  107. height: 5.5rem;
  108. margin-left: 3rem;
  109. border-radius: 6px;
  110. font-family: "Barlow", serif;
  111. background: transparent;
  112. font-style: normal;
  113. font-weight: 500;
  114. font-size: 0.8rem;
  115. line-height: 1rem;
  116. border: 1px var(--on-alt-theme) solid;
  117. margin-bottom: 2rem;
  118. text-transform: none !important;
  119. .v-btn__content>div {
  120. display: flex;
  121. flex-direction: row;
  122. align-items: center;
  123. }
  124. .v-img {
  125. color: var(--on-alt-theme);
  126. margin-right: 0.7rem;
  127. margin-left: 1rem;
  128. z-index: 1;
  129. width: 30px;
  130. }
  131. p {
  132. font-family: "Barlow", serif;
  133. font-style: normal;
  134. font-weight: 500;
  135. font-size: 16px;
  136. line-height: 26px;
  137. color: var(--on-alt-theme);
  138. white-space: normal !important;
  139. text-align: left;
  140. }
  141. }
  142. }
  143. </style>