BannerTitle.vue 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <template>
  2. <LayoutContainer>
  3. <div class="container-title">
  4. <v-col cols="4" class="text-left">
  5. <h1>{{ leftText }}</h1>
  6. </v-col>
  7. <v-col cols="4" class="logiciel">
  8. <h1>{{ centerText }}</h1>
  9. </v-col>
  10. <v-col cols="4" class="text-right">
  11. <h1>{{ rightText }}</h1>
  12. </v-col>
  13. </div>
  14. </LayoutContainer>
  15. </template>
  16. <script setup>
  17. import { defineProps } from 'vue';
  18. const props = defineProps({
  19. leftText: String,
  20. centerText: String,
  21. rightText: String,
  22. });
  23. </script>
  24. <style scoped>
  25. .container-title {
  26. display: flex;
  27. justify-content: space-around;
  28. line-height: 16px;
  29. display: flex;
  30. align-items: center;
  31. text-align: center;
  32. letter-spacing: 0.18em;
  33. border-bottom: 0.1rem solid #eaeaea;
  34. }
  35. .text-left {
  36. font-family: "Barlow";
  37. font-style: normal;
  38. font-weight: 600;
  39. font-size: 3rem;
  40. line-height: 85px;
  41. color: #000000;
  42. opacity: 0.1;
  43. margin-top: 2rem;
  44. margin-left: 2rem;
  45. }
  46. .text-right {
  47. margin-top: 2rem;
  48. font-family: "Barlow";
  49. font-style: normal;
  50. font-weight: 600;
  51. font-size: 3rem;
  52. line-height: 85px;
  53. text-align: center;
  54. color: #000000;
  55. text-align: right;
  56. opacity: 0.1;
  57. margin-right: 2rem;
  58. }
  59. .logiciel {
  60. font-family: "Barlow";
  61. font-style: normal;
  62. font-size: 3rem;
  63. line-height: 85px;
  64. text-align: center;
  65. color: #000000;
  66. }
  67. </style>