blob: 8f99b3c5b0dbac85e22f96e03ec311ec505c3b20 (
plain) (
blame)
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
|
@import "../../colors";
.pane-container {
background-color: $color-primary-0;
.main-pane {
position: absolute;
z-index: 50;
top: 0;
left: 0;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
background-color: transparent;
.tutorial {
flex-basis: 100%;
padding: 5px 10px;
text-align: center;
background-color: $color-primary-2;
}
}
.background-pane {
height: 100%;
opacity: 0.4;
}
}
|