Banner.vue 1.5 KB

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