44 lines
701 B
CSS
Executable File
44 lines
701 B
CSS
Executable File
/*========================================================
|
|
DARK LAYOUT
|
|
=========================================================*/
|
|
#toast-container > div
|
|
{
|
|
max-width: none;
|
|
|
|
opacity: .9;
|
|
|
|
-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
|
|
filter: alpha(opacity=90);
|
|
}
|
|
|
|
#toast-container > div:hover
|
|
{
|
|
-webkit-box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, .75);
|
|
box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, .75);
|
|
}
|
|
|
|
.toast
|
|
{
|
|
background-color: #7367f0;
|
|
}
|
|
|
|
.toast-success
|
|
{
|
|
background-color: #28c76f;
|
|
}
|
|
|
|
.toast-error
|
|
{
|
|
background-color: #ea5455;
|
|
}
|
|
|
|
.toast-info
|
|
{
|
|
background-color: #00cfe8;
|
|
}
|
|
|
|
.toast-warning
|
|
{
|
|
background-color: #ff9f43;
|
|
}
|