|
|
@@ -1,23 +1,32 @@
|
|
|
<template>
|
|
|
<LayoutContainer>
|
|
|
- <v-row
|
|
|
- class="menu"
|
|
|
- v-if="!mdAndDown"
|
|
|
- >
|
|
|
- <!-- Logo Column -->
|
|
|
- <v-col cols="2">
|
|
|
+ <div class="container-grey ">
|
|
|
+ <v-row>
|
|
|
+ <v-col cols="12" class="buttons-col mb-2 ">
|
|
|
+
|
|
|
+ <nuxt-link to="https://admin.opentalent.fr/#/login/">
|
|
|
+ <v-btn class="btn btn-common btn-login" text>
|
|
|
+ <v-icon left class="fas fa-user mr-4"></v-icon> Se connecter<br />aux
|
|
|
+ logiciels
|
|
|
+ </v-btn>
|
|
|
+ </nuxt-link>
|
|
|
+
|
|
|
+ <div class="vertical-bar" />
|
|
|
+ <v-btn class="btn btn-common btn-subscribe ml-4" text>
|
|
|
+ <v-icon left class="fas fa-calendar mr-4"></v-icon> Agenda Culturel
|
|
|
+ </v-btn>
|
|
|
+ </v-col>
|
|
|
+ </v-row>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <v-row class="menu" v-if="!mdAndDown">
|
|
|
+ <v-col cols="3">
|
|
|
<nuxt-link to="/">
|
|
|
<v-img class="logo" src="/images/logo/navigation-logo.png" />
|
|
|
</nuxt-link>
|
|
|
</v-col>
|
|
|
|
|
|
- <!-- Colored Square for Mobile -->
|
|
|
- <v-col v-if="mdAndDown" cols="3">
|
|
|
- <div class="colored-square"></div>
|
|
|
- </v-col>
|
|
|
- <!-- Menu Links -->
|
|
|
- <v-col cols="6">
|
|
|
- <!-- Menu déroulant logiciels -->
|
|
|
+ <v-col cols="9">
|
|
|
<v-menu open-on-hover>
|
|
|
<template v-slot:activator="{ props }">
|
|
|
<nuxt-link v-bind="props" class="link-style"
|
|
|
@@ -39,10 +48,9 @@
|
|
|
</v-list>
|
|
|
</v-menu>
|
|
|
|
|
|
- <!-- Menu déroulant services -->
|
|
|
<v-menu open-on-hover>
|
|
|
<template v-slot:activator="{ props }">
|
|
|
- <nuxt-link v-bind="props" class="link-style"
|
|
|
+ <nuxt-link v-bind="props" class="link-style"
|
|
|
>Nos services
|
|
|
</nuxt-link>
|
|
|
</template>
|
|
|
@@ -61,12 +69,9 @@
|
|
|
</v-list>
|
|
|
</v-menu>
|
|
|
|
|
|
- <!-- Menu déroulant à propos -->
|
|
|
<v-menu open-on-hover>
|
|
|
<template v-slot:activator="{ props }">
|
|
|
- <nuxt-link v-bind="props" class="link-style"
|
|
|
- >A propos</nuxt-link
|
|
|
- >
|
|
|
+ <nuxt-link v-bind="props" class="link-style">A propos</nuxt-link>
|
|
|
</template>
|
|
|
|
|
|
<v-list>
|
|
|
@@ -85,31 +90,6 @@
|
|
|
|
|
|
<nuxt-link class="link-style" to="/actualites">Actualités</nuxt-link>
|
|
|
</v-col>
|
|
|
-
|
|
|
- <!-- Buttons Column -->
|
|
|
- <!-- <v-col v-if="!mdAndDown" cols="3" class="buttons-col" >
|
|
|
- <v-btn class="btn btn-common btn-login" text>
|
|
|
- <v-icon left class="fas fa-user mr-4"></v-icon> Se connecter
|
|
|
- </v-btn>
|
|
|
- <div class="vertical-bar" />
|
|
|
- <v-btn class="btn btn-common btn-subscribe ml-4" text>
|
|
|
- <v-icon left class="fas fa-calendar mr-4"></v-icon>Agenda Culturel
|
|
|
- </v-btn>
|
|
|
- </v-col> -->
|
|
|
-
|
|
|
- <v-col cols="2" class="buttons-col">
|
|
|
- <nuxt-link to="https://admin.opentalent.fr/#/login/">
|
|
|
- <v-btn class="btn btn-common btn-login" text>
|
|
|
- <v-icon left class="fas fa-user mr-4"></v-icon> Se connecter<br />aux
|
|
|
- logiciels
|
|
|
- </v-btn>
|
|
|
- </nuxt-link>
|
|
|
-
|
|
|
- <div class="vertical-bar" />
|
|
|
- <v-btn class="btn btn-common btn-subscribe ml-4" text>
|
|
|
- <v-icon left class="fas fa-calendar mr-4"></v-icon> Agenda Culturel
|
|
|
- </v-btn>
|
|
|
- </v-col>
|
|
|
</v-row>
|
|
|
</LayoutContainer>
|
|
|
</template>
|
|
|
@@ -137,14 +117,53 @@ const aboutLinks = ref([
|
|
|
</script>
|
|
|
|
|
|
<style scoped>
|
|
|
-/* =============== Base Styles =============== */
|
|
|
+/* =============== CONTAINER BUTTON =============== */
|
|
|
+.container-grey {
|
|
|
+ background-color: #dbdbdb;
|
|
|
+ height: 100%;
|
|
|
+}
|
|
|
+/* =============== Button Styles =============== */
|
|
|
+
|
|
|
+.buttons-col {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: flex-end;
|
|
|
+}
|
|
|
+
|
|
|
+.btn-common {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: row;
|
|
|
+ align-items: center;
|
|
|
+ padding: 1.3rem;
|
|
|
+ border-radius: 6px;
|
|
|
+ font-family: "Barlow";
|
|
|
+ font-style: normal;
|
|
|
+ font-weight: 700;
|
|
|
+ font-size: 0.9rem;
|
|
|
+}
|
|
|
+
|
|
|
+.btn-login {
|
|
|
+ background: #091d20;
|
|
|
+ color: white;
|
|
|
+}
|
|
|
+.vertical-bar {
|
|
|
+ width: 0px;
|
|
|
+ height: 3rem;
|
|
|
+ border: 0.5px solid rgba(14, 45, 50, 0.4);
|
|
|
+ margin-left: 10px;
|
|
|
+ margin-top: 0.2rem;
|
|
|
+}
|
|
|
+
|
|
|
+.btn-subscribe {
|
|
|
+ background: #9edbdd;
|
|
|
+}
|
|
|
+/* =============== menu Styles =============== */
|
|
|
|
|
|
.menu {
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
background-color: #ffffff;
|
|
|
}
|
|
|
-
|
|
|
.v-list-item-title {
|
|
|
font-family: "Barlow";
|
|
|
font-style: normal;
|
|
|
@@ -165,22 +184,17 @@ const aboutLinks = ref([
|
|
|
color: #0e2d32;
|
|
|
text-decoration: none !important;
|
|
|
}
|
|
|
-
|
|
|
-.menu-list{
|
|
|
- padding: 0 2rem;
|
|
|
-}
|
|
|
.link-style {
|
|
|
font-family: "Barlow";
|
|
|
font-style: normal;
|
|
|
- font-size: 1.1rem;
|
|
|
- margin-right: 20px;
|
|
|
+ font-size: 1rem;
|
|
|
+ margin-right: 3rem;
|
|
|
font-weight: 700;
|
|
|
letter-spacing: 0.05em;
|
|
|
text-transform: uppercase;
|
|
|
color: #0e2d32;
|
|
|
text-decoration: none !important;
|
|
|
cursor: pointer;
|
|
|
-
|
|
|
}
|
|
|
.link-styles {
|
|
|
font-family: "Barlow";
|
|
|
@@ -188,81 +202,9 @@ const aboutLinks = ref([
|
|
|
text-decoration: none !important;
|
|
|
color: #0e2d32;
|
|
|
}
|
|
|
-
|
|
|
-.menu-bar {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- background-color: #ffffff;
|
|
|
- height: 100%;
|
|
|
- margin-top: 10px;
|
|
|
-}
|
|
|
-
|
|
|
-.custom-row {
|
|
|
- padding: 0 2rem;
|
|
|
-}
|
|
|
-
|
|
|
-/* =============== Colored Square =============== */
|
|
|
-
|
|
|
-.colored-square {
|
|
|
- width: 3.5rem;
|
|
|
- height: 3.5rem;
|
|
|
- background-color: #091d20;
|
|
|
-}
|
|
|
-
|
|
|
-/* =============== Logo Styles =============== */
|
|
|
-
|
|
|
.logo {
|
|
|
- height: 5.5rem;
|
|
|
+ height: 8rem;
|
|
|
}
|
|
|
|
|
|
-/* =============== Menu Link Styles =============== */
|
|
|
-
|
|
|
-.menu-link {
|
|
|
- text-decoration: none;
|
|
|
- padding: 1.1rem;
|
|
|
- font-weight: 500;
|
|
|
- font-size: 1rem;
|
|
|
- letter-spacing: 0.1em;
|
|
|
- text-transform: uppercase;
|
|
|
- color: #0e2d32;
|
|
|
- margin-right: 0.2rem;
|
|
|
-}
|
|
|
-
|
|
|
-.menu-link:hover {
|
|
|
- text-decoration: underline;
|
|
|
-}
|
|
|
-
|
|
|
-/* =============== Button Styles =============== */
|
|
|
-
|
|
|
-.buttons-col {
|
|
|
- display: flex;
|
|
|
-}
|
|
|
|
|
|
-.btn-common {
|
|
|
- display: flex;
|
|
|
- flex-direction: row;
|
|
|
- align-items: center;
|
|
|
- padding: 25px;
|
|
|
- border-radius: 6px;
|
|
|
- font-family: "Barlow";
|
|
|
- font-style: normal;
|
|
|
- font-weight: 700;
|
|
|
- font-size: 0.9rem;
|
|
|
-}
|
|
|
-
|
|
|
-.btn-login {
|
|
|
- background: #091d20;
|
|
|
- color: white;
|
|
|
-}
|
|
|
-.vertical-bar {
|
|
|
- width: 0px;
|
|
|
- height: 3rem;
|
|
|
- border: 0.5px solid rgba(14, 45, 50, 0.4);
|
|
|
- margin-left: 10px;
|
|
|
- margin-top: 0.2rem;
|
|
|
-}
|
|
|
-
|
|
|
-.btn-subscribe {
|
|
|
- background: #9edbdd;
|
|
|
-}
|
|
|
</style>
|