zhaojs
2023-09-21 3cbd9dc493e8663d9ec1a2816e664f7c9289b8a3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
h2.page-header {
    margin: 10px 0 25px 0;
    padding-bottom: 15px;
}
 
.user-baseinfo {
    margin-bottom: 25px;
 
    table tr td {
        color: #999;
    }
}
 
@media (min-width: 992px) {
    .user-center {
        .avatar-text, .avatar-img {
            height: 150px;
            width: 150px;
            border-radius: 150px;
            line-height: 150px;
            font-size: 70px;
        }
 
        .avatar-img {
            font-size: 0;
 
            img {
                height: 150px;
                width: 150px;
                border-radius: 150px;
            }
        }
    }
 
}
 
.sidebar-toggle {
    display: none;
}
 
@media (max-width: 991px) {
    .sidenav {
        position: fixed;
        top: 50px;
        z-index: 1029;
        height: calc(~ '100vh - 50px');
        padding: 20px 0 20px 0;
        min-width: 250px;
        overflow-y: auto;
        overflow-x: hidden;
        width: 250px;
        left: -250px;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
 
    .sidebar-toggle {
        display: block;
        position: fixed;
        right: 20px;
        bottom: 70px;
        border-radius: 50%;
        background: #eee;
        font-size: 22px;
        padding: 10px;
        line-height: 30px;
        height: 50px;
        width: 50px;
        text-align: center;
        z-index: 999999;
    }
}
 
body.sidebar-open {
    .sidenav {
        left: 0;
        width: 250px;
        box-shadow: 0 6px 27px rgba(0, 0, 0, 0.075);
    }
 
    .sidebar-toggle i:before {
        content: "\f00d";
    }
}