Spaces:
Sleeping
Sleeping
File size: 1,853 Bytes
498ffec |
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 |
.rm-cards-container {
display: flex;
gap: 15px;
padding: 10px 0;
overflow-x: auto;
}
.rm-card {
min-width: 300px;
max-width: 400px;
border: 1px solid #ddd;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
background: rgba(255, 255, 255, 0.0);
}
.rm-card.top-candidate {
border: 3px solid #007bff;
box-shadow: 0 4px 8px rgba(0, 0, 150, 0.2);
}
.rm-card-header {
background: rgba(240, 240, 240, 0.3);
padding: 10px 15px;
font-weight: bold;
border-bottom: 1px solid #ddd;
display: flex;
justify-content: space-between;
align-items: center;
}
.top-candidate .rm-card-header {
background: rgba(230, 242, 255, 0.3);
}
.reward-badge {
background: #007bff;
color: white;
padding: 3px 8px;
border-radius: 12px;
font-size: 0.9em;
}
.rm-card-body {
padding: 15px;
background-color: rgba(240, 240, 240, 0.0);
}
.card-section {
margin-bottom: 12px;
}
.card-section-title {
font-weight: bold;
margin-bottom: 5px;
color: #555;
}
.thought-content {
background: rgba(247, 247, 255, 0.3);
border: 1px solid #d0d0ff;
border-radius: 6px;
padding: 8px;
}
.action-content {
background: rgba(240, 255, 240, 0.3);
border: 1px solid #d0ffd0;
border-radius: 6px;
padding: 8px;
}
.feedback-content {
background: rgba(255, 247, 240, 0.3);
border: 1px solid #ffd0a0;
border-radius: 6px;
padding: 8px;
}
.reward-content {
background: rgba(240, 240, 255, 0.3);
border: 1px solid #d0d0ff;
border-radius: 6px;
padding: 8px;
}
details {
margin-top: 5px;
}
summary {
cursor: pointer;
font-weight: bold;
color: #555;
}
summary:hover {
color: #007bff;
}
pre {
margin: 0;
white-space: pre-wrap;
word-break: break-word;
} |