summaryrefslogtreecommitdiff
path: root/frontend/site/projects/museum/views/artists.css
blob: 015a4db3ca670c03724f393e17b0763ed1611de5 (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
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
.app > div.page.page-artists {
  overflow: hidden;
}

/* main artists list */

.page-artists .artists-heading {
  text-align: center;
  font-family: 'Druk Wide', sans-serif;
  text-transform: uppercase;
  font-style: italic;
  font-size: 2.5vh;
  margin: 1.5vh 0 0vh;
  cursor: default;
  user-select: none;
}
.page-artists .artist-detail-name,
.page-artists .artist-big-name {
  font-family: 'Druk';
  font-style: italic;
  text-transform: uppercase;
  text-align: center;
  line-height: 0.9;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  transition: color 0.1s;
}
.page-artists .artist-big-name {
  font-size: 15.5vh;
}
.page-artists .artist-big-name:hover {
  /*color: white;*/
  text-shadow: 0 0 5px #FF790D;
}
.page-artists .artist-list {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  height: 100%;
  width: 100%;
  padding-bottom: 1rem;
}

/* artist sub-pages */

.page-artists .artist-gallery {
  position: absolute;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  background: #0f0f0f;
}
.page-artists .artist-gallery.visible {
  pointer-events: auto;
  opacity: 1;
}
.page-artists .artist-detail {
  position: absolute;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #0f0f0f;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.page-artists .artist-detail.visible {
  pointer-events: auto;
  opacity: 1;
}

.page-artists .artist-detail-name {
  font-size: 14.5vh;
  position: absolute;
  top: 2vh;
  left: 0;
  width: 100%;
  text-shadow: 0 0 5px #FF790D;
  cursor: pointer;
}
.page-artists .nav-arrow {
  transform: translateZ(0);
}
.page-artists .nav-arrow path {
  stroke: #FF790D;
  fill: transparent;
}

.page-artists .artist-content {
  position: absolute;
  top: 16vh; left: 0;
  width: 100vw;
  height: 78vh;
  overflow-y: auto;
}
.page-artists .artist-content::-webkit-scrollbar {
  display: none;
}
.page-artists .artist-left {
  padding-top: 2vh;
  padding-bottom: 4vh;
  padding-left: 2vw;
  padding-right: 2vw;
  width: 50vw;
  font-size: 1.2vw;
  line-height: 1.4;
}
.page-artists .artist-left p,
.page-artists .artist-right p {
  margin: 0 0 2vw 0;
}
.page-artists .artist-right {
  position: absolute;
  top: 0;
  left: 50vw;
  padding-top: 2vh;
  padding-bottom: 4vh;
  padding-left: 2vw;
  padding-right: 2vw;
  width: 50vw;
  font-size: 1.2vw;
  line-height: 1.4;
  /*background: #222222;*/
}
.page-artists .artist-location {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-family: 'Druk Wide', sans-serif;
  text-transform: uppercase;
  font-style: italic;
  font-size: 2.5vh;
  text-shadow: 0 0 3px #FF790D;
  margin: 0 0 1vh;
  cursor: default;
  pointer-events: none;
}