Sharkey/src/client/app/desktop/views/pages/welcome.vue

191 lines
3.3 KiB
Vue
Raw Normal View History

2018-02-10 07:56:33 +02:00
<template>
2018-02-10 12:57:37 +02:00
<div class="mk-welcome">
2018-02-10 07:56:33 +02:00
<main>
2018-05-21 15:39:46 +03: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-10 07:56:33 +02:00
</div>
</main>
<mk-forkit/>
<footer>
<div>
2018-02-11 05:42:02 +02:00
<mk-nav :class="$style.nav"/>
<p class="c">{{ copyright }}</p>
2018-02-10 07:56:33 +02:00
</div>
</footer>
2018-02-10 12:57:37 +02:00
<modal name="signup" width="500px" height="auto" scrollable>
2018-05-21 15:39:46 +03:00
<header :class="$style.signupFormHeader">%i18n:@signup%</header>
2018-02-11 05:08:43 +02:00
<mk-signup :class="$style.signupForm"/>
</modal>
<modal name="signin" width="500px" height="auto" scrollable>
2018-05-21 15:39:46 +03:00
<header :class="$style.signinFormHeader">%i18n:@signin%</header>
2018-02-11 05:08:43 +02:00
<mk-signin :class="$style.signinForm"/>
2018-02-10 09:22:14 +02:00
</modal>
2018-02-10 07:56:33 +02:00
</div>
</template>
2018-02-10 09:22:14 +02:00
<script lang="ts">
import Vue from 'vue';
2018-03-17 16:01:17 +02:00
import { docsUrl, copyright, lang } from '../../../config';
2018-02-10 09:22:14 +02:00
export default Vue.extend({
2018-02-11 05:42:02 +02:00
data() {
return {
2018-03-17 16:01:17 +02:00
aboutUrl: `${docsUrl}/${lang}/about`,
2018-05-21 15:39:46 +03:00
copyright
2018-02-11 05:42:02 +02:00
};
},
2018-02-10 09:22:14 +02:00
methods: {
signup() {
this.$modal.show('signup');
2018-02-11 05:08:43 +02:00
},
signin() {
this.$modal.show('signin');
2018-02-10 09:22:14 +02:00
}
2018-02-10 07:56:33 +02:00
}
2018-02-10 09:22:14 +02:00
});
</script>
<style>
#wait {
right: auto;
left: 15px;
}
2018-02-10 07:56:33 +02:00
</style>
<style lang="stylus" scoped>
2018-03-03 06:47:55 +02:00
@import '~const.styl'
2018-03-19 16:27:34 +02:00
@import url('https://fonts.googleapis.com/css?family=Sarpanch:700')
2018-02-10 12:57:37 +02:00
.mk-welcome
2018-02-10 09:22:14 +02:00
display flex
flex-direction column
flex 1
2018-03-17 10:47:46 +02:00
2018-02-10 09:22:14 +02:00
> main
2018-02-10 07:56:33 +02:00
flex 1
2018-05-21 15:39:46 +03: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-10 07:56:33 +02:00
2018-02-10 09:22:14 +02:00
> footer
2018-03-17 10:47:46 +02:00
font-size 12px
2018-03-16 20:33:36 +02:00
color #949ea5
2018-02-10 07:56:33 +02:00
2018-02-10 09:22:14 +02:00
> div
margin 0 auto
2018-05-21 15:39:46 +03:00
padding 64px
2018-02-10 09:22:14 +02:00
text-align center
2018-02-10 07:56:33 +02:00
2018-02-10 09:22:14 +02:00
> .c
2018-02-11 05:42:02 +02:00
margin 16px 0 0 0
2018-02-10 09:22:14 +02:00
font-size 10px
2018-03-17 10:47:46 +02:00
opacity 0.7
2018-02-10 07:56:33 +02:00
</style>
2018-02-10 12:57:37 +02: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-11 05:08:43 +02: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-11 05:42:02 +02:00
.nav
a
color #666
2018-02-10 12:57:37 +02:00
</style>