38 lines
733 B
CSS
38 lines
733 B
CSS
.arrow{
|
|
border: 9px solid transparent;
|
|
border-bottom-color: rgb(0, 167, 134);
|
|
width: 0px;
|
|
height: 0px;
|
|
top:0px
|
|
}
|
|
.stick{
|
|
width: 8px;
|
|
height: 14px;
|
|
border-radius: 1px;
|
|
background-color: rgb(0, 167, 134);
|
|
top:15px;
|
|
}
|
|
#back_top div{
|
|
position: absolute;
|
|
margin: auto;
|
|
right: 0px;
|
|
left: 0px;
|
|
}
|
|
#back_top{
|
|
/* border: 1px solid rgb(0, 167, 134); */
|
|
background-color: rgb(220, 220, 220);
|
|
height: 38px;
|
|
width: 38px;
|
|
border-radius: 3px;
|
|
display: block;
|
|
cursor: pointer;
|
|
position: fixed;
|
|
right: 50px;
|
|
bottom: 100px;
|
|
display: none;
|
|
}
|
|
#back_top:hover{
|
|
border: 1px solid rgb(220, 220, 220);
|
|
transition: 0.5s;
|
|
background-color: white;
|
|
} |