84 lines
1.4 KiB
Vue
84 lines
1.4 KiB
Vue
<script setup="setup">
|
|
const route = useRoute()
|
|
|
|
const pot = computed(() => route.path)
|
|
const naManifestu = computed(() => route.path.indexOf('/pojmi') === 0)
|
|
</script>
|
|
|
|
<template>
|
|
<section class="glava" :class="{ manifest: naManifestu }">
|
|
<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 v-if="naManifestu">MANIFEST</h1>
|
|
<h1 v-else>JUGOFUTURIZEM</h1>
|
|
</section>
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
.glava {
|
|
height: 100vh;
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.glava.manifest {
|
|
background: var(--rdeca)
|
|
}
|
|
|
|
h1 {
|
|
font-family: Trailers;
|
|
font-size: 5rem;
|
|
z-index: 50;
|
|
}
|
|
|
|
img {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
z-index: 10;
|
|
}
|
|
|
|
.meni {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
display: flex;
|
|
margin: 0;
|
|
justify-content: space-between;
|
|
z-index: 100;
|
|
}
|
|
|
|
.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>
|