-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.vue
102 lines (85 loc) · 1.51 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
<script setup lang="ts">
useHead({
titleTemplate: (titleChunk) => {
return titleChunk ? `${titleChunk} - Calibur Pixel` : 'Calibur Pixel'
},
meta: [
{ name: "referrer", content: "no-referrer" }
]
})
</script>
<template>
<VApp>
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</VApp>
</template>
<style lang="scss">
$ease-out-smooth: cubic-bezier(0.1, 0.9, 0.2, 1);
$ease-in-out-smooth: cubic-bezier(0.75, 0, 0, 1);
*,
*::before,
*::after {
user-select: none;
}
.a-primary {
color: rgb(var(--v-theme-primary));
transition: 200ms;
&:hover {
color: rgba(var(--v-theme-primary), 0.5);
}
}
.float-in-up {
animation: float-in-up $ease-out-smooth 600ms;
}
.float-in-down {
animation: float-in-down $ease-out-smooth 600ms;
}
.float-in-left {
animation: float-in-left $ease-out-smooth 600ms;
}
.float-in-right {
animation: float-in-right $ease-out-smooth 600ms;
}
@keyframes float-in-up {
from {
transform: translateY(6em) scale(0.9);
filter: opacity(0);
}
to {
transform: none;
filter: none;
}
}
@keyframes float-in-down {
from {
transform: translateY(-6em) scale(0.9);
filter: opacity(0);
}
to {
transform: none;
filter: none;
}
}
@keyframes float-in-left {
from {
transform: translateX(6em);
filter: opacity(0);
}
to {
transform: none;
filter: none;
}
}
@keyframes float-in-right {
from {
transform: translateX(-6em);
filter: opacity(0);
}
to {
transform: none;
filter: none;
}
}
</style>