You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
928 B
Vue

<template>
<b-row>
<b-navbar fixed=top toggleable="md">
<b-navbar-toggle target="nav-collapse"></b-navbar-toggle>
<b-collapse id="nav-collapse" is-nav>
<b-nav align="left">
<b-nav-item to='/'>Home</b-nav-item>
<b-nav-item to='/about'>About</b-nav-item>
<b-nav-item to='/editornote'>Editor's note</b-nav-item>
<b-nav-item to='/firstissue'>#1</b-nav-item>
<b-nav-item to='/opencall'>Open call</b-nav-item>
</b-nav>
</b-collapse>
</b-navbar>
</b-row>
</template>
<script>
export default {
name: 'MenuBar',
}
</script>
<style scoped>
a {
color: #333042;
font-family: 'Poppins', sans-serif;;
font-size: 16px;
}
a:hover {
color: #ff4c2b;
}
.navbar {
background-color: #ffe6e6;
border-bottom: 2px #ffcccc solid;
}
@media (max-width: 575px) {
a {
font-size: 12px;
}
.navbar {
border-bottom: 0px;
}
}
</style>