-
Notifications
You must be signed in to change notification settings - Fork 0
/
final.css
43 lines (38 loc) · 882 Bytes
/
final.css
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
/* ==========================================
FINAL.CSS
These are the final styles for the project.
Course: CSS3 in 30 Days
Author: Brad Hussey
Website: codecollege.ca
========================================== */
.final-result img {
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.final-result img:hover {
cursor: crosshair;
}
.final__grayscale {
filter: brightness(0.25);
}
.final__grayscale:hover {
filter: brightness(1);
}
.final__blur {
filter: saturate(8);
}
.final__blur:hover {
filter: saturate(2);
}
.final__invert {
filter: contrast(100%);
}
.final__invert:hover {
filter: contrast(200%);
}
.final__sepia {
filter: drop-shadow(8px 8px 10px yellow);;
}
.final__sepia:hover {
filter: drop-shadow(8px 8px 10px gray);;
}