-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.vue
More file actions
102 lines (94 loc) · 1.94 KB
/
app.vue
File metadata and controls
102 lines (94 loc) · 1.94 KB
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
<template>
<main>
<NuxtLayout>
<NuxtPage />
<Footer />
</NuxtLayout>
</main>
</template>
<script setup lang="ts">
useHead({
title: "Eric Kelley - Full-Stack Software Developer",
meta: [
{
name: "description",
content:
"From payment processing to network management, I build powerful, elegant web applications that customers love to use. Currently, I’m currently helping software development stay human at Studio Cadenza.",
},
],
});
</script>
<style lang="scss">
body {
@apply bg-slate-900;
font-family: "Fira Code", sans-serif;
}
.rainbow {
-webkit-animation: rainbow 8s ease infinite;
animation: rainbow 8s ease infinite;
background-image: linear-gradient(124deg, #ff470f, #ff3860, #b86bff, #3273dc);
background-size: 800% 800%;
font-weight: bold;
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
@-webkit-keyframes rainbow {
0% {
background-position: 1% 80%;
}
50% {
background-position: 99% 20%;
}
100% {
background-position: 1% 80%;
}
}
@keyframes rainbow {
0% {
background-position: 1% 80%;
}
50% {
background-position: 99% 20%;
}
100% {
background-position: 1% 80%;
}
}
/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
scrollbar-width: thin;
scrollbar-color: #3d5285 #0b111f;
}
/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
width: 8px;
}
*::-webkit-scrollbar:hover {
width: 16px;
}
*::-webkit-scrollbar-track {
background: #0b111f;
}
*::-webkit-scrollbar-thumb {
background-color: #3d5285;
border-radius: 2px;
border: 0px ridge #d0a4a4;
}
.rainbow-text {
@apply text-transparent bg-clip-text bg-gradient-to-r from-blue-500 to-pink-600;
}
.rainbow-bg {
@apply bg-gradient-to-r from-blue-500 to-pink-600;
}
.page-enter-active,
.page-leave-active {
transition: all 0.3s ease-in-out;
}
.page-enter-from,
.page-leave-to {
opacity: 0;
transform: scale(0.99);
}
</style>