| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210 |
- <template>
- <div class="alt-theme main my-2">
- <div class="center-90">
- <v-row class="subtitle">
- <v-col cols="12">
- <LayoutUISubTitle class="mt-12 ml-3">
- Vous voulez tirer le meilleur de notre logiciel ?
- </LayoutUISubTitle>
- </v-col>
- </v-row>
- </div>
- <v-row>
- <v-col cols="12" lg="6">
- <h3 class="mt-12">
- Quelle que soit votre demande, notre équipe est à vos côtés pour vous
- guider
- </h3>
- </v-col>
- <v-col cols="12" lg="6" class="links">
- <v-btn
- href="https://ressources.opentalent.fr/space/FAQ/2496592/Tutoriels+vid%C3%A9os"
- aria-label="De nombreux articles tutoriels accessibles 24h/24"
- target="_blank"
- >
- <div>
- <v-img
- src="/images/components/faq/Icone_tutoriels-videos.svg"
- alt="Icône livre avec logo Youtube"
- />
- <p>De nombreux articles tutoriels accessibles 24h/24</p>
- </div>
- </v-btn>
- <v-btn
- href="https://ressources.opentalent.fr/"
- target="_blank"
- aria-label="Support accessible du lundi au vendredi via l’outil en ligne"
- >
- <div>
- <v-img
- src="/images/components/faq/Icone_FAQ.svg"
- alt="Icône deux bulles de conversation avec indiquée FAQ à l’intérieur d’une"
- />
- <p class="text-btn">
- Support accessible du lundi au vendredi via l’outil en ligne
- </p>
- </div>
- </v-btn>
- </v-col>
- </v-row>
- </div>
- </template>
- <script setup lang="ts">
- </script>
- <style scoped lang="scss">
- .v-row {
- position: relative;
- z-index: 2;
- max-width: 100%;
- }
- .subtitle {
- width: 100%;
- }
- .main {
- min-height: 450px;
- background-image: url('/images/components/faq/Orchestre_de_rue_avec_danseuse.jpg');
- background-size: cover;
- background-position: center 15%;
- background-repeat: no-repeat;
- height: 100%;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- position: relative;
- }
- .main::after {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, 0.6);
- z-index: 1;
- }
- h3 {
- margin-left: 20px;
- margin-right: 15rem;
- width: 28rem;
- margin-bottom: 3rem;
- font-size: 30px;
- font-weight: 400;
- @media (max-width: 600px) {
- width: 90%;
- margin-right: auto;
- margin-left: auto;
- }
- }
- .btn-faq {
- width: 14rem;
- height: 3.5rem;
- margin-left: 20px;
- border-radius: 6px;
- font-weight: 500;
- font-size: 0.8rem;
- z-index: 2;
- text-transform: none !important;
- line-height: 1rem;
- margin-right: auto;
- @media (max-width: 1240px) {
- width: 40%;
- margin-left: 30%;
- }
- @media (max-width: 600px) {
- width: 90%;
- margin-left: 5%;
- }
- }
- .links {
- justify-content: center;
- display: flex;
- flex-direction: column;
- align-items: center;
- @media (max-width: 1240px) {
- flex-direction: row;
- }
- @media (max-width: 1240px) {
- flex-direction: column;
- }
- .v-btn {
- z-index: 2;
- width: 23rem;
- height: 5.5rem;
- margin-left: 3rem;
- border-radius: 6px;
- font-weight: 500;
- font-size: 0.8rem;
- line-height: 1rem;
- border: 1px var(--on-alt-theme) solid;
- margin-bottom: 2rem;
- text-transform: none !important;
- background: rgba(0, 0, 0, 0.6);
- .v-btn__content > div {
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- .v-img {
- color: var(--on-alt-theme);
- margin-right: 0.7rem;
- margin-left: 1rem;
- z-index: 1;
- width: 30px;
- }
- p {
- font-weight: 500;
- font-size: 16px;
- line-height: 26px;
- color: var(--on-alt-theme);
- white-space: normal !important;
- text-align: left;
- }
- @media (max-width: 1240px) {
- max-width: 40%;
- margin: 12px 5%;
- height: 8rem;
- .v-btn__content > div {
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .v-img {
- margin-bottom: 6px;
- }
- p {
- text-align: center;
- }
- }
- @media (max-width: 600px) {
- max-width: 90%;
- }
- }
- }
- </style>
|