Newer
Older
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
.border{border: 1px solid #ddd;}
.color-333{color: #333;}
.color-666{color: #666;}
.color-999{color: #999;}
.color-fff{color: #fff;}
.color-red{color: red;}
.color-green{color: #1ec659;}
.color-24bafc{color: #24bafc;}
//margin,padding
@for $i from 0 through 101{
.margin-right-#{$i}{
margin-right: #{$i}px;
}
.margin-left-#{$i}{
margin-left: #{$i}px;
}
.margin-top-#{$i}{
margin-top: #{$i}px;
}
.margin-bottom-#{$i}{
margin-bottom: #{$i}px;
}
.margin-#{$i}{
margin: #{$i}px;
}
.padding-#{$i}{
padding: #{$i}px;
}
.padding-right-#{$i}{
padding-right: #{$i}px;
}
.padding-left-#{$i}{
padding-left: #{$i}px;
}
.padding-top-#{$i}{
padding-top: #{$i}px;
}
.padding-bottom-#{$i}{
padding-bottom: #{$i}px;
}
}
//margin,padding
@for $i from 0 through 51{
@for $j from 0 through 51{
.margin-#{$i}-#{$j}{
margin: #{$i}px #{$j}px ;
}
.padding-#{$i}-#{$j}{
padding: #{$i}px #{$j}px ;
}
}
}
//flex布局
.flex{
display: flex;
}
@for $j from 1 to 25{
.flex-#{$j}{
flex: #{$j};
}
}
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
//UI框架
.container {
height: 100%;
padding: 0 16px;
}
nz-header {
padding: 0 16px;
}
//自己写的
//主机详情
.host-item-title {
padding: 10px 15px;
height: 50px;
line-height: 30px;
}
.database-name {
padding: 2px 5px;
border-radius: 5px;
font-size: 12px;
}
.host-item-content {
padding: 10px;
height: 400px;
position: relative;
nz-row {
nz-col:nth-child(2n +1) {
text-align: right;
margin-bottom: 10px;
}
nz-col:nth-child(2n) {
text-align: left;
margin-bottom: 10px;
}
}
}
.host-item-table {
padding: 10px;
height: 400px;
nz-col {
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
}
.table-title {
nz-col {
border: 1px solid #597cb5;
}
}
.table-content {
border-bottom: 1px solid #597cb5;
}
}
.dataChart {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
font-size: 12px;
p {
margin-bottom: 10px;
}
p:nth-child(2n) {
text-align: right;
border-bottom: 1px solid #b7d1f1;
}
p:nth-child(2n +1) {
text-align: left;
}
}
.time-group {
position: absolute;
right: 10px;
top: 10px;
z-index: 9;
}
.width-host {
position: relative;
width: 80%;
margin: 0 auto;
height: 23px;
.space{
height: 23px;
transition: all 500ms;
}
}