mirror of
https://github.com/Aviortheking/Delta-File-Manager.git
synced 2025-04-22 19:02:14 +00:00
38 lines
579 B
CSS
38 lines
579 B
CSS
main {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
cursor: pointer;
|
|
}
|
|
|
|
table th {
|
|
text-align: left;
|
|
}
|
|
|
|
table tr {
|
|
border-bottom: 1px solid #aaa;
|
|
height: 50px;
|
|
}
|
|
|
|
table tr td {
|
|
border-left: 1px solid #eee;
|
|
}
|
|
|
|
table tr td:first-child {
|
|
padding-left: 60px;
|
|
background-repeat: no-repeat;
|
|
border-left: none;
|
|
}
|
|
|
|
table tr.folder td:first-child {
|
|
background-image: url(https://image.flaticon.com/icons/svg/148/148953.svg);
|
|
}
|
|
|
|
table tr.file td:first-child {
|
|
background-image: url(https://image.flaticon.com/icons/svg/263/263103.svg)
|
|
}
|