94 lines
1.6 KiB
CSS
94 lines
1.6 KiB
CSS
.datapack-modal-content {
|
|
background: #0f1115;
|
|
border: 1px solid var(--border-color);
|
|
width: 90%;
|
|
max-width: 450px;
|
|
border-radius: 12px;
|
|
position: relative;
|
|
padding: 25px;
|
|
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
|
|
animation: modalSlideUp 0.3s ease-out;
|
|
}
|
|
|
|
.modal-header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 20px;
|
|
margin-bottom: 20px;
|
|
padding-bottom: 15px;
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
|
|
}
|
|
|
|
.modal-icon-big {
|
|
width: 80px;
|
|
height: 80px;
|
|
background: rgba(0, 0, 0, 0.4);
|
|
border: 1px solid var(--border-color);
|
|
border-radius: 8px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.modal-icon-big img {
|
|
width: 60px;
|
|
}
|
|
|
|
.modal-title-group h3 {
|
|
margin: 0;
|
|
font-family: "Orbitron", sans-serif;
|
|
color: var(--primary-color);
|
|
font-size: 1.3rem;
|
|
}
|
|
|
|
.modal-raw-id {
|
|
font-size: 0.75rem;
|
|
color: var(--text-secondary);
|
|
opacity: 0.6;
|
|
}
|
|
|
|
.details-description {
|
|
font-size: 0.9rem;
|
|
line-height: 1.5;
|
|
color: #ccc;
|
|
margin-bottom: 20px;
|
|
font-style: italic;
|
|
}
|
|
|
|
.details-section h4 {
|
|
font-size: 0.8rem;
|
|
text-transform: uppercase;
|
|
color: var(--text-secondary);
|
|
letter-spacing: 1px;
|
|
margin-bottom: 10px;
|
|
border-left: 3px solid var(--primary-color);
|
|
padding-left: 10px;
|
|
}
|
|
|
|
.stat-row {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 6px 0;
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.03);
|
|
}
|
|
|
|
.stat-label {
|
|
color: #888;
|
|
font-size: 0.85rem;
|
|
}
|
|
.stat-value {
|
|
color: #fff;
|
|
font-family: monospace;
|
|
}
|
|
|
|
@keyframes modalSlideUp {
|
|
from {
|
|
transform: translateY(20px);
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
transform: translateY(0);
|
|
opacity: 1;
|
|
}
|
|
}
|