home.css
1.67 KB
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
::-webkit-scrollbar {
width: 0.5rem;
height: 0.25rem;
background-image: linear-gradient(135deg, #1DE9B6 0%, rgba(8, 196, 219, 0.5) 72%, rgba(0, 182, 234, 0.3) 100%);
}
::-webkit-scrollbar-track {
border-radius: 0;
}
::-webkit-scrollbar-thumb {
border-radius: 0;
background-image: linear-gradient(135deg, #1DE9B6 0%, #08c4db 72%, #057494 100%);
transition: all .2s;
border-radius: 0.25rem;
}
::-webkit-scrollbar-thumb:hover {
background-color: rgba(95, 95, 95, 0.7);
}
.icon {
width: 2em;
height: 2em;
vertical-align: 0;
fill: #FFFFFF;
overflow: hidden;
}
.icon-area {
width:100px;
height:44px;
background:#333A3C;
border-radius:22px;
border: 0px;
}
.icon-stop {
width:100px;
height:44px;
border-radius:22px;
border: 0px;
background:#FB5252;
}
.icon-stop:hover {
background: rgba(251,82,82,0.8);
}
.icon-stop:active {
background:#FB5252;
}
.icon-area:hover {
background: rgba(54, 56, 60, 0.8);
}
.icon-area:active {
background: rgba(54, 56, 60, 1);
}
.home-header {
width: 100%;
height: 84px;
background-color: #000000;
text-align: center;
}
.home-header-title {
font-size:24px;
font-family:PingFang SC;
font-weight:bold;
color:rgba(255,255,255,1);
line-height:84px;
}
.main-style {
background-color: #000000;
}
.el-row {
margin-bottom: 20px;
&:last-child {
margin-bottom: 0;
}
}
.el-col {
border-radius: 4px;
}
.bg-purple-dark {
background: #99a9bf;
}
.bg-purple {
background: #d3dce6;
}
.bg-purple-light {
background: #e5e9f2;
}
.grid-content {
border-radius: 4px;
min-height: 36px;
color: #FFFFFF;
}
.row-bg {
padding: 10px 0;
background-color: #f9fafc;
}