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
| .content {
| height: auto;
| float: right;
| width: $content-width;
| margin-top: 60px;
| }
|
| .page-top {
| width: $content-width;
| position: fixed;
| right: 0;
| z-index: 3;
| background-color: $bg-color;
| height: 60px;
| border-bottom: 1px solid $border-color;
| }
|
| .page-top .nav {
| list-style: none;
| padding: 11px 30px;
| float: left;
| font-size: 12px;
| display: block;
| width: calc(100% - 30px;
| }
|
| .page-top .nav li {
| position: relative;
| display: initial;
| padding-right: 20px;
| }
|
| .page-top .nav a {
| color: $nav-text-color;
| }
|
| .page-top .nav a:hover {
| color: #2660ab;
| }
|
| .page-top .nav a.current {
| color: $nav-text-color;
| padding-bottom: 22px;
| border-bottom: 1px solid $nav-text-color;
| }
|
| .theme-switch-item {
| float: right;
| font-size: 2em;
| margin-top: -5px;
| }
|
| .page-top .information {
| float: right;
| padding-top: 12px;
| padding-right: 20px;
| }
|
| .page-top .information .avatar {
| float: right;
| }
|
| .page-top .information .avatar img {
| width: 32px;
| height: 32px;
| border-radius: 300px;
| }
|
| .page-top .information .back_btn {
| float: left;
| padding-top: 5px;
| margin-right: -10px;
| }
|
| .page-top .information .back_btn li {
| display: initial;
| padding-right: 40px;
| }
|
|