46 lines
960 B
CSS
Executable File
46 lines
960 B
CSS
Executable File
/*------------------------------------*
|
|
$SCROLL TOP
|
|
*------------------------------------*/
|
|
#scroll-top {
|
|
display: none;
|
|
position: fixed;
|
|
right: 20px;
|
|
bottom: 20px;
|
|
width: 40px;
|
|
height: 40px;
|
|
line-height: 40px;
|
|
background-color: rgba(0, 0, 0, 0.4);
|
|
color: #fff;
|
|
font-size: 18px;
|
|
cursor: pointer;
|
|
border-radius: 2px;
|
|
text-align: center;
|
|
z-index: 10;
|
|
-webkit-box-sizing: content-box;
|
|
-moz-box-sizing: content-box;
|
|
box-sizing: content-box;
|
|
}
|
|
|
|
#scroll-top > span {
|
|
line-height: inherit;
|
|
vertical-align: top;
|
|
}
|
|
|
|
#scroll-top:hover {
|
|
background-color: rgba(0, 0, 0, 0.8);
|
|
}
|
|
|
|
/*------------------------------------*
|
|
Phone Landscape
|
|
*------------------------------------*/
|
|
@media only screen and (max-width: 480px) {
|
|
/* scroll top button */
|
|
#scroll-top {
|
|
right: 10px;
|
|
bottom: 10px;
|
|
width: 26px;
|
|
height: 26px;
|
|
line-height: 24px;
|
|
font-size: 14px;
|
|
}
|
|
} |