From 50d3278887f897cf39be2f41894ab3f437e3b2c9 Mon Sep 17 00:00:00 2001 From: zyronon Date: Thu, 18 Oct 2018 23:25:55 +0800 Subject: [PATCH] =?UTF-8?q?=E5=85=B3=E6=B3=A8=E9=A1=B5=E5=AE=8C=E6=88=9080?= =?UTF-8?q?%?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 11 ++ src/assets/img/location.svg | 1 + src/assets/img/pause.svg | 1 + src/components/attention/Attention.vue | 183 ++++++++++++++++++++++++- src/components/common/Footer.vue | 2 +- src/components/home/Comment.vue | 4 +- src/components/home/Home.vue | 12 +- src/components/home/Share.vue | 4 +- 8 files changed, 205 insertions(+), 13 deletions(-) create mode 100644 src/assets/img/location.svg create mode 100644 src/assets/img/pause.svg diff --git a/src/App.vue b/src/App.vue index c47e68b..33f53e6 100755 --- a/src/App.vue +++ b/src/App.vue @@ -23,6 +23,7 @@ font-size: 14px; padding: 0; margin: 0; + font-family: "Microsoft Sans Serif"; } $width: 1000; @@ -66,6 +67,16 @@ $margin: $margin - 1; } + $margin: 50; + @while $margin > 0 { + .m#{$margin}p { + margin: #{$margin}px !important; + } + $margin: $margin - 1; + } + + + $padding: 50; @while $padding > 0 { .pl#{$padding}p { diff --git a/src/assets/img/location.svg b/src/assets/img/location.svg new file mode 100644 index 0000000..ab6523f --- /dev/null +++ b/src/assets/img/location.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/img/pause.svg b/src/assets/img/pause.svg new file mode 100644 index 0000000..6e5e820 --- /dev/null +++ b/src/assets/img/pause.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/components/attention/Attention.vue b/src/components/attention/Attention.vue index f3a5b0e..6a638bf 100755 --- a/src/components/attention/Attention.vue +++ b/src/components/attention/Attention.vue @@ -1,8 +1,64 @@