forked from lizzz0523/limni
-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.vue
106 lines (104 loc) · 1.5 KB
/
App.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<template>
<div id="app">
<router-view />
</div>
</template>
<style>
@import url('https://cdn.bootcss.com/font-awesome/4.7.0/css/font-awesome.css');
* {
margin: 0;
padding: 0;
}
a {
text-decoration: inherit;
}
em {
font-style: normal;
}
ul,
ol {
list-style: none;
}
h1,
h2,
h3,
h4 {
font: inherit;
}
input,
select,
button {
font: inherit;
}
html,
body {
height: 100%;
-webkit-user-select: none;
-webkit-touch-callout: none;
-webkit-tap-highlight-color: transparent;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
#app {
height: 100%;
overflow: hidden;
}
@keyframes flip {
0% {
opacity: 1;
transform: translate3d(0, 50px, 0) rotateX(-90deg);
}
100% {
opacity: 1;
transform: translate3d(0, 0, 0) rotateX(0deg);
}
}
@keyframes fade {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes rise {
0% {
opacity: 0;
transform: translate3d(0, 100%, 0);
}
100% {
opacity: 1;
transform: translate3d(0, 0, 0);
}
}
@keyframes rise2 {
0% {
opacity: 0;
transform: translate3d(0, 200%, 0);
}
100% {
opacity: 1;
transform: translate3d(0, 0, 0);
}
}
@keyframes rise3 {
0% {
transform: translate3d(0, 100%, 0) scale(0);
}
100% {
transform: translate3d(0, -50%, 0) scale(1);
}
}
@keyframes path {
to {
stroke-dasharray: 0 95;
}
}
@keyframes path2 {
to {
stroke-dasharray: 0 500;
}
}
</style>