Banner.vue 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <template>
  2. <LayoutContainer>
  3. <v-row>
  4. <LayoutUIBannerTitle
  5. :leftText="'Artist'"
  6. :centerText="'Opentalent School'"
  7. :rightText="'Manager'"
  8. />
  9. </v-row>
  10. <v-row>
  11. <v-col cols="12">
  12. <LayoutUIBanner
  13. :imageSrc="'/images/solutions/school.jpg'"
  14. imageAlt="'line'"
  15. :squareText="'École de musique, d\'art, de danse, de cirque, conservatoireset MJC'"
  16. :logoSrc="'/images/logo/logiciels/School-Blanc.png'"
  17. />
  18. </v-col>
  19. </v-row>
  20. </LayoutContainer>
  21. </template>
  22. <script setup></script>
  23. <style scoped>
  24. .container-title {
  25. display: flex;
  26. justify-content: space-around;
  27. line-height: 16px;
  28. display: flex;
  29. align-items: center;
  30. text-align: center;
  31. letter-spacing: 0.18em;
  32. border-bottom: 0.1rem solid #eaeaea;
  33. }
  34. .text-left {
  35. font-family: "Barlow";
  36. font-style: normal;
  37. font-weight: 600;
  38. font-size: 3rem;
  39. line-height: 85px;
  40. color: #000000;
  41. opacity: 0.1;
  42. margin-top: 2rem;
  43. margin-left: 5rem;
  44. }
  45. .text-right {
  46. margin-top: 2rem;
  47. font-family: "Barlow";
  48. font-style: normal;
  49. font-weight: 600;
  50. font-size: 3rem;
  51. line-height: 85px;
  52. text-align: center;
  53. color: #000000;
  54. text-align: right;
  55. opacity: 0.1;
  56. margin-right: 5rem;
  57. }
  58. .logiciel {
  59. font-family: "Barlow";
  60. font-style: normal;
  61. font-size: 3rem;
  62. line-height: 85px;
  63. text-align: center;
  64. color: #000000;
  65. margin-left: 6rem;
  66. margin-right: 4rem;
  67. }
  68. </style>