blob: 536022e5d7ca3894254a144e1e91b16413c16506 (
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
|
/* schedule credits */
.credits-content {
flex: 1;
height: 100%;
overflow-x: hidden;
overflow-y: auto;
font-size: 0.875rem;
}
.credits {
display: flex;
flex-direction: row;
margin: 0 auto;
width: 45rem;
padding-top: 1rem;
padding-bottom: 1rem;
}
.credits > div {
width: 14.5rem;
margin-right: 1rem;
}
.credits > div:last-child {
margin-right: 0;
}
.credits-title {
padding: 0.375rem 0;
border-bottom: 1px solid;
}
.credits-info {
padding: 0.375rem 0;
white-space: pre-line;
line-height: 1.3;
}
.credits-info div {
padding-left: 1rem;
text-indent: -1rem;
min-height: 1rem;
}
.credits-info-wide {
padding: 0.375rem 0;
white-space: pre-line;
line-height: 1.3;
}
.credits-info-wide div {
min-height: 1rem;
}
/* site credits */
.site-credits {
width: 45rem;
margin: 0 auto;
padding-top: 1rem;
padding-bottom: 1rem;
line-height: 1.3;
}
.site-credits .site-lines {
margin-bottom: 2rem
}
.site-credits .site-lines div {
min-height: 0.875rem;
}
.site-credits .site-lines .credits-title {
margin-bottom: 0.375rem;
}
/* venues */
.site-credits .venue {
border-bottom: 1px solid black;
}
.venue-header {
display: flex;
flex-direction: row;
justify-content: space-between;
padding: 0.375rem 0 0 0;
cursor: pointer;
}
.venue-header svg {
width: 2.5rem;
height: 2.5rem;
transform: translateX(0.6rem) translateY(-0.5rem);
}
.venue-info {
transition: height 0.3s;
overflow: hidden;
height: 0;
}
.open .venue-info {
height: 40rem;
}
.venue-info .credits {
padding-top: 0rem;
}
.venue-info .credits-info div {
min-height: 0.875rem;
}
/* artists */
.artist-columns {
height: 0;
overflow: hidden;
transition: height 0.3s;
}
.open ~ .artist-columns {
height: 10rem;
}
.open .artist-columns {
height: 17rem;
}
.open .artist-columns.columns-1,
.open .artist-columns.columns-2,
.open .artist-columns.columns-3 { height: 14rem; }
.open .artist-columns.columns-4,
.open .artist-columns.columns-5 { height: 17rem; }
.open .artist-columns.columns-6 { height: 21rem; }
.open .artist-columns.columns-7,
.open .artist-columns.columns-8 { height: 23rem; }
.open .artist-columns.columns-9,
.open .artist-columns.columns-10 { height: 27rem; }
.open .artist-columns.columns-11,
.open .artist-columns.columns-12,
.open .artist-columns.columns-13 { height: 30rem; }
|