2016-10-03 13:31:29 +01:00
|
|
|
<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>
|
2017-10-23 17:58:23 +01:00
|
|
|
<img src="/assets/images/logo-128.png"> <b>combine</b><span class="lighter">.fm</span>
|
2016-10-24 00:18:36 +01:00
|
|
|
</router-link>
|
|
|
|
</h1>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-10-23 17:58:23 +01:00
|
|
|
<div class="content">
|
2016-10-03 13:31:29 +01:00
|
|
|
<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>.
|
2016-10-03 13:31:29 +01:00
|
|
|
</div>
|
|
|
|
</footer>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<style>
|
2017-10-23 17:58:23 +01:00
|
|
|
@import url('https://fonts.googleapis.com/css?family=Comfortaa');
|
|
|
|
html {
|
|
|
|
position: relative;
|
|
|
|
min-height: 100%;
|
|
|
|
}
|
2016-10-03 13:31:29 +01:00
|
|
|
body {
|
|
|
|
color: #445470;
|
|
|
|
background: #fff;
|
2017-10-23 17:58:23 +01:00
|
|
|
margin: 0 0 140px;
|
2016-10-03 13:31:29 +01:00
|
|
|
}
|
2016-10-24 00:18:36 +01:00
|
|
|
.header {
|
2017-10-23 17:58:23 +01:00
|
|
|
font-family: 'Comfortaa', cursive;
|
2016-10-03 13:31:29 +01:00
|
|
|
background: #FE4365;
|
2016-10-24 00:18:36 +01:00
|
|
|
}
|
2017-10-23 17:58:23 +01:00
|
|
|
.header img {
|
|
|
|
height: 64px;
|
|
|
|
}
|
2016-10-24 00:18:36 +01:00
|
|
|
h1 {
|
2017-10-23 17:58:23 +01:00
|
|
|
padding: 10px 0;
|
2016-10-03 13:31:29 +01:00
|
|
|
}
|
|
|
|
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;
|
|
|
|
}
|
2016-10-03 13:31:29 +01:00
|
|
|
.title a:hover {
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
h1 .lighter {
|
|
|
|
color: #ffacc5;
|
|
|
|
}
|
|
|
|
.footer {
|
2017-10-23 17:58:23 +01:00
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
width: 100%;
|
|
|
|
padding: 40px 24px 40px 24px;
|
2016-10-03 13:31:29 +01:00
|
|
|
}
|
|
|
|
</style>
|