mirror of
https://github.com/BlossomiShymae/clean-cuts.git
synced 2025-12-06 10:10:47 +01:00
161 lines
2.4 KiB
Vue
161 lines
2.4 KiB
Vue
<template>
|
|
<NuxtLoadingIndicator color="#FBDCFB"/>
|
|
<NuxtLayout>
|
|
<NuxtPage keepalive />
|
|
</NuxtLayout>
|
|
</template>
|
|
|
|
<script setup>
|
|
import AOS from "aos";
|
|
import "aos/dist/aos.css";
|
|
|
|
AOS.init();
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.app-background {
|
|
background: rgba(41, 31, 68, 1);
|
|
}
|
|
|
|
.aos-fix[data-aos][data-aos].aos-animate {
|
|
transform: unset;
|
|
}
|
|
|
|
.page-enter-active,
|
|
.page-leave-active {
|
|
transition: all 0.2s;
|
|
}
|
|
.page-enter-from,
|
|
.page-leave-to {
|
|
opacity: 0;
|
|
filter: blur(0.125rem);
|
|
}
|
|
|
|
.layout-enter-active,
|
|
.layout-leave-active {
|
|
transform: none;
|
|
transition: all 0.5s;
|
|
}
|
|
.layout-enter-from,
|
|
.layout-leave-to {
|
|
transform: translateX(-100%);
|
|
}
|
|
|
|
* {
|
|
color: white;
|
|
}
|
|
|
|
html {
|
|
font-size: 14px;
|
|
|
|
background-image: none;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
background-attachment: fixed;
|
|
background-position: center;
|
|
min-height: 100%;
|
|
|
|
position: relative;
|
|
z-index: 0;
|
|
transition: all 1s ease-out;
|
|
}
|
|
|
|
body {
|
|
position: relative;
|
|
background-color: transparent;
|
|
z-index: 10;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
html {
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
|
|
.btn:focus,
|
|
.btn:active:focus,
|
|
.btn-link.nav-link:focus,
|
|
.form-control:focus,
|
|
.form-check-input:focus,
|
|
a:focus-visible {
|
|
box-shadow: 0.05rem 0.05rem 0.375rem 0.1rem rgba(255, 255, 255, 0.744) !important;
|
|
outline: none;
|
|
}
|
|
|
|
svg {
|
|
filter: invert(100%);
|
|
}
|
|
|
|
table {
|
|
@extend .app-background;
|
|
}
|
|
|
|
thead, tbody, th, td {
|
|
background-color: transparent !important;
|
|
}
|
|
|
|
table > tbody > tr:nth-of-type(2n+1) > * {
|
|
background-color: #0004 !important;
|
|
}
|
|
|
|
|
|
ul.dropdown-menu {
|
|
@extend .app-background;
|
|
}
|
|
|
|
.list-group-item {
|
|
@extend .app-background;
|
|
}
|
|
|
|
.dropdown-menu {
|
|
width: 200px;
|
|
}
|
|
|
|
.form-control {
|
|
@extend .app-background;
|
|
}
|
|
|
|
.background {
|
|
height: 100%;
|
|
width: 100%;
|
|
|
|
position: absolute;
|
|
}
|
|
|
|
.z-index--10 {
|
|
z-index: -10;
|
|
}
|
|
|
|
.z-index-10 {
|
|
z-index: 10;
|
|
}
|
|
|
|
.tf-custom .tf-nc {
|
|
border-color: transparent;
|
|
}
|
|
|
|
.tf-custom .tf-nc:before,
|
|
.tf-custom .tf-nc:after {
|
|
border-left-color: #FBDCFB;
|
|
border-left-width: 2px;
|
|
}
|
|
|
|
.tf-custom li li:before {
|
|
border-top-color: #FBDCFB;
|
|
border-top-width: 2px;
|
|
}
|
|
|
|
.tf-ancestor-tree { position: relative; }
|
|
.tf-ancestor-tree > ul { transform: rotateX(180deg); }
|
|
.tf-ancestor-tree li ul { margin-bottom: 1em; }
|
|
|
|
.node-text {
|
|
display: inline-block;
|
|
transform: rotateX(180deg);
|
|
}
|
|
|
|
.bg-dark-gradient {
|
|
background: linear-gradient(0deg, #000, transparent),linear-gradient(0deg, #000, transparent);
|
|
}
|
|
</style>
|