everseiko/asset/css/style.css

48 lines
1.2 KiB
CSS
Raw Normal View History

2020-01-02 23:02:57 +07:00
#note {
position: absolute;
z-index: 6001;
top: 0;
left: 0;
right: 0;
text-align: center;
overflow: hidden;
-webkit-box-shadow: 0 0 5px black;
-moz-box-shadow: 0 0 5px black;
box-shadow: 0 0 5px black;
}
.cssanimations.csstransforms #note {
-webkit-transform: translateY(-50px);
-webkit-animation: slideDown 2.5s 1.0s 1 ease forwards;
-moz-transform: translateY(-50px);
-moz-animation: slideDown 2.5s 1.0s 1 ease forwards;
}
#close {
position: absolute;
right: 10px;
top: 9px;
text-indent: -9999px;
background: url(images/close.png);
height: 16px;
width: 16px;
cursor: pointer;
}
.cssanimations.csstransforms #close {
display: none;
}
@-webkit-keyframes slideDown {
0%, 100% { -webkit-transform: translateY(-50px); }
10%, 90% { -webkit-transform: translateY(0px); }
}
@-moz-keyframes slideDown {
0%, 100% { -moz-transform: translateY(-50px); }
10%, 90% { -moz-transform: translateY(0px); }
}
@media (max-width: 767px) {
.affix {
position: static;
width: auto;
top: 0;
}