| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <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 {
- 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: 2rem;
- }
- .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: 2rem;
- }
- .logiciel {
- font-family: "Barlow";
- font-style: normal;
- font-size: 3rem;
- line-height: 85px;
- text-align: center;
- color: #000000;
- }
- </style>
|