blob: 66d05443cd23656d2df6bdf0124f1a2410a81ad0 (
plain)
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
|
body {
font-family: "Hiragino Mincho ProN W3", serif;
background-color: #fff;
color: #0F261F;
}
h1 {
font-family: "Hiragino Mincho ProN W6", serif;
color: #FA2B00;
}
h1 img {
width: 100px;
margin-right: 10px;
}
a {
color: #4F8FE6;
}
.color-editor {
position: relative;
height: 230px;
}
.color {
width: 200px;
height: 200px;
background: #fff;
margin-left: 20px;
}
.light {
width: 20px;
height: 20px;
background: #FA2B00;
position: absolute;
left: 220px;
}
.x-label, .y-label, .z-label {
margin: 0;
padding: 0;
color: #FA2B00;
width: 100px;
position: absolute;
top: 200px;
}
.y-label {
transform: rotate(-90deg);
left: -45px;
top: 135px;
}
.z-label {
left: 125px;
}
.timeline {
width: 200px;
height: 50px;
background: black;
margin: 0 0 0 20px;
}
@media (prefers-color-scheme: dark) {
body {
color: #fff;
background: #0F261F;
}
}
|