Update about page

This commit is contained in:
BlossomiShymae
2024-10-08 16:23:46 -05:00
parent 932434ff59
commit 95a0a68147
7 changed files with 2358 additions and 3884 deletions

59
app.vue
View File

@@ -1,5 +1,5 @@
<template>
<NuxtLoadingIndicator />
<NuxtLoadingIndicator color="#FBDCFB"/>
<NuxtLayout>
<NuxtPage keepalive />
</NuxtLayout>
@@ -12,7 +12,11 @@ import "aos/dist/aos.css";
AOS.init();
</script>
<style>
<style lang="scss">
.app-background {
background: rgba(41, 31, 68, 0.875);
}
.page-enter-active,
.page-leave-active {
transition: all 0.2s;
@@ -51,16 +55,6 @@ html {
z-index: 0;
}
html::after {
content: "";
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
z-index: 1;
}
body {
position: relative;
background-color: transparent;
@@ -104,8 +98,7 @@ table > tbody > tr:hover > * {
}
ul.dropdown-menu {
background: transparent;
backdrop-filter: blur(0.4rem);
@extend .app-background
}
.dropdown-menu {
@@ -119,44 +112,6 @@ ul.dropdown-menu {
position: absolute;
}
.background-screen {
background-color: #0008;
z-index: -1;
}
.bg-screen {
background-color: #0004 !important;
}
.background-transparent {
background-color: transparent;
z-index: -1;
}
.background-blur {
backdrop-filter: blur(0.2rem);
}
.bg-blur {
backdrop-filter: blur(0.2rem);
}
.background-blur-2 {
backdrop-filter: blur(0.4rem);
}
.bg-blur-2 {
backdrop-filter: blur(0.4rem);
}
.bg-blur-3 {
backdrop-filter: blur(0.6rem);
}
.bg-blur-4 {
backdrop-filter: blur(0.8rem);
}
.z-index--10 {
z-index: -10;
}