-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
99 lines (86 loc) · 1.56 KB
/
Copy pathstyles.css
File metadata and controls
99 lines (86 loc) · 1.56 KB
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
html, body {
width: 100%;
height: 100%;
margin: 0;
overflow: hidden;
background:
radial-gradient(circle at 50% 38%, rgba(232, 245, 233, .96), rgba(196, 220, 200, .74) 36%, rgba(145, 180, 148, .92) 100%);
font-family: "LXGW WenKai", "STKaiti", "KaiTi", "Microsoft YaHei", serif;
user-select: none;
cursor: crosshair;
}
#scene {
position: fixed;
inset: 0;
width: 100vw;
height: 100vh;
display: block;
}
#webcam {
position: fixed;
right: 12px;
bottom: 12px;
width: 160px;
height: 120px;
opacity: .02;
pointer-events: none;
transform: scaleX(-1);
}
.title-block {
position: fixed;
left: 4.6vw;
top: 5.2vh;
writing-mode: vertical-rl;
color: rgba(44, 68, 48, .52);
letter-spacing: .16em;
pointer-events: none;
text-shadow: 0 10px 28px rgba(60, 90, 55, .1);
}
.title-cn {
font-size: 42px;
line-height: 1;
color: rgba(38, 80, 44, .78);
margin-left: 10px;
}
.title-en {
margin-top: 16px;
font-size: 12px;
}
.status-line,
.hint-line {
position: fixed;
left: 50%;
transform: translateX(-50%);
color: rgba(52, 78, 56, .44);
letter-spacing: .18em;
text-align: center;
pointer-events: none;
}
.status-line {
bottom: 4.5vh;
font-size: 13px;
}
.hint-line {
bottom: 7.2vh;
font-size: 12px;
}
body.gesture .status-line {
color: rgba(42, 108, 52, .72);
}
body.gesture .hint-line {
color: rgba(42, 108, 52, .56);
}
@media (max-width: 720px) {
.title-block {
left: 5vw;
top: 4vh;
}
.title-cn {
font-size: 34px;
}
.status-line,
.hint-line {
width: 86vw;
line-height: 1.7;
}
}