blob: a0f1a9025921fb132599d17908db887defa684cd (
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
|
<script lang="ts">
//// import
import { version } from "../../package.json";
//// component
import About from "$lib/component/About.svelte";
import Blog from "$lib/component/Blog.svelte";
import CV from "$lib/component/CV.svelte";
import Music from "$lib/component/Music.svelte";
import MyMusic from "$lib/component/MyMusic.svelte";
import Remarks from "$lib/component/Remarks.svelte";
import Project from "$lib/component/Project.svelte";
import Promo from "$lib/component/Promo.svelte";
import Ring from "$lib/component/Ring.svelte";
import Social from "$lib/component/Social.svelte";
import Support from "$lib/component/Support.svelte";
import Uses from "$lib/component/Uses.svelte";
</script>
<style lang="scss">
:root {
--color-border: var(--uchu-yin-2);
}
section {
max-width: 700px;
overflow-y: auto;
@media (min-width: 601px) {
min-width: 500px;
width: 45vw;
}
@media (max-width: 600px) {
width: 75vw;
}
&:not(:last-of-type) {
margin-right: 30px;
}
&:last-of-type {
margin-right: var(--line-height);
}
}
.full-height {
height: 100%;
}
.with-background {
background-color: var(--uchu-gray-2);
overflow-x: hidden;
}
</style>
<svelte:head>
<meta name="version" content={version}/>
</svelte:head>
<section>
<aside class="with-background">
<About/>
</aside>
</section>
<section>
<aside class="with-background">
<Support/>
</aside>
<aside class="with-background">
<CV/>
</aside>
</section>
<section>
<aside class="with-background">
<Remarks/>
</aside>
<aside class="with-background">
<Blog/>
</aside>
</section>
<section>
<aside class="with-background">
<Social/>
</aside>
<aside class="with-background">
<Promo/>
</aside>
<aside class="with-background">
<Uses/>
</aside>
</section>
<section class="full-height with-background">
<Project/>
</section>
<section class="full-height with-background">
<MyMusic/>
</section>
<section class="full-height with-background">
<Ring/>
</section>
<section class="full-height with-background">
<Music/>
</section>
|