2018-02-09 23:56:33 -06:00
|
|
|
<template>
|
2018-02-10 04:57:37 -06:00
|
|
|
<div class="mk-welcome">
|
2018-02-09 23:56:33 -06:00
|
|
|
<main>
|
2018-05-21 07:39:46 -05:00
|
|
|
<img src="assets/title.svg" alt="Misskey">
|
|
|
|
<p><button class="signup" @click="signup">%i18n:@signup-button%</button><button class="signin" @click="signin">%i18n:@signin-button%</button></p>
|
|
|
|
|
|
|
|
<div class="tl">
|
|
|
|
<header>%fa:comments R% %i18n:@timeline%<div><span></span><span></span><span></span></div></header>
|
|
|
|
<mk-welcome-timeline/>
|
2018-02-09 23:56:33 -06:00
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
<mk-forkit/>
|
|
|
|
<footer>
|
|
|
|
<div>
|
2018-02-10 21:42:02 -06:00
|
|
|
<mk-nav :class="$style.nav"/>
|
|
|
|
<p class="c">{{ copyright }}</p>
|
2018-02-09 23:56:33 -06:00
|
|
|
</div>
|
|
|
|
</footer>
|
2018-02-10 04:57:37 -06:00
|
|
|
<modal name="signup" width="500px" height="auto" scrollable>
|
2018-05-21 07:39:46 -05:00
|
|
|
<header :class="$style.signupFormHeader">%i18n:@signup%</header>
|
2018-02-10 21:08:43 -06:00
|
|
|
<mk-signup :class="$style.signupForm"/>
|
|
|
|
</modal>
|
|
|
|
<modal name="signin" width="500px" height="auto" scrollable>
|
2018-05-21 07:39:46 -05:00
|
|
|
<header :class="$style.signinFormHeader">%i18n:@signin%</header>
|
2018-02-10 21:08:43 -06:00
|
|
|
<mk-signin :class="$style.signinForm"/>
|
2018-02-10 01:22:14 -06:00
|
|
|
</modal>
|
2018-02-09 23:56:33 -06:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2018-02-10 01:22:14 -06:00
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-03-17 09:01:17 -05:00
|
|
|
import { docsUrl, copyright, lang } from '../../../config';
|
2018-02-10 01:22:14 -06:00
|
|
|
|
|
|
|
export default Vue.extend({
|
2018-02-10 21:42:02 -06:00
|
|
|
data() {
|
|
|
|
return {
|
2018-03-17 09:01:17 -05:00
|
|
|
aboutUrl: `${docsUrl}/${lang}/about`,
|
2018-05-21 07:39:46 -05:00
|
|
|
copyright
|
2018-02-10 21:42:02 -06:00
|
|
|
};
|
|
|
|
},
|
2018-02-10 01:22:14 -06:00
|
|
|
methods: {
|
|
|
|
signup() {
|
|
|
|
this.$modal.show('signup');
|
2018-02-10 21:08:43 -06:00
|
|
|
},
|
|
|
|
signin() {
|
|
|
|
this.$modal.show('signin');
|
2018-02-10 01:22:14 -06:00
|
|
|
}
|
2018-02-09 23:56:33 -06:00
|
|
|
}
|
2018-02-10 01:22:14 -06:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
#wait {
|
|
|
|
right: auto;
|
|
|
|
left: 15px;
|
|
|
|
}
|
2018-02-09 23:56:33 -06:00
|
|
|
</style>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-03-02 22:47:55 -06:00
|
|
|
@import '~const.styl'
|
|
|
|
|
2018-03-19 09:27:34 -05:00
|
|
|
@import url('https://fonts.googleapis.com/css?family=Sarpanch:700')
|
|
|
|
|
2018-02-10 04:57:37 -06:00
|
|
|
.mk-welcome
|
2018-02-10 01:22:14 -06:00
|
|
|
display flex
|
|
|
|
flex-direction column
|
|
|
|
flex 1
|
2018-03-17 03:47:46 -05:00
|
|
|
|
2018-02-10 01:22:14 -06:00
|
|
|
> main
|
2018-02-09 23:56:33 -06:00
|
|
|
flex 1
|
2018-05-21 07:39:46 -05:00
|
|
|
padding 64px 0 0 0
|
|
|
|
text-align center
|
|
|
|
color #555
|
|
|
|
|
|
|
|
> img
|
|
|
|
width 350px
|
|
|
|
|
|
|
|
> p
|
|
|
|
margin 8px 0
|
|
|
|
line-height 2em
|
|
|
|
|
|
|
|
button
|
|
|
|
padding 8px 16px
|
|
|
|
font-size inherit
|
|
|
|
|
|
|
|
.signup
|
|
|
|
color $theme-color
|
|
|
|
border solid 2px $theme-color
|
|
|
|
border-radius 4px
|
|
|
|
|
|
|
|
&:focus
|
|
|
|
box-shadow 0 0 0 3px rgba($theme-color, 0.2)
|
|
|
|
|
|
|
|
&:hover
|
|
|
|
color $theme-color-foreground
|
|
|
|
background $theme-color
|
|
|
|
|
|
|
|
&:active
|
|
|
|
color $theme-color-foreground
|
|
|
|
background darken($theme-color, 10%)
|
|
|
|
border-color darken($theme-color, 10%)
|
|
|
|
|
|
|
|
.signin
|
|
|
|
&:hover
|
|
|
|
color #000
|
|
|
|
|
|
|
|
> .tl
|
|
|
|
margin 32px auto 0 auto
|
|
|
|
width 410px
|
|
|
|
text-align left
|
|
|
|
background #fff
|
|
|
|
border-radius 8px
|
|
|
|
box-shadow 0 8px 32px rgba(#000, 0.15)
|
|
|
|
overflow hidden
|
|
|
|
|
|
|
|
> header
|
|
|
|
z-index 1
|
|
|
|
padding 12px 16px
|
|
|
|
color #888d94
|
|
|
|
box-shadow 0 1px 0px rgba(#000, 0.1)
|
|
|
|
|
|
|
|
> div
|
|
|
|
position absolute
|
|
|
|
top 0
|
|
|
|
right 0
|
|
|
|
padding inherit
|
|
|
|
|
|
|
|
> span
|
|
|
|
display inline-block
|
|
|
|
height 11px
|
|
|
|
width 11px
|
|
|
|
margin-left 6px
|
|
|
|
background #ccc
|
|
|
|
border-radius 100%
|
|
|
|
vertical-align middle
|
|
|
|
|
|
|
|
&:nth-child(1)
|
|
|
|
background #5BCC8B
|
|
|
|
|
|
|
|
&:nth-child(2)
|
|
|
|
background #E6BB46
|
|
|
|
|
|
|
|
&:nth-child(3)
|
|
|
|
background #DF7065
|
|
|
|
|
|
|
|
> .mk-welcome-timeline
|
|
|
|
max-height 350px
|
|
|
|
overflow auto
|
2018-02-09 23:56:33 -06:00
|
|
|
|
2018-02-10 01:22:14 -06:00
|
|
|
> footer
|
2018-03-17 03:47:46 -05:00
|
|
|
font-size 12px
|
2018-03-16 13:33:36 -05:00
|
|
|
color #949ea5
|
2018-02-09 23:56:33 -06:00
|
|
|
|
2018-02-10 01:22:14 -06:00
|
|
|
> div
|
|
|
|
margin 0 auto
|
2018-05-21 07:39:46 -05:00
|
|
|
padding 64px
|
2018-02-10 01:22:14 -06:00
|
|
|
text-align center
|
2018-02-09 23:56:33 -06:00
|
|
|
|
2018-02-10 01:22:14 -06:00
|
|
|
> .c
|
2018-02-10 21:42:02 -06:00
|
|
|
margin 16px 0 0 0
|
2018-02-10 01:22:14 -06:00
|
|
|
font-size 10px
|
2018-03-17 03:47:46 -05:00
|
|
|
opacity 0.7
|
2018-02-09 23:56:33 -06:00
|
|
|
|
|
|
|
</style>
|
2018-02-10 04:57:37 -06:00
|
|
|
|
|
|
|
<style lang="stylus" module>
|
|
|
|
.signupForm
|
|
|
|
padding 24px 48px 48px 48px
|
|
|
|
|
|
|
|
.signupFormHeader
|
|
|
|
padding 48px 0 12px 0
|
|
|
|
margin: 0 48px
|
|
|
|
font-size 1.5em
|
|
|
|
color #777
|
|
|
|
border-bottom solid 1px #eee
|
2018-02-10 21:08:43 -06:00
|
|
|
|
|
|
|
.signinForm
|
|
|
|
padding 24px 48px 48px 48px
|
|
|
|
|
|
|
|
.signinFormHeader
|
|
|
|
padding 48px 0 12px 0
|
|
|
|
margin: 0 48px
|
|
|
|
font-size 1.5em
|
|
|
|
color #777
|
|
|
|
border-bottom solid 1px #eee
|
2018-02-10 21:42:02 -06:00
|
|
|
|
|
|
|
.nav
|
|
|
|
a
|
|
|
|
color #666
|
2018-02-10 04:57:37 -06:00
|
|
|
</style>
|