123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276 |
- <template>
- <v-app dark>
- <!-- height = 4rem, margin-y = 1rem -->
- <v-app-bar app text class="topBar fly-in-from-top my-4 mx-auto">
- <v-tabs centered center-active color="primary" router show-arrows>
- <v-tab v-for="link in links" :key="link.path" :to="link.path">
- {{ link.name }}
- </v-tab>
- </v-tabs>
- </v-app-bar>
- <!-- abstract background -->
- <v-img
- src="/ui/abstract.svg"
- style="position: absolute; left: 0; right: 0; width: 100vw; height: 100vh"
- />
- <v-main style="padding-top: 4rem !important">
- <!-- min-height helps keep content centered, use .debug to to see it -->
- <center
- class="py-8 mx-auto d-flex flex-column justify-center items-center"
- style="width: 90vw; min-height: calc(100vh - 8rem)"
- >
- <nuxt />
- </center>
- </v-main>
- <!-- Debugger Notification -->
- <v-snackbar
- v-model="alert.show"
- :timeout="-1"
- class="ma-4 desktop-only"
- transition="slide-y-reverse-transition"
- color="primary"
- bottom
- left
- text
- >
- <v-icon color="primary" class="mr-4">mdi-alert-circle-outline</v-icon>
- <span class="my-auto" v-html="alert.html"></span>
- <template #action="{ attrs }">
- <v-btn
- v-bind="attrs"
- color="primary"
- text
- icon
- @click="alert.show = false"
- >
- <v-icon>mdi-close-circle-outline</v-icon>
- </v-btn>
- </template>
- </v-snackbar>
- </v-app>
- </template>
- <script>
- export default {
- data: () => ({
- links: [
- { name: "Home", path: "/" },
- { name: "Install", path: "/install" },
- { name: "API", path: "/docs" },
- { name: "Help", path: "/help" },
- { name: "FAQ", path: "/faq" },
- { name: "Donate", path: "/donate" },
- { name: "Links", path: "/links" },
- ],
- alert: {
- show: false,
- html: "",
- },
- }),
- mounted() {
- setTimeout(() => {
- // Chrome < 70 or FF < 60
- if (
- (this.$ua._parsed.name == "Chrome" &&
- parseInt(this.$ua._parsed.version.split(".")[0]) < 70) ||
- (this.$ua._parsed.name == "Firefox" &&
- parseInt(this.$ua._parsed.version.split(".")[0]) < 60)
- ) {
- this.alert.html = `<b style="background: #222; border-radius: .5rem; padding: .25rem .25rem .25rem .5rem; margin: 0 .25rem;">
- ${this.$ua._parsed.name} ${this.$ua._parsed.version.split(".")[0]}
- </b> is not supported. Consider upgrading to the latest version.`;
- this.alert.show = true;
- }
- // Win7
- if (window.navigator.userAgent.indexOf("Windows NT 6.1") > -1) {
- this.alert.html = `<b style="background: #222; border-radius: .5rem; padding: .25rem .5rem; margin: 0 .25rem;">Windows 7</b> is not supported. Consider upgrading Windows, or installing Linux.`;
- this.alert.show = true;
- }
- }, 1000);
- },
- };
- </script>
- <style>
- html,
- body {
- height: 100%;
- background: #111;
- height: -webkit-fill-available; /* for MacOS/iOS overscroll */
- scrollbar-color: #424242 #111;
- }
- ::selection {
- background: #f44;
- color: #111;
- }
- ::-webkit-scrollbar {
- width: 1rem;
- }
- ::-webkit-scrollbar-track {
- background: #111; /* color of the tracking area */
- }
- ::-webkit-scrollbar-thumb {
- background-color: #333; /* color of the scroll thumb */
- border-radius: 1rem 0 0 1rem; /* roundness of the scroll thumb */
- border-bottom: 0.25rem solid #111; /* creates padding around scroll thumb */
- border-left: 0.25rem solid #111; /* creates padding around scroll thumb */
- border-top: 0.25rem solid #111; /* creates padding around scroll thumb */
- }
- ::-webkit-scrollbar-thumb:hover {
- background-color: #f22; /* color of the scroll thumb */
- border-radius: 1rem 0 0 1rem; /* roundness of the scroll thumb */
- border-bottom: 0.25rem solid #111; /* creates padding around scroll thumb */
- border-left: 0.25rem solid #111; /* creates padding around scroll thumb */
- border-top: 0.25rem solid #111; /* creates padding around scroll thumb */
- }
- .debug {
- /* usage: add class="debug" to the element */
- outline: 2px solid red;
- }
- .v-sheet.v-snack__wrapper {
- border-radius: 0.75rem !important;
- }
- .mainAltButton {
- margin: 0.25em;
- }
- .topBar {
- padding: 0 3rem;
- width: fit-content !important;
- backdrop-filter: blur(16px) saturate(180%);
- -webkit-backdrop-filter: blur(16px) saturate(180%);
- background: rgba(42, 42, 42, 0.75) !important;
- border-radius: 1rem !important;
- /* border: 1px solid #222; */
- overflow: hidden;
- }
- .title-text {
- font-size: 3rem;
- }
- @media (max-width: 768px) {
- /* mobile */
- .title-text {
- font-size: 2rem;
- }
- .topBar {
- width: calc(
- 100vw - 2rem
- ) !important; /* (2rem = mx-4) 1rem on left, 1rem on right */
- padding: 0;
- }
- }
- /* animations and all that */
- .swoop-in-enter-active,
- .swoop-in-leave-active,
- .swoop-out-enter-active,
- .swoop-out-leave-active,
- .swoop-left-enter-active,
- .swoop-left-leave-active,
- .swoop-right-enter-active,
- .swoop-right-leave-active {
- transition-duration: 0.1s;
- transition-property: opacity, transform;
- overflow: hidden;
- }
- .swoop-left-enter,
- .swoop-right-leave-active {
- opacity: 0;
- transform: translate(1rem, 0);
- }
- .swoop-left-leave-active,
- .swoop-right-enter {
- opacity: 0;
- transform: translate(-1rem, 0);
- }
- .swoop-in-enter,
- .swoop-out-leave-active {
- opacity: 0;
- transform: scale(0.9);
- }
- .swoop-in-leave-active,
- .swoop-out-enter {
- opacity: 0;
- transform: scale(1.1);
- }
- .fly-in-from-top {
- opacity: 0;
- transform: scale(0.8) translateY(-12rem);
- animation: fly-in-from-top 0.5s 0.3s ease forwards;
- }
- @keyframes fly-in-from-top {
- 0% {
- opacity: 0;
- transform: scale(0.8) translateY(-12rem);
- }
- 100% {
- opacity: 1;
- transform: scale(1) translateY(0);
- }
- }
- /* reduced-motion animations */
- @media (prefers-reduced-motion) {
- .fly-in-from-top {
- opacity: 1;
- transform: none;
- animation: none;
- }
- .swoop-in-enter-active,
- .swoop-in-leave-active,
- .swoop-out-enter-active,
- .swoop-out-leave-active,
- .swoop-left-enter-active,
- .swoop-left-leave-active,
- .swoop-right-enter-active,
- .swoop-right-leave-active {
- transition-duration: 0.05s;
- transition-property: opacity;
- }
- .swoop-left-enter,
- .swoop-right-leave-active {
- opacity: 0;
- transform: none;
- }
- .swoop-left-leave-active,
- .swoop-right-enter {
- opacity: 0;
- transform: none;
- }
- .swoop-in-enter,
- .swoop-out-leave-active {
- opacity: 0;
- transform: none;
- }
- .swoop-in-leave-active,
- .swoop-out-enter {
- opacity: 0;
- transform: none;
- }
- }
- </style>
|