47 lines
834 B
CSS
47 lines
834 B
CSS
#auto_refresh {
|
|
position: fixed;
|
|
left: 0;
|
|
bottom: 0;
|
|
height: 210px;
|
|
background: rgba(0, 0, 0, 0.75) url('/images/autorefresh.png') 50% 50% no-repeat;
|
|
width: 100%;
|
|
display: none;
|
|
opacity: 0;
|
|
transition: all linear 0.1s;
|
|
}
|
|
|
|
#auto_refresh.final {
|
|
display: block;
|
|
opacity: 1;
|
|
transition: all linear 0.1s;
|
|
}
|
|
|
|
#auto_refresh .container-wrap {
|
|
width: 900px;
|
|
position: relative;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
#auto_refresh section.auto-refresh-info {
|
|
position: absolute;
|
|
right: 40px;
|
|
width: 250px;
|
|
top: 85px;
|
|
color: #fff;
|
|
text-shadow: 0 0 7px rgba(173, 173, 173, 0.7);
|
|
font-size: 16px;
|
|
line-height: 26px;
|
|
}
|
|
|
|
#auto_refresh .auto-refresh-info label {
|
|
margin-right: 15px;
|
|
}
|
|
|
|
#auto_refresh .auto-refresh-info input {
|
|
margin-left: 0;
|
|
}
|
|
|
|
#auto_refresh .auto-refresh-info button.button {
|
|
box-shadow: none;
|
|
}
|