Footer.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  1. <template>
  2. <LayoutContainer>
  3. <div v-if="lgAndUp" class="activities">
  4. <v-row>
  5. <v-col cols="4">
  6. <v-img
  7. class="logo logo-jaune"
  8. src="/images/OpenTalent_LogoNoir_Jaune_white.png"
  9. ></v-img>
  10. <small class="text-logo-jaune">
  11. Orchestres, chorales, danse, théatre, cirque</small
  12. >
  13. </v-col>
  14. <v-col cols="3">
  15. <v-img
  16. class="logo logo-rouge"
  17. src="/images/OpenTalent_LogoNoir_rouge_manager_white.png"
  18. ></v-img>
  19. <small class="text-logo-rouge"
  20. >Fédérations, confédérations, collectivités</small
  21. >
  22. </v-col>
  23. <v-col cols="4">
  24. <v-img
  25. class="logo logo-bleu"
  26. src="/images/logo_school_white.png"
  27. ></v-img>
  28. <small class="text-logo-bleu"
  29. >Tous les établissements d'enseignement artistique</small
  30. >
  31. </v-col>
  32. </v-row>
  33. </div>
  34. <div class="footer">
  35. <div class="content-footer">
  36. <v-row>
  37. <v-col
  38. :cols="smAndDown ? 12 : 3"
  39. :class="smAndDown ? 'logo-opentalent-sm' : ''"
  40. >
  41. <v-img
  42. class="logo"
  43. src="/images/Logo-blanc.png"
  44. width="294px"
  45. height="49px"
  46. ></v-img>
  47. </v-col>
  48. <v-col :cols="smAndDown ? 6 : 2" :class="smAndDown ? 'link-sm' : ''">
  49. <v-row :class="smAndDown ? 'title-link-sm' : 'title-link'"
  50. >Liens Rapides</v-row
  51. >
  52. <v-row>
  53. <small class="small-link">A propos</small>
  54. </v-row>
  55. <v-row>
  56. <small class="small-link">Nos logiciels</small>
  57. </v-row>
  58. <v-row>
  59. <small class="small-link">Nos actus</small>
  60. </v-row>
  61. </v-col>
  62. <v-col :cols="smAndDown ? 6 : 2" :class="smAndDown ? 'link-sm' : ''">
  63. <v-row :class="smAndDown ? 'title-link-sm' : 'title-link'"
  64. >Informations</v-row
  65. >
  66. <v-row>
  67. <small class="small-link">FAQ</small>
  68. </v-row>
  69. <v-row>
  70. <small class="small-link">Nous rejoindre</small>
  71. </v-row>
  72. <v-row>
  73. <small class="small-link">Presse</small>
  74. </v-row>
  75. <v-row>
  76. <small class="small-link">CGV</small>
  77. </v-row>
  78. </v-col>
  79. <v-col :cols="smAndDown ? 6 : 2" :class="smAndDown ? 'link-sm' : ''">
  80. <v-row :class="smAndDown ? 'title-link-sm' : 'title-link'"
  81. >Espace client</v-row
  82. >
  83. <v-row>
  84. <small class="small-link">Mon compte</small>
  85. </v-row>
  86. <v-row>
  87. <small class="small-link">Nous contacter</small>
  88. </v-row>
  89. </v-col>
  90. <v-col :cols="smAndDown ? 6 : 2" :class="smAndDown ? 'link-sm' : ''">
  91. <v-row :class="smAndDown ? 'title-link-sm' : 'title-link'"
  92. >Liens Rapides</v-row
  93. >
  94. <v-row>
  95. <v-col :cols="smAndDown ? 4 : 2">
  96. <v-icon class="fab fa-facebook"></v-icon>
  97. </v-col>
  98. <v-col :cols="smAndDown ? 4 : 2">
  99. <v-icon class="fab fa-linkedin"></v-icon>
  100. </v-col>
  101. <v-col :cols="smAndDown ? 4 : 2">
  102. <v-icon class="fab fa-youtube"></v-icon>
  103. </v-col>
  104. </v-row>
  105. </v-col>
  106. </v-row>
  107. </div>
  108. </div>
  109. </LayoutContainer>
  110. </template>
  111. <script setup>
  112. import { useDisplay } from "vuetify";
  113. const { mdAndDown, smAndDown, lgAndUp } = useDisplay();
  114. </script>
  115. <style scoped>
  116. .link-sm {
  117. display: flex;
  118. flex-direction: column;
  119. justify-content: center;
  120. align-items: center;
  121. text-align: center;
  122. }
  123. .logo-opentalent-sm {
  124. display: flex;
  125. justify-content: center;
  126. align-items: center;
  127. }
  128. .icon:nth-child(2) {
  129. margin-left: 10px;
  130. }
  131. .title-link,
  132. .title-link-sm {
  133. font-family: "Barlow";
  134. font-style: normal;
  135. font-weight: 500;
  136. font-size: 1rem;
  137. line-height: 20px;
  138. margin-bottom: 1rem;
  139. }
  140. .title-link-sm {
  141. margin-bottom: 0.1rem;
  142. }
  143. .small-link {
  144. margin-bottom: 0.5rem;
  145. font-family: "Barlow";
  146. font-style: normal;
  147. font-weight: 300;
  148. font-size: 0.7rem;
  149. line-height: 20px;
  150. /* identical to box height, or 143% */
  151. color: #ffffff;
  152. }
  153. .container {
  154. background: #091d20;
  155. color: aliceblue;
  156. }
  157. .activities {
  158. height: 12rem;
  159. background: #091d20;
  160. border-bottom: 0.4px solid rgba(255, 255, 255, 0.3);
  161. box-shadow: 0px 3px 24px rgba(0, 0, 0, 0.07);
  162. }
  163. .footer {
  164. margin-top: 2rem;
  165. margin-bottom: 6rem;
  166. }
  167. .logo {
  168. margin-top: 25px;
  169. margin-bottom: 21px;
  170. width: 141px;
  171. height: 77px;
  172. }
  173. .logo-jaune {
  174. margin-left: 307.74px;
  175. }
  176. .logo-rouge {
  177. margin-left: 117px;
  178. }
  179. .logo-bleu {
  180. margin-left: 91.74px;
  181. }
  182. .text-logo-jaune {
  183. margin-left: 10rem;
  184. font-family: "Barlow";
  185. font-style: normal;
  186. font-weight: 500;
  187. font-size: 14px;
  188. line-height: 18px;
  189. display: flex;
  190. align-items: center;
  191. color: #ecfbfc;
  192. text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25),
  193. 0px 4px 4px rgba(0, 0, 0, 0.25);
  194. }
  195. .text-logo-rouge {
  196. margin-left: 37.74px;
  197. font-family: "Barlow";
  198. font-style: normal;
  199. font-weight: 500;
  200. font-size: 14px;
  201. line-height: 18px;
  202. display: flex;
  203. align-items: center;
  204. color: #ecfbfc;
  205. text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25),
  206. 0px 4px 4px rgba(0, 0, 0, 0.25);
  207. }
  208. .text-logo-bleu {
  209. height: 24px;
  210. left: 897px;
  211. top: 7858px;
  212. margin-left: 25.74px;
  213. font-family: "Barlow";
  214. font-style: normal;
  215. font-weight: 500;
  216. font-size: 14px;
  217. line-height: 18px;
  218. display: flex;
  219. align-items: center;
  220. color: #ecfbfc;
  221. text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25),
  222. 0px 4px 4px rgba(0, 0, 0, 0.25);
  223. }
  224. </style>