Spaces:
Sleeping
Sleeping
File size: 1,465 Bytes
7563aec | 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 | .card {
padding: 10px;
display: flex;
flex-direction: column;
gap: 10px;
}
.empty {
padding: 16px;
text-align: center;
color: #666;
font-size: 13px;
}
.header {
display: flex;
align-items: baseline;
gap: 8px;
}
.id {
font-family: monospace;
font-size: 13px;
color: #ccc;
}
.dataset {
font-size: 10px;
color: #666;
background: #2a2a2a;
padding: 1px 5px;
border-radius: 3px;
}
.cdrBlock {
display: flex;
align-items: center;
gap: 8px;
border: 1px solid;
border-radius: 6px;
padding: 8px 12px;
background: #1a1a1a;
}
.cdrLabel {
font-size: 11px;
color: #888;
min-width: 24px;
}
.cdrValue {
font-size: 22px;
font-weight: 700;
min-width: 36px;
}
.cdrDesc {
font-size: 12px;
color: #aaa;
}
.section {
display: flex;
flex-direction: column;
gap: 4px;
}
.sectionTitle {
font-size: 10px;
text-transform: uppercase;
letter-spacing: 0.08em;
color: #555;
margin-bottom: 2px;
}
.row {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 12px;
gap: 8px;
}
.label {
color: #777;
min-width: 80px;
}
.value {
color: #ccc;
text-align: right;
}
.mmseWrap {
display: flex;
align-items: center;
gap: 8px;
flex: 1;
justify-content: flex-end;
}
.mmseTrack {
width: 80px;
height: 6px;
background: #2a2a2a;
border-radius: 3px;
overflow: hidden;
}
.mmseFill {
height: 100%;
border-radius: 3px;
transition: width 0.3s;
}
|