layui/.svn/pristine/a1/a125f85df752c93189b4000b1b9bbaa4359948d6.svn-base
2022-12-09 16:41:41 +08:00

35 lines
595 B
Plaintext

@width: 50px;
@height: @width;
.layui-backtop {
position: fixed;
right: 30px;
bottom: 40px;
width: @width;
height: @height;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
font-size: 40px;
background-color: #9f9f9f;
color: #ffffff;
border-radius: var(--global-border-radius);
opacity: 0.95;
z-index: 999999;
:hover {
opacity: 0.85;
}
}
.layui-backtop-medium {
width: @width - 10px;
height: @height - 10px;
font-size: 30px;
}
.layui-backtop-small {
width: @width - 20px;
height: @height - 20px;
font-size: 20px;
}