index.css 6.89 KB
Newer Older
krysent's avatar
krysent committed
1 2
.kb-container {
  width: 100%;
krysent's avatar
krysent committed
3
  height: calc(100vh - 98px) !important;
krysent's avatar
krysent committed
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
  background-color: rgba(26, 32, 44);
}
.kb-container header {
  height: 64px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.kb-container header h2 {
  color: aliceblue;
  font-weight: 600;
  font-size: 30px;
  text-shadow: 1px 1px 2px white;
}
.kb-container header > div {
  flex: 1;
}
.kb-container .kb-content {
  height: calc(100% - 64px);
  width: 100%;
  display: flex;
  flex-direction: row;
}
.kb-container .kb-content .Left {
krysent's avatar
krysent committed
30
  width: 33.33%;
krysent's avatar
krysent committed
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
}
.kb-container .kb-content .Left .unit {
  flex: 1;
}
.kb-container .kb-content .Center {
  flex: 2;
}
.kb-container .kb-content .Center > .unit:first-child {
  flex: 2;
  display: flex;
  flex-direction: row;
}
.kb-container .kb-content .Center > .unit:first-child > div:first-child {
  flex: 1;
  height: 100%;
}
.kb-container .kb-content .Center > .unit:first-child > div:last-child {
  flex: 3;
}
.kb-container .kb-content .Center > .unit:last-child {
  flex: 1;
}
.kb-container .kb-content .Right {
  flex: 1;
}
.kb-container .kb-content .Right > .unit:first-child {
  flex: 2;
}
.kb-container .kb-content .Right > .unit:nth-child(2) {
  flex: 2;
}
.kb-container .kb-content .Right > .unit:last-child {
  flex: 1;
}
.kb-container .kb-content .Left,
.kb-container .kb-content .Center,
.kb-container .kb-content .Right {
  display: flex;
  flex-direction: column;
krysent's avatar
krysent committed
70
  height: 100%;
krysent's avatar
krysent committed
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 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
}
.kb-container .kb-content .unit {
  background-color: rgba(49, 60, 77, 0.8);
  border-radius: 20px;
  margin: 8px;
  padding: 8px;
}
.kb-container .data-content {
  height: 100%;
  width: 100%;
}
.kb-container .data-content .content-title {
  width: 100%;
  height: 48px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.kb-container .data-content .content-title span {
  flex: 1;
  color: #fff;
  text-align: center;
  font-size: 14px;
}
.kb-container .content-charts {
  width: 100%;
  height: calc(100% - 32px);
}
.kb-container .content-header {
  height: 32px;
  width: 100%;
  border-bottom: 1px solid;
  border-image: linear-gradient(to left, rgba(255, 255, 255, 0.1) 10%, rgba(177, 95, 231, 0.637) 50%, #00bbf2 100%) 2 2 2 2;
  color: #fff;
  font-size: 18px;
}
.kb-container .content-div {
  height: calc(100% - 32px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.kb-container .content-div > div {
  flex: 1;
  margin: 12px 24px;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 20px;
  align-items: center;
}
.kb-container .content-div > div img {
  width: 34px;
  height: 34px;
}
.kb-container .content-div > div p {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}
.kb-container .content-div > div span {
  font-size: 35px;
  color: #fff;
  font-weight: 600;
  text-shadow: 1px 1px 2px #fff;
}
.kb-container .content-div > div:nth-child(1) {
  background-image: url('../../../public/img/cover1.png');
}
.kb-container .content-div > div:nth-child(2) {
  background-image: url('../../../public/img/cover2.png');
}
.kb-container .content-div > div:nth-child(3) {
  background-image: url('../../../public/img/cover3.png');
}
.kb-container .content-div > div:nth-child(4) {
  background-image: url('../../../public/img/cover3.png');
}
.kb-container .dv-scroll-board {
  background-image: var(--bgUrl--);
  background-position: 0 0;
  background-size: 100% 100%;
  height: calc(100% - 80px);
  background-color: transparent;
krysent's avatar
krysent committed
161 162 163 164
}
.kb-container .dv-scroll-board .row {
  width: 100%;
  height: 100%;
krysent's avatar
krysent committed
165 166 167 168
}
.kb-container .dv-scroll-board .row-item {
  background-color: transparent !important;
  text-align: center;
krysent's avatar
krysent committed
169
  width: 100%;
krysent's avatar
krysent committed
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
}
.kb-container .realTime {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.51), rgba(0, 0, 0, 0.51)), linear-gradient(176deg, #77F7F7 -1054%, rgba(145, 143, 220, 0.94) 128%, #313C4D 1124%);
}
.kb-container .realTime > div:last-child {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: auto;
  justify-self: center;
}
.kb-container .realTime .realTime-content {
  width: 200px;
  height: 70px;
  background: #1A202C;
  border-radius: 11px;
  box-shadow: inset 1px 1px 2px 1px rgba(255, 255, 255, 0.3);
  text-align: center;
  line-height: 70px;
  margin-right: 10px;
}
.kb-container .realTime .realTime-content span {
krysent's avatar
krysent committed
193
  color: #1FDBDB;
krysent's avatar
krysent committed
194 195 196 197 198 199 200
  font-size: 25px;
  font-weight: 600;
}
.kb-container .jk-content {
  display: flex;
  flex-direction: row;
  height: calc(100% - 32px);
krysent's avatar
krysent committed
201
  padding: 12px 12px 24px 12px;
krysent's avatar
krysent committed
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
}
.kb-container .jk-content .jk-content-unit {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: row;
  margin-left: 6px;
}
.kb-container .jk-content .jk-content-unit .numStatus {
  width: 30px !important;
}
.kb-container .jk-content .jk-content-unit .numStatus .numberStatus {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
  align-self: center;
}
.kb-container .jk-content .jk-content-unit .numStatus .numberStatus span {
  color: #fff;
  flex: 1;
  height: auto;
  align-self: center;
krysent's avatar
krysent committed
225 226
  font-size: 16px;
  padding-top: 6px;
krysent's avatar
krysent committed
227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292
}
.kb-container .jk-content .jk-content-unit .jk-statusBottom {
  width: 100%;
  position: absolute;
  top: 1;
}
.kb-container .jk-content .statusDiv {
  width: 10px;
  height: auto;
  flex: 22%;
  background-color: #00bbf2;
  border-radius: 10px;
  margin: 6px 1px;
}
.kb-container .jk-content .statusLine {
  width: 10px;
  background-color: green;
  height: 100%;
}
.kb-container .jk-content .jk-status {
  width: 10px;
  height: 100%;
  display: flex;
  flex-direction: row;
}
.kb-container .jk-content .statusLine {
  border-radius: 32px;
}
.kb-container .jk-content .bgline1 {
  background: linear-gradient(180deg, rgba(255, 15, 15, 0.49) 0%, rgba(246, 244, 244, 0) 51%, rgba(255, 0, 0, 0.38) 100%);
}
.kb-container .jk-content .bgline2 {
  background: linear-gradient(180deg, rgba(255, 147, 15, 0.49) 0%, rgba(246, 244, 244, 0) 51%, rgba(255, 140, 0, 0.38) 100%);
}
.kb-container .jk-content .bgline3 {
  background: linear-gradient(180deg, rgba(255, 251, 15, 0.49) 0%, rgba(246, 244, 244, 0) 51%, rgba(255, 251, 0, 0.38) 100%);
}
.kb-container .jk-content .jk-statusContent {
  flex: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  position: relative;
}
.kb-container .jk-content .jk-statusContent .jk-statusBottom {
  position: absolute;
  bottom: -20px;
  width: 100%;
  display: flex;
  flex-direction: row;
}
.kb-container .jk-content .jk-statusContent .jk-statusBottom span {
  flex: 1;
  text-align: center;
  color: skyblue;
  font-size: 16px;
  font-weight: 600;
}
.kb-container .statuslogo > div {
  display: flex;
  flex-direction: row;
  color: #fff;
  margin-right: 12px;
  align-items: center;
}
.kb-container .statustitle {
krysent's avatar
krysent committed
293 294 295
  width: 16px;
  height: 13px;
  border-radius: 2px;
krysent's avatar
krysent committed
296 297
  margin-right: 3px;
}