forked from xxf098/LiteSpeedTest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
126 lines (106 loc) · 1.97 KB
/
style.css
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
.el-scrollbar__wrap {
overflow-x: hidden!important;
}
.truncate_remark {
width: 330px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.dashboard {
display: flex;
flex-direction: column;
gap: 12px;
position: fixed;
top: 68px;
right: 4.5%;
width: 22%;
z-index: 1000;
transition: all 0.5s;
}
.dashboard.collapsed {
width: 6%;
}
/* .dashboard .progress:hover,
.dashboard .category:hover {
transform: scale(1.05);
transition: 0.2s;
} */
.dashboard .progress {
position: relative;
}
.dashboard .icon {
position: absolute;
top: 50%;
transform: translate(-50%, 100%);
left: 0px;
z-index: 9999;
}
.dashboard .icon i {
font-size: 30px;
padding: 10x;
border-radius: 50%;
text-align: center;
box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}
.dashboard .icon:hover i {
color: #66b1ff;
}
.dashboard .progress .progress-bar {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 0%;
background-color: #66b1ff;
}
.dashboard .progress div {
z-index: 1;
}
.dashboard .progress .progress-inner {
display: flex;
justify-content: space-between;
}
.dashboard .progress .progress-inner i,
.dashboard .traffic i,
.dashboard .time i {
position: absolute;
top: 50%;
right: 20px;
transform: translateY(-50%);
font-size: 1.8rem;
font-weight: 500;
z-index: 1;
}
.progress-item div,
.dashboard .traffic div,
.dashboard .time div {
color: #555;
}
.progress-item span,
.dashboard .traffic span,
.dashboard .time span {
font-size: 1.5rem;
font-weight: bolder;
color: black;
}
.dashboard ul {
display: flex;
list-style: none;
justify-content: space-between;
padding: 0;
margin: 0;
}
.dashboard ul li {
padding: 0;
margin: 0;
}
.dashboard ul li div {
margin-bottom: 4px;
color: #666;
}
.dashboard ul li span {
font-size: 1.5rem;
font-weight: bolder;
color: black;
}