combine.fm/public/src/app.vue

60 lines
1.1 KiB
Vue
Raw Normal View History

<template>
<div id="app">
2016-10-24 00:18:36 +01:00
<div class="header" v-bind:class="{ 'share': $store.state.share }">
<div class="container">
<h1 class="title has-text-centered">
<router-link to="/" exact>
match<span class="lighter">.audio</span>
</router-link>
</h1>
</div>
</div>
<div>
<router-view></router-view>
</div>
<footer class="footer">
<div class="container has-text-right">
2016-10-23 23:36:47 +01:00
<a href='https://twitter.com/MatchAudio'>Tweet</a> or <a href='https://gitlab.com/kudos/match.audio'>Fork</a>. A work in progress by <a href='http://crem.in'>this guy</a>.
</div>
</footer>
</div>
</template>
<style>
body {
color: #445470;
background: #fff;
}
2016-10-24 00:18:36 +01:00
.header {
background: #FE4365;
2016-10-24 00:18:36 +01:00
}
h1 {
padding: 25px 0;
}
h1 a {
color: #fff;
}
h1 a:hover {
color: #ffacc5;
}
2016-10-24 00:18:36 +01:00
.share {
margin-bottom: 40px;
}
.share h1 {
text-align: left;
font-size: 1.5em;
line-height: 36px;
padding: 5px 0;
}
.title a:hover {
border-bottom: none;
}
h1 .lighter {
color: #ffacc5;
}
.footer {
margin-top: 50px;
padding-bottom: 40px;
}
</style>