| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201 |
- <template>
- <div id="Aide">
- <LayoutContainer>
- <div class="container-img">
- <div class="overlay" />
- <v-row>
- <v-col cols="6">
- <div class="container-left">
- <div class="container-title">
- <v-icon class="fa-brands fa-react icon-title" />
- <h5 class="subtitle-faq">
- Vous voulez tirer le meilleur de notre logiciel ?
- </h5>
- </div>
- <h3 class="title-faq">
- Quelle que soit votre demande, notre équipe est à vos côtés pour
- vous guider
- </h3>
- <v-btn class="btn-faq">
- Consulter notre FAQ
- </v-btn>
- </div>
- </v-col>
- <v-col cols="6">
- <div class="btn-container">
- <v-btn class="btn-faq-tuto">
- <div class="container-button">
- <v-icon class="fa-brands fa-react icon-button" />
- <p class="text-btn">
- De nombreux articles tutoriels accessibles 24h/24
- </p>
- </div>
- </v-btn>
- <v-btn class="btn-faq-tuto">
- <div class="container-button">
- <v-icon class="fa-brands fa-react icon-button" />
- <p class="text-btn">
- De nombreux articles tutoriels accessibles 24h/24
- </p>
- </div>
- </v-btn>
- </div>
- </v-col>
- </v-row>
- </div>
- </LayoutContainer>
- </div>
- </template>
- <script setup></script>
- <style scoped>
- .container-left {
- margin-left: 6rem;
- }
- .text-btn {
- font-family: "Barlow";
- font-style: normal;
- font-weight: 500;
- font-size: 16px;
- line-height: 26px;
- color: #f0e8e4;
- white-space: normal !important;
- text-align: left;
- }
- .btn-container {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-between;
- margin-top: 10rem;
- margin-right: 15rem;
- }
- .container-button {
- display: flex;
- flex-direction: row;
- align-items: center;
- width: 20rem;
- height: 3.5rem;
- }
- .icon-button {
- color: #fff;
- font-size: 2rem;
- margin-right: 0.7rem;
- margin-left: 2rem;
- z-index: 2;
- }
- .btn-faq-tuto {
- z-index: 2;
- width: 20rem;
- height: 5.5rem;
- margin-left: 3rem;
- border-radius: 6px;
- font-family: "Barlow";
- background: transparent;
- color: #fff;
- font-style: normal;
- font-weight: 500;
- font-size: 0.8rem;
- line-height: 1rem;
- border: 1px white solid;
- margin-bottom: 2rem;
- text-transform: none !important;
- }
- .subtitle-faq {
- font-size: 1.5rem;
- font-weight: 500;
- color: #fff;
- margin-top: 5rem;
- font-family: "Barlow";
- font-style: normal;
- font-weight: 600;
- font-size: 10px;
- line-height: 15px;
- margin-right: 25rem;
- letter-spacing: 0.18em;
- text-transform: uppercase;
- z-index: 2;
- }
- .btn-faq {
- width: 14rem;
- height: 3.5rem;
- margin-left: 3rem;
- background: #ffffff;
- border-radius: 6px;
- font-family: "Barlow";
- font-style: normal;
- font-weight: 500;
- font-size: 0.8rem;
- z-index: 2;
- text-transform: none !important;
- line-height: 1rem;
- }
- .title-faq {
- font-size: 2rem;
- font-weight: 500;
- color: #fff;
- font-family: "Barlow";
- margin-left: 3rem;
- margin-right: 15rem;
- width: 28rem;
- margin-bottom: 3rem;
- }
- .container-title {
- display: flex;
- align-items: center;
- margin-bottom: 1rem;
- margin-left: 3rem;
- }
- .icon-title {
- font-size: 1rem;
- color: #64afb7;
- margin-right: 0.5rem;
- margin-top: 3rem;
- }
- .subtitle-faq {
- color: #fff;
- margin-bottom: 2rem;
- font-family: "Barlow";
- width: 15rem;
- margin-right: 15rem;
- }
- .container-img {
- background-image: url("/images/logiciels/school/faq.jpg");
- background-size: cover;
- background-position: center;
- background-repeat: no-repeat;
- height: 35rem;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- position: relative;
- }
- .container-img::after {
- content: "";
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, 0.6);
- z-index: 1;
- }
- .v-row {
- position: relative;
- z-index: 2;
- }
- </style>
|