Add retro overlay
This commit is contained in:
parent
fd8d3831a1
commit
0335b34ed9
BIN
resources/lines.png
Normal file
BIN
resources/lines.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 450 B |
BIN
resources/lines.xcf
Normal file
BIN
resources/lines.xcf
Normal file
Binary file not shown.
@ -5,6 +5,7 @@ import SiteHeader from '@/components/SiteHeader.vue'
|
|||||||
import HomeView from '@/components/HomeView.vue'
|
import HomeView from '@/components/HomeView.vue'
|
||||||
import NotFoundView from '@/components/NotFoundView.vue'
|
import NotFoundView from '@/components/NotFoundView.vue'
|
||||||
import PlaygroundView from '@/components/PlaygroundView.vue'
|
import PlaygroundView from '@/components/PlaygroundView.vue'
|
||||||
|
import RetroScreenOverlay from '@/components/RetroScreenOverlay.vue'
|
||||||
|
|
||||||
const routes: { [index: string]: Component } = {
|
const routes: { [index: string]: Component } = {
|
||||||
'/': HomeView,
|
'/': HomeView,
|
||||||
@ -19,6 +20,7 @@ window.addEventListener('hashchange', () => {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
<RetroScreenOverlay />
|
||||||
<SiteHeader />
|
<SiteHeader />
|
||||||
<main>
|
<main>
|
||||||
<component :is="routes[currentPath.slice(1) || '/'] || NotFoundView" />
|
<component :is="routes[currentPath.slice(1) || '/'] || NotFoundView" />
|
||||||
|
|||||||
@ -1,9 +1,11 @@
|
|||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import SiteHeader from '@/components/SiteHeader.vue'
|
import SiteHeader from '@/components/SiteHeader.vue'
|
||||||
import NotFoundView from '@/components/NotFoundView.vue'
|
import NotFoundView from '@/components/NotFoundView.vue'
|
||||||
|
import RetroScreenOverlay from '@/components/RetroScreenOverlay.vue'
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
<RetroScreenOverlay />
|
||||||
<SiteHeader />
|
<SiteHeader />
|
||||||
<main>
|
<main>
|
||||||
<NotFoundView />
|
<NotFoundView />
|
||||||
|
|||||||
BIN
src/assets/lines.png
Normal file
BIN
src/assets/lines.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 450 B |
@ -18,6 +18,8 @@ body {
|
|||||||
|
|
||||||
button {
|
button {
|
||||||
font-family: 'Courier New', monospace;
|
font-family: 'Courier New', monospace;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 1.1em;
|
||||||
margin: 0.5em 0;
|
margin: 0.5em 0;
|
||||||
padding: 0.5em 0.75em;
|
padding: 0.5em 0.75em;
|
||||||
}
|
}
|
||||||
|
|||||||
27
src/components/RetroScreenOverlay.vue
Normal file
27
src/components/RetroScreenOverlay.vue
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
<script lang="ts" setup>
|
||||||
|
import { onMounted, ref } from 'vue'
|
||||||
|
|
||||||
|
const isActive = ref(false)
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
isActive.value = !window.matchMedia('(prefers-contrast: more)').matches
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div :class="{ lines: isActive }"></div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.lines {
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background: url('../assets/lines.png') transparent;
|
||||||
|
opacity: 0.25;
|
||||||
|
z-index: 99;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
Loading…
Reference in New Issue
Block a user