summaryrefslogtreecommitdiff
path: root/frontend/site/projects/museum/app/roadblock.css
blob: d6796d3886216210283cf7c64618d156452caf6a (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
.roadblock {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #111;
  color: #ff790d;
  text-shadow: 0 0 3px #ff790d;
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
  cursor: pointer;
}
.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;
  cursor: pointer;
}
.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);
  cursor: pointer;
}
.roadblock-title span {
  margin-left: -2vh;
}