37 lines
755 B
Plaintext
37 lines
755 B
Plaintext
/* Usa alert e close di bootstrap*/
|
|
.notify {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
z-index: 100000;
|
|
|
|
div.alert {
|
|
opacity: 1;
|
|
max-height: 100%;
|
|
transition: all 1s ease-in-out;
|
|
background-color: #fff;
|
|
padding: 0;
|
|
&> * {
|
|
transition: padding 0.5s ease-in-out;
|
|
padding:.75rem 1.25rem;
|
|
}
|
|
|
|
&.hidden {
|
|
&> * { padding: 0; }
|
|
filter: alpha(opacity=0);
|
|
font-size: 0;
|
|
line-height: 0;
|
|
opacity: 0;
|
|
max-height: 0;
|
|
padding: 0;
|
|
margin: 0;
|
|
border: 0;
|
|
button {
|
|
font-size: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|