33 lines
685 B
CSS
33 lines
685 B
CSS
/*
|
|
*
|
|
* Hudson
|
|
*
|
|
*/
|
|
.hudson:before, .hudson:after {
|
|
content: '';
|
|
display: block;
|
|
height: 100%;
|
|
width: 100%;
|
|
top: 0;
|
|
left: 0;
|
|
position: absolute;
|
|
pointer-events: none; }
|
|
|
|
.hudson {
|
|
position: relative; }
|
|
.hudson img {
|
|
width: 100%;
|
|
z-index: 1; }
|
|
.hudson:before {
|
|
z-index: 2; }
|
|
.hudson:after {
|
|
z-index: 3; }
|
|
|
|
.hudson {
|
|
-webkit-filter: brightness(1.2) contrast(.9) saturate(1.1);
|
|
filter: brightness(1.2) contrast(.9) saturate(1.1); }
|
|
.hudson:after {
|
|
background: -webkit-radial-gradient(circle, #a6b1ff 50%, #342134);
|
|
background: radial-gradient(circle, #a6b1ff 50%, #342134);
|
|
mix-blend-mode: multiply;
|
|
opacity: .5; }
|