-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.vue
49 lines (45 loc) · 931 Bytes
/
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
<template>
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</template>
<style>
@font-face {
font-family: 'Inter';
src: url('/fonts/Inter-Regular.woff2') format('woff2');
font-weight: 400;
font-display: auto;
unicode-range: U+000-5FF;
font-style: normal;
}
@font-face {
font-family: 'Inter';
src: url('/fonts/Inter-Bold.woff2') format('woff2');
font-weight: 700;
font-display: auto;
unicode-range: U+000-5FF;
font-style: normal;
}
@font-face {
font-family: 'Inter';
src: url('/fonts/Inter-Thin.woff2') format('woff2');
font-weight: 100;
unicode-range: U+000-5FF;
font-display: auto;
font-style: normal;
}
.gradient-text {
background: linear-gradient(
90deg,
#fcb12f 0%,
#f97316 25%,
#f85300 50%,
#f97316 75%,
#fcb12f 100%
);
background-size: 200% 100%;
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
</style>