manifest/nuxt/components/Glava.vue

47 lines
722 B
Vue
Raw Normal View History

2023-02-22 21:19:55 +01:00
<template>
<section class="glava">
2024-01-06 17:53:50 +01:00
<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>
2024-01-06 18:05:53 +01:00
<img src="/images/zvezda.png">
2024-01-06 17:53:50 +01:00
<h1> {{ head }} </h1>
2023-02-22 21:19:55 +01:00
</section>
</template>
2024-01-06 17:53:50 +01:00
<style scoped>
.glava {
height: 100vh;
width: 100%;
}
img {
width: 100%;
}
.meni {
margin: 0;
width: 100%;
}
.meni a {
text-decoration: none;
text-transform: uppercase;
font-weight: bold;
}
ul {
list-style: none;
padding: 0%;
width: 100%;
}
@media screen (min-width: 480px) {
.meni{
2024-01-06 17:54:42 +01:00
}
2024-01-06 17:53:50 +01:00
}
2024-01-06 17:54:42 +01:00
</style>