mirror of
https://github.com/apachecn/ailearning.git
synced 2026-02-02 18:09:10 +08:00
19 lines
421 B
CSS
19 lines
421 B
CSS
#scroll-btn {
|
|
position: fixed;
|
|
right: 15px;
|
|
bottom: 10px;
|
|
width: 35px;
|
|
height: 35px;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
cursor: pointer;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
background-image: url(up.svg);
|
|
background-position-y: -1px;
|
|
display: none;
|
|
border: 2px solid;
|
|
border-radius: 4px;
|
|
} |