blob: f127669eebdf2081113bbb576b7f8ec3b64d30c4 (
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
|
.text-overlay-icon {
position: fixed;
top: 1rem;
right: 2rem;
transform: scale(0.7);
cursor: url(/thelastmuseum/static/uploads/3/cursor/The_Last_Museum_-_Symbols-72.png) 50 50, pointer;
}
.text-overlay {
position: fixed;
top: 50%;
left: 0;
transform: translateY(-50%);
width: 100vw;
max-height: 100vh;
/*color: #FF790D;*/
color: #fff;
text-align: justify;
font-family: "Druk Wide", sans-serif;
font-size: 1.6vw;
padding: 1rem 10vw 1rem 10rem;
cursor: url(/thelastmuseum/static/uploads/3/cursor/The_Last_Museum_-_Symbols-41.png) 50 50, pointer;
overflow: auto;
}
.text-overlay::-webkit-scrollbar {
background: transparent;
width: 3px;
}
.text-overlay::-webkit-scrollbar-thumb {
background: #ff790d;
}
.text-overlay p {
margin: 0 0 1rem 0;
line-height: 1.7;
}
.text-overlay p:last-child {
margin-bottom: 4rem;
}
.text-overlay h2 {
font-family: 'Druk Wide', sans-serif;
font-size: 1.9vw;
margin-bottom: 1rem;
margin-top: 2rem;
color: #FF790D;
}
|