-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslide.css
More file actions
43 lines (42 loc) · 782 Bytes
/
slide.css
File metadata and controls
43 lines (42 loc) · 782 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
40
41
42
43
body {
background:black;
margin:0;
font-family:monospace;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
div.image {
mix-blend-mode: difference;
background-color:#fff;
transition : opacity 0.5s linear;
}
.blend, div.image {
position:absolute;
top:4em;
left:2em;
height: 600px;
width: 900px;
}
.blend {
background: #151515;
}
div.image { opacity:0 }
div#show {
opacity:1;
z-index:1;
cursor:pointer;
}
button {
padding-top:0;
background: white;
color: black;
border:none;
height: 2em;
cursor: pointer;
margin-left: 2em;
font-family:monospace;
}