32 lines
595 B
CSS
32 lines
595 B
CSS
/*
|
|
*
|
|
* Reyes
|
|
*
|
|
*/
|
|
.reyes:before, .reyes:after {
|
|
content: '';
|
|
display: block;
|
|
height: 100%;
|
|
width: 100%;
|
|
top: 0;
|
|
left: 0;
|
|
position: absolute;
|
|
pointer-events: none; }
|
|
|
|
.reyes {
|
|
position: relative; }
|
|
.reyes img {
|
|
width: 100%;
|
|
z-index: 1; }
|
|
.reyes:before {
|
|
z-index: 2; }
|
|
.reyes:after {
|
|
z-index: 3; }
|
|
|
|
.reyes {
|
|
-webkit-filter: sepia(.22) brightness(1.1) contrast(.85) saturate(0.75);
|
|
filter: sepia(.22) brightness(1.1) contrast(.85) saturate(0.75); }
|
|
.reyes:after {
|
|
background: #efcdad;
|
|
mix-blend-mode: soft-light;
|
|
opacity: .5; }
|