manifest/nuxt/components/Glava.vue

51 lines
884 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 {
2024-01-06 18:48:35 +01:00
display: flex;
2024-01-06 17:53:50 +01:00
margin: 0;
width: 100%;
2024-01-06 18:48:35 +01:00
justify-content: space-between;
2024-01-06 17:53:50 +01:00
}
.meni a {
text-decoration: none;
text-transform: uppercase;
font-weight: bold;
2024-01-06 18:48:35 +01:00
color: black;
padding: 40px 80px;
2024-01-06 17:53:50 +01:00
}
2024-01-06 18:48:35 +01:00
ul {
2024-01-06 17:53:50 +01:00
list-style: none;
padding: 0%;
width: 100%;
}
2024-01-06 18:48:35 +01:00
@media screen and (max-width: 768px) {
.meni {
display: flex;
flex-direction: column;
align-items: center;
2024-01-06 17:54:42 +01:00
}
2024-01-06 17:53:50 +01:00
}
2024-01-06 18:48:35 +01:00
</style>