forked from google/santa-tracker-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_tutorial.scss
More file actions
39 lines (37 loc) · 723 Bytes
/
Copy path_tutorial.scss
File metadata and controls
39 lines (37 loc) · 723 Bytes
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
##{$name} {
.tutorial {
display: none;
height: 290px;
left: 50%;
margin-left: -137px;
margin-top: -130px;
position: fixed;
overflow: hidden;
top: 50%;
width: 275px;
z-index: 100;
}
.tutorial__image {
background-image: url(img/tutorial/maze.gif);
background-position: 0 0;
background-repeat: no-repeat;
background-size: contain;
height: 270px;
left: 0;
position: absolute;
top: 0;
width: 275px;
z-index: 2;
}
.tutorial::before {
background: url(img/tutorial/shadow.svg) no-repeat;
content: "";
height: 270px;
left: 0;
opacity: 0.15;
position: absolute;
top: 20px;
width: 275px;
z-index: 1;
}
}