Banner.vue 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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, conservatoires et 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. .v-container{
  25. padding-left: 0;
  26. padding-right: 0;
  27. }
  28. .container-title {
  29. display: flex;
  30. justify-content: space-around;
  31. line-height: 16px;
  32. display: flex;
  33. align-items: center;
  34. text-align: center;
  35. letter-spacing: 0.18em;
  36. border-bottom: 0.1rem solid #eaeaea;
  37. }
  38. .text-left {
  39. font-family: "Barlow";
  40. font-style: normal;
  41. font-weight: 600;
  42. font-size: 3rem;
  43. line-height: 85px;
  44. color: #000000;
  45. opacity: 0.1;
  46. margin-top: 2rem;
  47. margin-left: 5rem;
  48. }
  49. .text-right {
  50. margin-top: 2rem;
  51. font-family: "Barlow";
  52. font-style: normal;
  53. font-weight: 600;
  54. font-size: 3rem;
  55. line-height: 85px;
  56. text-align: center;
  57. color: #000000;
  58. text-align: right;
  59. opacity: 0.1;
  60. margin-right: 5rem;
  61. }
  62. .logiciel {
  63. font-family: "Barlow";
  64. font-style: normal;
  65. font-size: 3rem;
  66. line-height: 85px;
  67. text-align: center;
  68. color: #000000;
  69. margin-left: 6rem;
  70. margin-right: 4rem;
  71. }
  72. </style>