2017-08-24 10:16:12 +00:00
|
|
|
<template>
|
2020-04-13 18:41:34 +00:00
|
|
|
<div class="container">
|
2017-08-24 10:16:12 +00:00
|
|
|
<ul>
|
2018-11-24 18:49:19 +00:00
|
|
|
<li>
|
|
|
|
<NuxtLink to="/">
|
|
|
|
Activity
|
|
|
|
</NuxtLink>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<NuxtLink to="/contributors">
|
|
|
|
Contributors
|
|
|
|
</NuxtLink>
|
|
|
|
</li>
|
2017-08-24 10:16:12 +00:00
|
|
|
</ul>
|
2018-11-24 18:49:19 +00:00
|
|
|
<Nuxt />
|
2017-08-24 10:16:12 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
2020-04-13 18:41:34 +00:00
|
|
|
.container {
|
|
|
|
text-align: center;
|
|
|
|
padding-top: 20px;
|
|
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
|
|
|
}
|
2017-08-24 10:16:12 +00:00
|
|
|
ul {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
2020-04-13 18:41:34 +00:00
|
|
|
li {
|
2017-08-24 10:16:12 +00:00
|
|
|
display: inline-block;
|
|
|
|
}
|
2020-04-13 18:41:34 +00:00
|
|
|
a {
|
2017-08-24 10:16:12 +00:00
|
|
|
display: inline-block;
|
2020-04-13 18:41:34 +00:00
|
|
|
font-weight: 500;
|
|
|
|
padding-top: .75rem;
|
|
|
|
padding-bottom: .75rem;
|
|
|
|
padding-left: 1.5rem;
|
|
|
|
padding-right: 1.5rem;
|
|
|
|
text-transform: uppercase;
|
2017-08-24 10:16:12 +00:00
|
|
|
text-decoration: none;
|
2020-04-13 18:41:34 +00:00
|
|
|
box-shadow: 0 1px 3px 0 rgba(0,0,0,.1), 0 1px 2px 0 rgba(0,0,0,.06);
|
|
|
|
border-radius: .25rem;
|
|
|
|
border: none;
|
|
|
|
background-color: #edf2f7;
|
|
|
|
color: #2f495e;
|
|
|
|
margin-right: 1rem;
|
|
|
|
}
|
|
|
|
a:hover {
|
|
|
|
background-color: #e2e8f0;
|
|
|
|
}
|
|
|
|
.nuxt-link-exact-active {
|
|
|
|
background-color: #00c58e;
|
|
|
|
color: #fff;
|
2017-08-24 10:16:12 +00:00
|
|
|
}
|
2020-04-13 18:41:34 +00:00
|
|
|
.nuxt-link-exact-active:hover {
|
|
|
|
background-color: #00e0a1;
|
2017-08-24 10:16:12 +00:00
|
|
|
}
|
|
|
|
</style>
|