#
luxiaotao1123
2021-12-21 4c41d6bda4049764b88f8710b923a1f6b90e7e43
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
.sidebar {
    margin-top:100px;
    width: 1.5%;
    height:400px;
    border-radius:8px;
    text-align:center;
    background: rgba(205, 215, 230, 1);
    right: 10px;
    position: absolute;
    z-index: 1;
}
 
.buttonClass
{
    width: 90%;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s;
    margin-top: 10px;
}
.buttonClass:hover{
    transform: scale(1.2);
}