88 lines
1.2 KiB
CSS
88 lines
1.2 KiB
CSS
#wrapper {
|
|
color: white;
|
|
padding: 5px;
|
|
}
|
|
|
|
#wrapper1 {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: grid;
|
|
grid-template-columns: 30% 70%;
|
|
}
|
|
|
|
#tree {
|
|
grid-column: 1;
|
|
margin: 5px;
|
|
}
|
|
|
|
#path {
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
.arrow-pointer {
|
|
display: inline-block;
|
|
height: 2em;
|
|
background: #404040;
|
|
position: relative;
|
|
color: #ffffff;
|
|
margin-left: 1em;
|
|
}
|
|
|
|
.arrow-pointer:first-child {
|
|
margin-left: 0;
|
|
}
|
|
|
|
.arrow-pointer span {
|
|
padding-left: 1.5em;
|
|
padding-right: 0.5em;
|
|
padding-top: 0.5em;
|
|
|
|
}
|
|
|
|
.arrow-pointer:after {
|
|
content: '';
|
|
position: absolute;
|
|
left: 0;
|
|
bottom: 0;
|
|
width: 0;
|
|
height: 0;
|
|
border-left: 1em solid #212121;
|
|
border-top: 1em solid #404040;
|
|
border-bottom: 1em solid #404040;
|
|
}
|
|
|
|
.arrow-pointer:before {
|
|
content: '';
|
|
position: absolute;
|
|
right: -1em;
|
|
bottom: 0;
|
|
width: 0;
|
|
height: 0;
|
|
border-left: 1em solid #404040;
|
|
border-top: 1em solid #212121;
|
|
border-bottom: 1em solid #212121;
|
|
}
|
|
|
|
|
|
#files {
|
|
grid-column: 2;
|
|
margin: 5px;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
tr {
|
|
height: 3em;
|
|
}
|
|
|
|
th, td {
|
|
border-bottom: 1px solid #ccc;
|
|
}
|
|
|
|
thead tr {
|
|
text-align: left;
|
|
background: #0062ff;
|
|
} |