| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310 |
- <template>
- <LayoutContainer>
- <v-row>
- <LayoutUIBannerTitle
- :centerText="'Qui sommes nous ?'"
- />
- </v-row>
- <v-row>
- <v-col cols="12">
- <LayoutUIBanner
- :imageSrc="'/images/solutions/school.jpg'"
- imageAlt="'line'"
- />
- </v-col>
- </v-row>
- </LayoutContainer>
- </template>
- <script setup></script>
- <style scoped>
- :deep().logiciel{
- font-family: "Barlow";
- font-style: normal;
- font-size: 3rem;
- line-height: 85px;
- text-align: center;
- color: #000000;
- width: 100%;
- }
- :deep().text-left, :deep().text-right, :deep().description-square, :deep().black-square, :deep().blue-square {
- display: none;
- }
- :deep().text-right {
- display: none;
- }
- .container-title {
- display: flex;
- justify-content: space-around;
- line-height: 16px;
- display: flex;
- align-items: center;
- text-align: center;
- letter-spacing: 0.18em;
- border-bottom: 0.1rem solid #eaeaea;
- }
- .text-left {
- font-family: "Barlow";
- font-style: normal;
- font-weight: 600;
- font-size: 3rem;
- line-height: 85px;
- color: #000000;
- opacity: 0.1;
- margin-top: 2rem;
- margin-left: 5rem;
- }
- .text-right {
- margin-top: 2rem;
- font-family: "Barlow";
- font-style: normal;
- font-weight: 600;
- font-size: 3rem;
- line-height: 85px;
- text-align: center;
- color: #000000;
- text-align: right;
- opacity: 0.1;
- margin-right: 5rem;
- }
- .logiciel {
- font-family: "Barlow";
- font-style: normal;
- font-size: 3rem;
- line-height: 85px;
- text-align: center;
- color: #000000;
- margin-left: 6rem;
- margin-right: 4rem;
- }
- </style>
- <!-- <template>
- <LayoutContainer>
- <v-row>
- <v-col
- cols="12"
- class="title"
- >
- <h1 class="text-center">
- Qui sommes nous ?
- </h1>
- </v-col>
- </v-row>
- <v-row>
- <v-col cols="12">
- <div class="banner-container">
- <img
- src="/images/solutions/school.jpg"
- alt="line"
- class="cover-image"
- >
- </div>
- </v-col>
- </v-row>
- <v-row>
- <v-col
- cols="12"
- class="menu-container"
- >
- <div
- v-for="menu in menus"
- :key="menu.label"
- >
- <v-chip
- v-if="state.activeMenu === menu.label"
- class="active-menu"
- >
- {{
- menu.label
- }}
- </v-chip>
- <span v-else>{{ menu.label }}</span>
- </div>
- </v-col>
- </v-row>
- </LayoutContainer>
- </template>
- <script setup>
- import { ref } from "vue";
- const state = ref({
- activeMenu: "Qui sommes-nous",
- });
- const menus = [
- { label: "Qui sommes-nous" },
- { label: "nos logiciels" },
- { label: "l’agenda opentalent" },
- { label: "notre histoire" },
- { label: "notre équipe" },
- ];
- </script>
- <style scoped>
- .title {
- margin-top: 2rem;
- margin-bottom: 2rem;
- text-align: center;
- font-family: "Barlow";
- font-style: normal;
- font-weight: 600;
- font-size: 3rem;
- line-height: 85px;
- }
- .container-title {
- display: flex;
- justify-content: space-around;
- font-family: "Barlow";
- line-height: 16px;
- display: flex;
- align-items: center;
- text-align: center;
- letter-spacing: 0.18em;
- border-bottom: 0.1rem solid #eaeaea;
- }
- .text-left {
- font-family: "Barlow";
- font-style: normal;
- font-weight: 600;
- font-size: 3rem;
- line-height: 85px;
- color: #000000;
- opacity: 0.1;
- margin-top: 2rem;
- margin-left: 5rem;
- }
- .logiciel {
- font-family: "Barlow";
- font-style: normal;
- font-size: 3rem;
- line-height: 85px;
- text-align: center;
- color: #000000;
- margin-left: 6rem;
- margin-right: 4rem;
- }
- .text-right {
- margin-top: 2rem;
- font-family: "Barlow";
- font-style: normal;
- font-weight: 600;
- font-size: 3rem;
- line-height: 85px;
- text-align: center;
- color: #000000;
- text-align: right;
- opacity: 0.1;
- margin-right: 5rem;
- }
- .menu-container {
- display: flex;
- justify-content: space-around;
- padding: 1rem 10rem;
- background: white;
- color: #bbb8b8;
- font-family: "Barlow";
- font-size: 12px;
- line-height: 16px;
- display: flex;
- align-items: center;
- text-align: center;
- letter-spacing: 0.18em;
- text-transform: uppercase;
- border-bottom: 0.1rem solid #eaeaea;
- }
- .v-chip.active-menu {
- background: black;
- color: white;
- }
- .black-square {
- position: absolute;
- bottom: 0.4rem;
- right: 0;
- width: 13rem;
- height: 10rem;
- background-color: black;
- background: #9edbdd;
- }
- .blue-square {
- position: absolute;
- bottom: 0.5rem;
- right: 12rem;
- width: 13rem;
- height: 10rem;
- background: #0e2d32;
- }
- .description-square {
- font-family: "Barlow";
- font-style: normal;
- font-weight: 300;
- font-size: 0.8rem;
- text-align: center;
- color: #091d20;
- display: flex;
- align-items: center;
- text-align: center;
- margin-top: 0.5rem;
- margin-left: 2rem;
- margin-right: 2rem;
- margin-bottom: 1rem;
- }
- .content-row {
- margin-top: 2rem;
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- align-items: center;
- height: 100%;
- }
- .icon {
- margin-left: 2rem;
- margin-right: 2rem;
- }
- .logo-image {
- width: 90%;
- height: auto;
- margin-top: 1.5rem;
- margin-left: 0.5rem;
- }
- .banner-container {
- position: relative;
- overflow: hidden;
- }
- .cover-image {
- width: 100%;
- height: 25rem;
- object-fit: cover;
- transition: transform 0.2s;
- margin: 0 auto;
- transform: scaleX(-1);
- }
- </style> -->
|