| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <template>
- <LayoutContainer>
- <div class="container-title">
- <v-col cols="4" class="text-left">
- <h1>{{ leftText }}</h1>
- </v-col>
- <v-col cols="4" class="logiciel">
- <h1>{{ centerText }}</h1>
- </v-col>
- <v-col cols="4" class="text-right">
- <h1>{{ rightText }}</h1>
- </v-col>
- </div>
- </LayoutContainer>
- </template>
- <script setup>
- import { defineProps } from 'vue';
- const props = defineProps({
- leftText: String,
- centerText: String,
- rightText: String,
- });
- </script>
- <style scoped>
- .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 {
- position: absolute;
- font-weight: 600;
- font-size: 2.3rem;
- line-height: 85px;
- opacity: 0.08;
- margin-top: 2rem;
- left:-2rem;
- margin-bottom: 2rem;
- }
- .text-right {
- position: absolute;
- right: -2rem;
- margin-top: 2rem;
- font-style: normal;
- font-weight: 600;
- font-size: 2.3rem;
- line-height: 85px;
- text-align: center;
- opacity: 0.08;
- margin-bottom: 2rem;
- }
- .logiciel {
- display: flex;
- justify-content: space-around;
- font-size: 2.3rem;
- line-height: 77px;
- color: #000000;
- text-align: center;
- }
- </style>
|