blob: 6b2cf4026003b13ebb40e5f530eaaa62c379988e (
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
|
.roadblock {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background: #111;
color: #ff790d;
padding: 1rem 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
z-index: 2;
}
.roadblock-byline {
font-family: "Druk Wide";
opacity: 1;
white-space: nowrap;
transition: opacity 0.2s;
font-size: 4.2vh;
width: 100vw;
text-align: center;
line-height: 1.1;
}
.roadblock-title {
font-family: "Druk";
font-weight: 900;
font-style: italic;
white-space: nowrap;
font-size: 49vh;
text-align: center;
line-height: 0.7;
transition: top 0.2s cubic-bezier(0,0,0,1);
}
.roadblock-title span {
margin-left: -2vh;
}
|