Spaces:
Sleeping
Sleeping
File size: 1,046 Bytes
c82f7c8 | 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 | .file-preview {
display: flex;
align-items: center;
justify-content: space-between;
padding: 1rem;
margin: 0.75rem 0;
background-color: white;
border: 1px solid #e1e8ed;
border-radius: 8px;
transition: all 0.3s ease;
box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.file-preview:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.file-info {
display: flex;
flex-direction: column;
overflow: hidden;
gap: 0.3rem;
}
.file-name {
font-size: 1rem;
font-weight: 500;
color: #2c3e50;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.file-size {
font-size: 0.85rem;
color: #7f8c8d;
}
.remove-file {
background: none;
border: none;
color: #e74c3c;
font-size: 1.4rem;
cursor: pointer;
padding: 0.5rem;
border-radius: 50%;
width: 35px;
height: 35px;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}
.remove-file:hover {
background-color: #fde8e8;
color: #c0392b;
transform: scale(1.1);
} |