Banner.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. <template>
  2. <LayoutContainer>
  3. <v-row>
  4. <div class="container-title">
  5. <v-col cols="4" class="text-left">
  6. <h1>Artist</h1>
  7. </v-col>
  8. <v-col cols="4" class="logiciel">
  9. <h1>Opentalent School</h1>
  10. </v-col>
  11. <v-col cols="4" class="text-right">
  12. <h1>Manager</h1>
  13. </v-col>
  14. </div>
  15. </v-row>
  16. <v-row>
  17. <v-col cols="12">
  18. <div class="banner-container">
  19. <img
  20. src="/images/solutions/school.jpg"
  21. alt="line"
  22. class="cover-image"
  23. />
  24. <div class="black-square">
  25. <v-row>
  26. <div class="content-row">
  27. <v-icon size="50" class="fa-brands fa-react icon"></v-icon>
  28. <p class="description-square">
  29. École de musique, d'art, de danse, de cirque, conservatoires
  30. et MJC
  31. </p>
  32. </div>
  33. </v-row>
  34. </div>
  35. <div class="blue-square">
  36. <img
  37. src="/images/logo_school_white.png"
  38. alt="Logo"
  39. class="logo-image"
  40. />
  41. </div>
  42. </div>
  43. </v-col>
  44. </v-row>
  45. </LayoutContainer>
  46. </template>
  47. <script setup></script>
  48. <style scoped>
  49. .container-title {
  50. display: flex;
  51. justify-content: space-around;
  52. line-height: 16px;
  53. display: flex;
  54. align-items: center;
  55. text-align: center;
  56. letter-spacing: 0.18em;
  57. border-bottom: 0.1rem solid #eaeaea;
  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. margin-left: 6rem;
  67. margin-right: 4rem;
  68. }
  69. .text-left {
  70. font-family: "Barlow";
  71. font-style: normal;
  72. font-weight: 600;
  73. font-size: 3rem;
  74. line-height: 85px;
  75. color: #000000;
  76. opacity: 0.1;
  77. margin-top: 2rem;
  78. margin-left: 5rem;
  79. }
  80. .text-right {
  81. margin-top: 2rem;
  82. font-family: "Barlow";
  83. font-style: normal;
  84. font-weight: 600;
  85. font-size: 3rem;
  86. line-height: 85px;
  87. text-align: center;
  88. color: #000000;
  89. text-align: right;
  90. opacity: 0.1;
  91. margin-right: 5rem;
  92. }
  93. /** banner et cadre pour logo et description de logiciel */
  94. .black-square {
  95. position: absolute;
  96. bottom: 0.4rem;
  97. right: 0;
  98. width: 13rem;
  99. height: 10rem;
  100. background-color: black;
  101. background: #9edbdd;
  102. }
  103. .blue-square {
  104. position: absolute;
  105. bottom: 0.4rem;
  106. right: 13rem;
  107. width: 13rem;
  108. height: 10rem;
  109. background: #0e2d32;
  110. }
  111. .description-square {
  112. font-family: "Barlow";
  113. font-style: normal;
  114. font-weight: 300;
  115. font-size: 0.8rem;
  116. text-align: center;
  117. color: #091d20;
  118. display: flex;
  119. align-items: center;
  120. text-align: center;
  121. margin-top: 0.5rem;
  122. margin-left: 2rem;
  123. margin-right: 2rem;
  124. margin-bottom: 1rem;
  125. }
  126. .content-row {
  127. margin-top: 2rem;
  128. display: flex;
  129. flex-direction: column;
  130. justify-content: space-around;
  131. align-items: center;
  132. height: 100%;
  133. }
  134. .icon {
  135. margin-left: 2rem;
  136. margin-right: 2rem;
  137. }
  138. .logo-image {
  139. width: 90%;
  140. height: auto;
  141. margin-top: 1.5rem;
  142. margin-left: 0.5rem;
  143. }
  144. .banner-container {
  145. position: relative;
  146. overflow: hidden;
  147. }
  148. .cover-image {
  149. width: 100%;
  150. height: 25rem;
  151. object-fit: cover;
  152. transition: transform 0.2s;
  153. margin: 0 auto;
  154. transform: scaleX(-1);
  155. }
  156. </style>