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
117
118
119
|
.page .home-link {
position: fixed;
top: 0;
left: 0;
padding: 1rem;
color: black;
font-family: 'Helvetica', sans-serif;
font-size: 1.2rem;
cursor: pointer;
user-select: none;
transition: color 0.1s;
color: rgb(255, 121, 13);
}
.page .home-link:hover {
color: #fff;
}
.page .home-link.black {
color: #000;
}
.page .home-link.language-link {
position: fixed;
top: 2.2rem;
left: 0;
}
.page-essay.page-artists .artist-list .artists-heading {
margin-bottom: 1rem;
}
.page-essay.page-artists .artist-list {
justify-content: flex-start;
}
.page-essay .page-content {
flex-direction: column;
justify-content: flex-start;
padding-bottom: 10vh;
}
.page-essay .page-content.artist-statement {
padding-bottom: 5vh;
}
.page-essay .nilthamrong .page-content.artist-statement {
padding-bottom: 10vh;
}
.page-essay .page-title {
text-shadow: 0 0 5px #000;
cursor: pointer;
font-size: 10vw;
}
.page-essay .page-subtitle {
margin: 0rem 0 2vw 0;
}
.page-essay p {
margin: 0 0 2vw 0;
font-size: 1.7vw;
line-height: 1.4;
}
.page-essay.page-artists .artist-detail.visible {
background: rgb(255, 121, 13);
color: #000;
}
.page.page-essay.page-artists .artist-detail.visible a {
color: #000;
}
.page-essay a:hover {
text-decoration: underline;
}
.page-essay.page-artists .artist-location {
padding: 1vh 0;
margin: 0;
background: #111;
pointer-events: auto;
cursor: pointer;
}
.page-essay.page-artists .artist-detail.visible {
overflow-y: auto;
}
.page-essay.page-artists .artist-detail.visible::-webkit-scrollbar {
display: none;
}
.globe {
width: 100%;
margin-bottom: 2vw;
}
.globe svg {
width: 100%;
}
.globe path {
/*stroke: rgb(255, 121, 13);*/
/*stroke: rgb(0, 0, 0);*/
stroke: rgb(255, 255, 255);
stroke-miterlimit: 10;
stroke-linecap: round;
stroke-linejoin: round;
fill: transparent;
}
.globe .globe-image {
position: relative;
}
.globe .globe-image .number {
position: absolute;
font-family: 'Druk Wide', sans-serif;
text-transform: uppercase;
font-size: 2vw;
color: white;
text-shadow: 0 0 3px #fff;
cursor: pointer;
}
.globe .globe-image .number:hover {
text-shadow: 0 0 6px #fff;
}
.page a.jules-link {
font-weight: normal;
}
|