manifest/nuxt/components/Glava.vue

51 lines
884 B
Vue

<template>
<section class="glava">
<ul class="meni">
<li><NuxtLink to="/">Domov</NuxtLink></li>
<li><NuxtLink to="/pojmi">Manifest</NuxtLink></li>
<li><NuxtLink to="https://yugofuturism.kompot.si/user" target="_blank">admin</NuxtLink></li>
</ul>
<img src="/images/zvezda.png">
<h1> {{ head }} </h1>
</section>
</template>
<style scoped>
.glava {
height: 100vh;
width: 100%;
}
img {
width: 100%;
}
.meni {
display: flex;
margin: 0;
width: 100%;
justify-content: space-between;
}
.meni a {
text-decoration: none;
text-transform: uppercase;
font-weight: bold;
color: black;
padding: 40px 80px;
}
ul {
list-style: none;
padding: 0%;
width: 100%;
}
@media screen and (max-width: 768px) {
.meni {
display: flex;
flex-direction: column;
align-items: center;
}
}
</style>