52 lines
902 B
Vue
52 lines
902 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 {
|
|
display: block;
|
|
text-decoration: none;
|
|
text-transform: uppercase;
|
|
font-weight: bold;
|
|
color: black;
|
|
padding: 10px 30px;
|
|
}
|
|
|
|
ul {
|
|
list-style: none;
|
|
padding: 0%;
|
|
width: 100%;
|
|
}
|
|
|
|
@media screen and (max-width: 768px) {
|
|
.meni {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
}
|
|
|
|
</style> |