55 lines
1.0 KiB
Plaintext
55 lines
1.0 KiB
Plaintext
@import url(../../libs/font-awesome/css/font-awesome.css);
|
|
@import url(../../libs/glyphicons/styles/glyphicons.css);
|
|
@import "base/layout.less";
|
|
@import "iziToast.min.css";
|
|
|
|
body{
|
|
font-family: 'Work Sans', sans-serif;
|
|
}
|
|
|
|
.iziToast-wrapper-bottomRight,.iziToast-wrapper-bottomLeft{
|
|
bottom: 80px;
|
|
}
|
|
|
|
.iziToast-wrapper-topRight,.iziToast-wrapper-topLeft{
|
|
top: 80px;
|
|
}
|
|
|
|
.iziToast-capsule{
|
|
max-height: 0;
|
|
transition: transform .5s cubic-bezier(.25,.8,.25,1),
|
|
height .5s cubic-bezier(.25,.8,.25,1),
|
|
max-height 1s cubic-bezier(.25,.8,.25,1);
|
|
}
|
|
|
|
.iziToast-capsule[style*="auto;"]{
|
|
max-height: 200px;
|
|
}
|
|
|
|
.iziToast{
|
|
background-color: @color-white2;
|
|
border-color: @color-white2;
|
|
border-radius:2px;
|
|
}
|
|
|
|
.iziToast::after{
|
|
box-shadow: @shadows;
|
|
}
|
|
|
|
.iziToast.iziToast-theme-dark{
|
|
background-color: @color-greyish-brown;
|
|
}
|
|
|
|
.iziToast.iziToast-color-orange{
|
|
background-color: @color-squash;
|
|
}
|
|
|
|
.iziToast.iziToast-color-red{
|
|
background-color: @color-scarlet;
|
|
}
|
|
|
|
.iziToast>.iziToast-progressbar{
|
|
background-color: rgba(255,255,255,0.6);
|
|
}
|
|
|