| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203 |
- <template>
- <v-container class="container">
- <div class="activities">
- <v-row>
- <v-col cols="4">
- <v-img
- class="logo logo-jaune"
- src="/images/OpenTalent_LogoNoir_Jaune_white.png"
- ></v-img>
- <small class="text-logo-jaune">
- Orchestres, chorales, danse, théatre, cirque</small
- >
- </v-col>
- <v-col cols="3">
- <v-img
- class="logo logo-rouge"
- src="/images/OpenTalent_LogoNoir_rouge_manager_white.png"
- ></v-img>
- <small class="text-logo-rouge"
- >Fédérations, confédérations, collectivités</small
- >
- </v-col>
- <v-col cols="4">
- <v-img
- class="logo logo-bleu"
- src="/images/logo_school_white.png"
- ></v-img>
- <small class="text-logo-bleu"
- >Tous les établissements d'enseignement artistique</small
- >
- </v-col>
- </v-row>
- </div>
- <div class="footer">
- <div class="content-footer">
- <v-row>
- <v-col cols="3">
- <v-img
- class="logo"
- src="/images/Logo-blanc.png"
- width="294px"
- height="49px"
- ></v-img>
- </v-col>
- <v-col cols="2">
- <v-row>Liens Rapides</v-row>
- <v-row>
- <p>A propos</p>
- </v-row>
- <v-row>
- <p>Nos logiciels</p>
- </v-row>
- <v-row>
- <p>Nos actus</p>
- </v-row>
- </v-col>
- <v-col cols="2">
- <v-row>Informations</v-row>
- <v-row>
- <p>FAQ</p>
- </v-row>
- <v-row>
- <p>Nous rejoindre</p>
- </v-row>
- <v-row>
- <p>Press</p>
- </v-row>
- <v-row>
- <p>CGV</p>
- </v-row>
- </v-col>
- <v-col cols="2">
- <v-row> Espace client </v-row>
- <v-row>
- <p>Mon compte</p>
- </v-row>
- <v-row>
- <p>Nous contacter</p>
- </v-row>
- </v-col>
- <v-col cols="3">
- <v-row> Suivez nous </v-row>
- <v-row>
- <v-col cols="2">
- <v-icon left class="fab fa-facebook"></v-icon>
- </v-col>
- <v-col cols="2">
- <v-icon left class="fab fa-linkedin"></v-icon>
- </v-col>
- <v-col cols="2">
- <v-icon left class="fab fa-youtube"></v-icon>
- </v-col>
- </v-row>
- </v-col>
- </v-row>
- </div>
- </div>
- </v-container>
- </template>
- <script>
- import "@fortawesome/fontawesome-free/css/all.css";
- </script>
- <style scoped>
- .container {
- width: 1600px;
- background: #091d20;
- height: 600px;
- color: aliceblue;
- }
- .activities {
- height: 186px;
- /**passer à 116 après */
- background: #091d20;
- border-bottom: 0.4px solid rgba(255, 255, 255, 0.3);
- box-shadow: 0px 3px 24px rgba(0, 0, 0, 0.07);
- }
- .footer {
- height: 604px;
- margin-top: 90px;
- }
- .logo {
- margin-top: 25px;
- margin-bottom: 21px;
- width: 141px;
- height: 77px;
- }
- .logo-jaune {
- margin-left: 307.74px;
- }
- .logo-rouge {
- margin-left: 117px;
- }
- .logo-bleu {
- margin-left: 91.74px;
- }
- .text-logo-jaune {
- margin-left: 187.74px;
- font-family: "Barlow";
- font-style: normal;
- font-weight: 500;
- font-size: 14px;
- line-height: 18px;
- display: flex;
- align-items: center;
- color: #ecfbfc;
- text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25),
- 0px 4px 4px rgba(0, 0, 0, 0.25);
- }
- .text-logo-rouge {
- margin-left: 37.74px;
- font-family: "Barlow";
- font-style: normal;
- font-weight: 500;
- font-size: 14px;
- line-height: 18px;
- display: flex;
- align-items: center;
- color: #ecfbfc;
- text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25),
- 0px 4px 4px rgba(0, 0, 0, 0.25);
- }
- .text-logo-bleu {
- height: 24px;
- left: 897px;
- top: 7858px;
- margin-left: 25.74px;
- font-family: "Barlow";
- font-style: normal;
- font-weight: 500;
- font-size: 14px;
- line-height: 18px;
- display: flex;
- align-items: center;
- color: #ecfbfc;
- text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25),
- 0px 4px 4px rgba(0, 0, 0, 0.25);
- }
- </style>
|