blob: 01632d926d4afc08fe8301379ac748531e78ab0c (
plain) (
blame)
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
<template>
<div v-if="globalStatus" class="dialog" v-html="globalStatus"></div>
<Logo v-else class="header"/>
<Navigation class="nav"/>
<router-view v-if="loaded" class="content"/>
<main v-else class="content" role="alert" aria-busy="true">
<h1> </h1>
<p>Loading...</p>
</main>
<Copyright class="footer"/>
</template>
<style>
:root {
background: gray(95);
}
#app {
z-index: 100;
& > .nav {
grid-area: side;
}
& > .header {
grid-area: logo;
}
& > .content {
grid-area: page;
background: #E1D6CF;
padding: 15px 15px 30px 15px;
border-radius: 15px 15px 0 0;
text-align: justify;
& h1 {
margin: 20px 0 0 0 0;
font-weight: bold;
font-size: 1.3em;
border-bottom: 1px solid #9f9894;
color: gray(24);
&:nth-of-type(1n + 2) {
margin-top: 2em;
}
}
}
& > .footer {
grid-area: footer;
}
& .dialog {
background: #ff0000;
color: #fff;
padding: 2em 1em 2em 1em;
display: block;
font-size: 1.5rem;
margin: 1rem;
z-index: 10000;
grid-area: logo;
border: 5px gray(95) dotted;
}
font-family: sans-serif;
color: #2c3e50;
width: 100%;
max-width: 1100px;
margin: 0 auto;
display: grid;
grid-template-areas:
"logo"
"page"
"side"
"footer";
}
@media (min-width: 1100px) {
#app {
grid-column-gap: 0em;
grid-row-gap: 0px;
grid-template-columns: 2fr 4fr;
grid-template-areas:
"logo logo"
"page side"
"footer footer";
& > .content {
background: url(assets/page_footer.webp) no-repeat left bottom #E1D6CF;
min-width: 890px;
padding-bottom: 200px;
border-radius: 15px 0 0 15px;
& p {
margin: 0px 40px 5px 30px;
}
}
}
}
</style>
<script lang="ts">
import { Options, Vue } from "vue-class-component";
import Navigation from "@/components/Navigation.vue";
import Logo from "@/components/Logo.vue";
import Copyright from "@/components/Footer.vue";
@Options({
components: {
Navigation,
Logo,
Copyright,
},
})
export default class AppV extends Vue {
loaded = false;
globalStatus = process.env.VUE_APP_STATUS?.trim() ?? "";
mounted () {
self.addEventListener("initial-load", () => {
this.loaded = true;
});
}
}
</script>
|