blob: 188840b49c9ae5e08a8a89e6996190546c105229 (
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
|
html {
background: #111111;
}
.app > div.home {
display: block;
background: #111111;
transition: opacity 0.4s;
opacity: 1.0;
cursor: pointer;
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
}
.app > div.home.hidden {
opacity: 0.0;
pointer-events: none;
}
.home-byline {
font-family: "Druk Wide";
color: #FF790D;
text-shadow: 0px 0px 5px #FF790D;
opacity: 1;
white-space: nowrap;
transition: opacity 0.2s;
font-size: 2.2vh;
width: 100vw;
text-align: center;
position: absolute;
}
.home-title {
font-family: "Druk";
font-weight: 900;
font-style: italic;
color: #FF790D;
white-space: nowrap;
text-shadow: 0px 0px 10px #FF790D;
font-size: 49vh;
position: absolute;
left: 0;
width: 100vw;
text-align: center;
line-height: 0.9;
transition: top 0.2s cubic-bezier(0,0,0,1);
}
.home-artists {
font-family: "Druk Wide";
color: #FF790D;
text-shadow: 0px 0px 5px #FF790D;
opacity: 1;
white-space: nowrap;
transition: opacity 0.2s;
width: 50vw;
font-size: 3vh;
position: absolute;
text-align: center;
bottom: 6vh;
}
.home-message {
font-family: "Druk Wide";
color: #FF790D;
text-shadow: 0px 0px 5px #ff790d;
opacity: 0.0;
transition: opacity 0.2s;
width: 140vh;
font-size: 4vh;
line-height: 1.2;
position: absolute;
top: 40vh;
text-align: center;
left: 50%;
transform: translate3D(-50%, 0, 0);
}
.home.open .home-message {
opacity: 1.0;
}
.home-title.title-1 {
top: 2vh;
}
.home-title.title-1 span {
margin-left: -2vh;
}
.home-title.title-2 {
top: 40vh;
}
.home.open .home-title.title-1 {
top: -1vh;
}
.home.open .home-title.title-2 {
top: 58vh;
}
.home.open .home-artists {
opacity: 0;
transition: opacity 0.2s;
}
.artists-left {
left: 0;
}
.artists-right {
left: 50vw;
}
.byline-top {
top: 1vh; left: 0;
}
.byline-bottom {
bottom: 2vh; left: 0;
}
.home.open .home-byline {
opacity: 0;
}
.curtain {
position: fixed;
top: 0; left: 0;
width: 100%; height: 100%;
background: #111111;
transition: opacity 0.2s;
opacity: 1.0;
}
.curtain.hidden {
opacity: 0;
}
|