| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213 |
- <template>
- <div id="Formations">
- <LayoutContainer>
- <div class="container-green mt-12">
- <v-row>
- <div class="d-flex justify-center align-center mt-6">
- <v-icon
- size="10"
- class="fa-solid fa-circle icon-title"
- />
- <h5 class="subtitle">
- pour aller plus loin
- </h5>
- </div>
- </v-row>
- <v-row class="mt-12">
- <v-col cols="4">
- <v-img
- src="/images/logiciels/school/reunion.jpg"
- class="reunion-img mb-12"
- />
- </v-col>
- <v-col cols="6">
- <h3 class="formation-title">
- Webinaire de découverte - Nouveaux utilisateurs
- </h3>
- <p class="formation-details mb-6">
- Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do
- eiusmod tempor incididunt ut labore et dolore magna aliqua.
- </p>
- <v-btn class="formation-btn mt-12">
- S’incrire à une session
- </v-btn>
- </v-col>
- </v-row>
- </div>
- <v-row class="card-container mb-12">
- <v-col
- cols="3"
- class="d-flex justify-center align-center small-padding"
- >
- <div class="card">
- <h3 class="chiffre">
- XXX
- </h3>
- <p>utilisateurs</p>
- </div>
- </v-col>
- <v-col
- cols="3"
- class="d-flex justify-center align-center"
- >
- <div class="card">
- <h3 class="chiffre">
- XXX
- </h3>
- <p>structures</p>
- </div>
- </v-col>
- <v-col
- cols="3"
- class="d-flex justify-center align-center"
- >
- <div class="card">
- <h3 class="chiffre">
- 13
- </h3>
- <p>années d'expérience</p>
- </div>
- </v-col>
- </v-row>
- <v-row>
- <LogicielsSchoolCaroussel />
- </v-row>
- <v-row />
- </LayoutContainer>
- </div>
- </template>
- <script setup></script>
- <style scoped>
- .carousel-button i {
- color: black;
- }
- .carousel-button {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 40px;
- height: 40px;
- background-color: transparent;
- border: 2px solid black;
- cursor: pointer;
- margin-right: 1rem;
- margin-top: 1rem;
- }
- .title {
- font-family: "Barlow";
- font-style: normal;
- font-weight: 600;
- font-size: 42px;
- line-height: 42px;
- text-align: center;
- color: #0e2d32;
- width: 30rem;
- margin-left: auto;
- margin-right: auto;
- margin-bottom: 2rem;
- }
- .chiffre {
- font-family: "Barlow";
- font-style: normal;
- font-weight: 600;
- font-size: 60px;
- line-height: 68px;
- text-align: center;
- color: #091d20;
- margin-bottom: 0.5rem;
- }
- .formation-btn {
- font-family: "Barlow";
- font-style: normal;
- font-weight: 500;
- font-size: 1rem;
- line-height: 18px;
- background: transparent;
- color: #eff9fb;
- border: 1px solid #eff9fb;
- border-radius: 0.5rem;
- margin-left: 7rem;
- }
- .formation-details {
- font-family: "Barlow";
- font-style: normal;
- font-weight: 300;
- font-size: 1rem;
- line-height: 1.5rem;
- color: #eff9fb;
- margin-left: 7rem;
- }
- .formation-title {
- font-family: "Barlow";
- font-style: normal;
- font-weight: 500;
- font-size: 1.8rem;
- line-height: 26px;
- color: #ffffff;
- margin-left: 7rem;
- margin-bottom: 3rem;
- }
- .reunion-img {
- width: 100%;
- height: 100%;
- object-fit: cover;
- border-radius: 20%;
- margin-left: 5rem;
- }
- .subtitle {
- font-family: "Barlow";
- font-weight: 500;
- font-size: 0.9rem;
- line-height: 1.2rem;
- font-weight: 600;
- line-height: 16px;
- display: flex;
- align-items: center;
- letter-spacing: 0.18em;
- text-transform: uppercase;
- }
- .icon-title {
- color: #fac20a;
- font-size: 1.5rem;
- margin-right: 0.5rem;
- margin-left: 5rem;
- }
- .container-green {
- background-color: #0e2d32;
- padding: 20px;
- height: auto;
- margin-bottom: 2rem;
- color: white;
- }
- .card-container {
- margin-left: auto;
- margin-right: auto;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .card {
- background: #fac20a;
- border-radius: 10px;
- width: 36rem;
- height: 15rem;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- text-align: center;
- }
- </style>
|