-
Notifications
You must be signed in to change notification settings - Fork 0
/
background.css
107 lines (107 loc) · 2.5 KB
/
background.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
#bg-wrapper {
background-color: rgb(222, 222, 222);
background-blend-mode: color-burn;
}
#bg-wrapper.dark-mode {
background-color: rgb(0, 0, 0);
background-blend-mode: color-dodge;
}
#bg-img {
background-blend-mode: overlay;
background-image: url("../img/bg.png");
background-attachment: fixed;
}
#bg-img.dark-mode {
background-blend-mode: difference;
background-image: url("../img/bginvert.png");
background-attachment: fixed;
}
#bg-wrapper2 {
background-blend-mode: color-burn;
backdrop-filter: contrast(155%) saturate(250%);
background: linear-gradient(to bottom,
rgba(128, 128, 128, .5) 0%,
rgba(128, 128, 128, .05) 50%,
rgba(128, 128, 128, .5) 100%);
}
#bg-wrapper3 {
opacity: .5;
background-blend-mode: saturation;
backdrop-filter: contrast(150%) saturate(350%);
background: linear-gradient(to right,
rgba(128, 128, 128, .5) 0%,
rgba(128, 128, 128, .3) 15%,
rgba(128, 128, 128, .05) 50%,
rgba(128, 128, 128, .3) 85%,
rgba(128, 128, 128, .5) 100%);
}
#bg {
opacity: .33;
mix-blend-mode: color;
}
#shift-layer1 {
mix-blend-mode: difference;
}
#shift-layer2 {
mix-blend-mode: overlay;
}
#bg-wrapper, #bg-wrapper.dark-mode, #bg-img.dark-mode, #bg-img, #bg-wrapper2, #bg-wrapper3, #bg, #shift-layer1, #shift-layer2 {
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
border-radius:0;
}
#bg-frame-top {
position:fixed;
z-index: 1000;
top:0;
left: 0;
border-radius:0;
width: 100%;
height: 2.2%;
background: linear-gradient(to bottom,
rgba(128, 128, 128, .65) 0%,
rgba(128, 128, 128, 0) 100%);
mix-blend-mode: color-burn;
}
#bg-frame-right {
position:fixed;
z-index: 1000;
top:0;
right: 0;
border-radius:0;
width: 1.5%;
height: 100%;
background: linear-gradient(to left,
rgba(128, 128, 128, .55) 0%,
rgba(128, 128, 128, 0) 100%);
mix-blend-mode: color-burn;
}
#bg-frame-bottom {
position:fixed;
z-index: 1000;
bottom:0;
left: 0;
border-radius:0;
width: 100%;
height: 2.5%;
background: linear-gradient(to top,
rgba(128, 128, 128, 1) 0%,
rgba(128, 128, 128, 0.05) 100%);
mix-blend-mode: color-burn;
}
#bg-frame-left {
position:fixed;
z-index: 1000;
top:0;
left: 0;
border-radius:0;
width: 1.5%;
height: 100%;
background: linear-gradient(to right,
rgba(128, 128, 128, .55) 0%,
rgba(128, 128, 128, 0) 100%);
mix-blend-mode: color-burn;
}