| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <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>
- 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>
|