blob: c88d44220d8627102f461d9f0e625003e3798e15 (
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
|
.landscape-warning {
position: fixed;
top: 0; left: 0;
z-index: 3;
width: 100%; height: 100%;
background: #111111;
color: #ff790d;
text-shadow: 0 0 3px #ff790d;
font-family: "Helvetica", sans-serif;
font-size: 16px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.landscape-warning .landscape-message {
margin: 2rem 0;
text-align: center;
}
.landscape-warning path {
fill: #ff790d;
}
.landscape-warning .rotate-icon {
width: 2rem;
height: 2rem;
margin-bottom: -0.5rem;
}
.landscape-warning .phone-icon {
width: 3rem;
height: 3rem;
transform: rotate(90deg);
}
.landscape-warning .last-museum-logo {
width: 8rem;
}
|