Banner.vue 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. <template>
  2. <LayoutContainer>
  3. <v-row>
  4. <div class="container-title">
  5. <v-col
  6. cols="4"
  7. class="text-left"
  8. >
  9. <h1>School</h1>
  10. </v-col>
  11. <v-col
  12. cols="4"
  13. class="logiciel"
  14. >
  15. <h1>Opentalent Manager</h1>
  16. </v-col>
  17. <v-col
  18. cols="4"
  19. class="text-right"
  20. >
  21. <h1>Artist</h1>
  22. </v-col>
  23. </div>
  24. </v-row>
  25. <v-row>
  26. <v-col cols="12">
  27. <div class="banner-container">
  28. <img
  29. src="/images/logiciels/manager/banner-manager.png"
  30. alt="line"
  31. class="cover-image"
  32. >
  33. <div class="red-square">
  34. <v-row>
  35. <div class="content-row">
  36. <v-icon
  37. size="50"
  38. class="fa-brands fa-react icon"
  39. />
  40. <p class="description-square">
  41. Fédérations, confédérations et collectivités
  42. </p>
  43. </div>
  44. </v-row>
  45. </div>
  46. <div class="white-square">
  47. <img
  48. src="/images/opentalent_manager_black.jpg"
  49. alt="Logo"
  50. class="logo-image"
  51. >
  52. </div>
  53. </div>
  54. </v-col>
  55. </v-row>
  56. </LayoutContainer>
  57. </template>
  58. <script setup>
  59. </script>
  60. <style scoped>
  61. .container-title {
  62. display: flex;
  63. justify-content: space-around;
  64. font-family: "Barlow";
  65. line-height: 16px;
  66. display: flex;
  67. align-items: center;
  68. text-align: center;
  69. letter-spacing: 0.18em;
  70. border-bottom: 0.1rem solid #eaeaea;
  71. }
  72. .text-left {
  73. font-family: "Barlow";
  74. font-style: normal;
  75. font-weight: 600;
  76. font-size: 3rem;
  77. line-height: 85px;
  78. color: #000000;
  79. opacity: 0.1;
  80. margin-top: 2rem;
  81. margin-left: 5rem;
  82. }
  83. .logiciel {
  84. font-family: "Barlow";
  85. font-style: normal;
  86. font-size: 3rem;
  87. line-height: 85px;
  88. text-align: center;
  89. color: #000000;
  90. margin-left: 6rem;
  91. margin-right: 4rem;
  92. }
  93. .text-right {
  94. margin-top: 2rem;
  95. font-family: "Barlow";
  96. font-style: normal;
  97. font-weight: 600;
  98. font-size: 3rem;
  99. line-height: 85px;
  100. text-align: center;
  101. color: #000000;
  102. text-align: right;
  103. opacity: 0.1;
  104. margin-right: 5rem;
  105. }
  106. .menu-container {
  107. display: flex;
  108. justify-content: space-around;
  109. padding: 1rem 10rem;
  110. background: white;
  111. color: #bbb8b8;
  112. font-family: "Barlow";
  113. font-size: 12px;
  114. line-height: 16px;
  115. display: flex;
  116. align-items: center;
  117. text-align: center;
  118. letter-spacing: 0.18em;
  119. text-transform: uppercase;
  120. border-bottom: 0.1rem solid #eaeaea;
  121. }
  122. .v-chip.active-menu {
  123. background: black;
  124. color: white;
  125. }
  126. .red-square {
  127. position: absolute;
  128. bottom: 0.4rem;
  129. right: 0;
  130. width: 13rem;
  131. height: 10rem;
  132. background: #d8050b;
  133. opacity: 0.9;
  134. color: white;
  135. }
  136. .white-square {
  137. position: absolute;
  138. bottom: 0.4rem;
  139. right: 13rem;
  140. width: 13rem;
  141. height: 10rem;
  142. background: white;
  143. }
  144. .description-square {
  145. font-family: "Barlow";
  146. font-style: normal;
  147. font-weight: 300;
  148. font-size: 0.8rem;
  149. text-align: center;
  150. color: white;
  151. display: flex;
  152. align-items: center;
  153. text-align: center;
  154. margin-top: 0.5rem;
  155. margin-left: 2rem;
  156. margin-right: 2rem;
  157. margin-bottom: 1rem;
  158. }
  159. .content-row {
  160. margin-top: 2rem;
  161. display: flex;
  162. flex-direction: column;
  163. justify-content: space-around;
  164. align-items: center;
  165. height: 100%;
  166. }
  167. .icon {
  168. margin-left: 2rem;
  169. margin-right: 2rem;
  170. }
  171. .logo-image {
  172. width: 90%;
  173. height: auto;
  174. margin-top: 1.5rem;
  175. margin-left: 0.5rem;
  176. }
  177. .banner-container {
  178. position: relative;
  179. overflow: hidden;
  180. }
  181. .cover-image {
  182. width: 100%;
  183. height: 27rem;
  184. object-fit: cover;
  185. transition: transform 0.2s;
  186. margin: 0 auto;
  187. transform: scaleX(-1);
  188. }
  189. </style>