-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlevels.css
More file actions
29 lines (28 loc) · 692 Bytes
/
Copy pathlevels.css
File metadata and controls
29 lines (28 loc) · 692 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
#levelContainer > img{
position: absolute;
width: 70px;
max-height: 300px;
}
.bg{
filter: /*sepia(100%) saturate(1000%) brightness(70%) hue-rotate(180deg)*/ opacity(35%);
position:fixed;
top:0;
left:0;
background:url('style/bg.png');
width:100vw;
height:100vh;
background-size:100% auto;
background-position:0px;
z-index:-101;
}
#back {
position: fixed;
width: 100px;
height: auto;
top:10%;
left:5%;
transform: translate(-50%, -50%);
z-index: 9999999999999999999;
opacity: 0.5;
transition-duration: 200ms;
}#back:active{width: 110px;} #back:hover{cursor: pointer;opacity: 1;transition-duration: 200ms;}