32 lines
639 B
CSS
32 lines
639 B
CSS
/*
|
|
*
|
|
* Toaster
|
|
*
|
|
*/
|
|
.toaster:before, .toaster:after {
|
|
content: '';
|
|
display: block;
|
|
height: 100%;
|
|
width: 100%;
|
|
top: 0;
|
|
left: 0;
|
|
position: absolute;
|
|
pointer-events: none; }
|
|
|
|
.toaster {
|
|
position: relative; }
|
|
.toaster img {
|
|
width: 100%;
|
|
z-index: 1; }
|
|
.toaster:before {
|
|
z-index: 2; }
|
|
.toaster:after {
|
|
z-index: 3; }
|
|
|
|
.toaster {
|
|
-webkit-filter: contrast(1.5) brightness(.9);
|
|
filter: contrast(1.5) brightness(.9); }
|
|
.toaster:after {
|
|
background: -webkit-radial-gradient(circle, #804e0f, #3b003b);
|
|
background: radial-gradient(circle, #804e0f, #3b003b);
|
|
mix-blend-mode: screen; }
|