rudeshark.net/src/client/app/common/views/widgets/donation.vue

65 lines
1.1 KiB
Vue
Raw Normal View History

2018-02-15 04:36:42 +01:00
<template>
2018-02-23 18:46:09 +01:00
<div class="mkw-donation" :data-mobile="isMobile">
2018-02-15 04:36:42 +01:00
<article>
2018-04-14 18:04:40 +02:00
<h1>%fa:heart%%i18n:@title%</h1>
2018-02-15 04:36:42 +01:00
<p>
2018-04-16 00:07:32 +02:00
{{ '%i18n:!@text%'.substr(0, '%i18n:!@text%'.indexOf('{')) }}
2018-02-19 08:08:41 +01:00
<a href="https://syuilo.com">@syuilo</a>
2018-04-16 00:07:32 +02:00
{{ '%i18n:!@text%'.substr('%i18n:!@text%'.indexOf('}') + 1) }}
2018-02-15 04:36:42 +01:00
</p>
</article>
</div>
</template>
<script lang="ts">
2018-02-24 16:18:09 +01:00
import define from '../../../common/define-widget';
2018-02-15 04:36:42 +01:00
export default define({
name: 'donation'
});
</script>
<style lang="stylus" scoped>
2018-04-20 00:45:37 +02:00
root(isDark)
background isDark ? #282c37 : #fff
border solid 1px isDark ? #c3831c : #ead8bb
2018-02-15 04:36:42 +01:00
border-radius 6px
> article
padding 20px
> h1
margin 0 0 5px 0
font-size 1em
2018-04-20 00:45:37 +02:00
color isDark ? #b2bac1 : #888
2018-02-15 04:36:42 +01:00
> [data-fa]
margin-right 0.25em
> p
display block
z-index 1
margin 0
font-size 0.8em
2018-04-20 00:45:37 +02:00
color isDark ? #a1a6ab : #999
2018-02-15 04:36:42 +01:00
2018-02-23 18:46:09 +01:00
&[data-mobile]
border none
background #ead8bb
border-radius 8px
box-shadow 0 0 0 1px rgba(0, 0, 0, 0.2)
> article
> h1
color #7b8871
> p
color #777d71
2018-04-20 00:45:37 +02:00
.mkw-donation[data-darkmode]
root(true)
.mkw-donation:not([data-darkmode])
root(false)
2018-02-15 04:36:42 +01:00
</style>