17 lines
267 B
CSS
17 lines
267 B
CSS
.pullMessage {
|
|
position: fixed;
|
|
left: 50%;
|
|
top: -50px;
|
|
transform: translateX(-50%);
|
|
font-size: small;
|
|
color: #a5a5a5;
|
|
opacity: 0;
|
|
transition: opacity 0.3s ease-in-out;
|
|
text-align: center;
|
|
}
|
|
|
|
.fadeIn {
|
|
opacity: 1;
|
|
top: 0;
|
|
}
|